小编Raj*_*eev的帖子

Unable to make the oauth2Login as stateless

I have provided the cookie based authorization request repository to oauth2Login() dsl to make it as stateless. but when I add the session creation policy as STATELESS , the oauth2 login is not working and returning "too many callbacks" error in UI page.

I have used the following oauth2Login config. for login with google oauth2 provider.

    @Autowired
    private HttpCookieOAuth2AuthorizationRequestRepository httpCookieOAuth2AuthorizationRequestRepository;

    @Override
    protected void configure(HttpSecurity http) throws Exception {
        http
                .csrf().csrfTokenRepository(new CookieCsrfTokenRepository())
                .ignoringAntMatchers("/oauth2/authorization/google")
                .and()
                .sessionManagement(sessionMgmtConfig -> sessionMgmtConfig.sessionCreationPolicy(SessionCreationPolicy.STATELESS))
                .authorizeHttpRequests(authorize -> authorize
                        .anyRequest().authenticated()) …
Run Code Online (Sandbox Code Playgroud)

spring spring-security spring-security-oauth2 spring-oauth2

6
推荐指数
1
解决办法
3224
查看次数

使用 root 用户权限运行 lambda 容器实例

我的共享 Linux 库需要 root 权限才能运行某些任务,但根据文档中的先决条件,我们应该只依赖基本用户访问权限。

The default Lambda user must be able to read all the files required to run your function code. Lambda follows security best practices by defining a default Linux user with least-privileged permissions. Verify that your application code does not rely on files that other Linux users are restricted from running.
Run Code Online (Sandbox Code Playgroud)

有没有办法向 lambda 容器授予 root 用户权限?请提供建议或帮助,我们将不胜感激。

amazon-web-services aws-lambda

6
推荐指数
0
解决办法
1035
查看次数