- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
Complete code下面给出了快速重现问题的说明。
问题:
HttpSession
变成 null
在 DefaultOAuth2RequestFactory
的自定义实现之后替换当前 AuthorizationRequest
与保存 AuthorizationRequest
. 这会导致 后续请求失败 至 /oauth/token
因为CsrfFilter在 /oauth/token
之前的 Spring Security 过滤器链中端点无法找到 session
Csrf token
在 null
session
与request
比较的 Csrf token
.
错误期间的控制流程:
以下流程图说明了 步骤 14 和 步骤 15 不知何故null
-ify HttpSession
. (或者可能与 JSESSIONID
不匹配。)A SYSO
开头CustomOAuth2RequestFactory.java
在 步骤 14 显示确实存在 HttpSession
实际上包含正确的 CsrfToken
.然而,不知何故,HttpSession
已成为null
到时候步骤 15 在 localhost:8080/login
处触发来自客户端的调用url 回到 localhost:9999/oauth/token
端点。
HttpSessionSecurityContextRepository
的每一行都添加了断点在下面的调试日志中提到。 (它位于 Maven Dependencies
eclipse 项目的 authserver
文件夹中。)这些断点确认了 HttpSession
是 null
当最终请求到/oauth/token
在下面的流程图中进行。 (流程图的左下角。) null
HttpSession
可能是由于 JSESSIONID
在自定义 DefaultOAuth2RequestFactory
后仍保留在浏览器中变得过时代码运行。
这个问题怎么解决,让同样的HttpSession
在对 /oauth/token
的最后一次通话中仍然存在端点,在流程图中的步骤 15 结束之后?
相关代码和日志:CustomOAuth2RequestFactory.java
的完整代码can be viewed at a file sharing site by clicking on this link. 我们可以猜到 null
session
是由于 1.) JSESSIONID
CustomOAuth2RequestFactory
中的代码未在浏览器中更新, 或 2.) HttpSession
实际上是 null
-化。
调用 /oauth/token
的 Spring Boot 调试日志后 步骤 15 明确声明没有 HttpSession
到那时,可以阅读如下:
2016-05-30 15:33:42.630 DEBUG 13897 --- [io-9999-exec-10] o.s.security.web.FilterChainProxy : /oauth/token at position 1 of 12 in additional filter chain; firing Filter: 'WebAsyncManagerIntegrationFilter'
2016-05-30 15:33:42.631 DEBUG 13897 --- [io-9999-exec-10] o.s.security.web.FilterChainProxy : /oauth/token at position 2 of 12 in additional filter chain; firing Filter: 'SecurityContextPersistenceFilter'
2016-05-30 15:33:42.631 DEBUG 13897 --- [io-9999-exec-10] w.c.HttpSessionSecurityContextRepository : No HttpSession currently exists
2016-05-30 15:33:42.631 DEBUG 13897 --- [io-9999-exec-10] w.c.HttpSessionSecurityContextRepository : No SecurityContext was available from the HttpSession: null. A new one will be created.
2016-05-30 15:33:42.631 DEBUG 13897 --- [io-9999-exec-10] o.s.security.web.FilterChainProxy : /oauth/token at position 3 of 12 in additional filter chain; firing Filter: 'HeaderWriterFilter'
2016-05-30 15:33:42.631 DEBUG 13897 --- [io-9999-exec-10] o.s.s.w.header.writers.HstsHeaderWriter : Not injecting HSTS header since it did not match the requestMatcher org.springframework.security.web.header.writers.HstsHeaderWriter$SecureRequestMatcher@2fe29f4b
2016-05-30 15:33:42.631 DEBUG 13897 --- [io-9999-exec-10] o.s.security.web.FilterChainProxy : /oauth/token at position 4 of 12 in additional filter chain; firing Filter: 'CsrfFilter'
2016-05-30 15:33:42.644 DEBUG 13897 --- [io-9999-exec-10] o.s.security.web.csrf.CsrfFilter : Invalid CSRF token found for http://localhost:9999/uaa/oauth/token
2016-05-30 15:33:42.644 DEBUG 13897 --- [io-9999-exec-10] w.c.HttpSessionSecurityContextRepository : SecurityContext is empty or contents are anonymous - context will not be stored in HttpSession.
2016-05-30 15:33:42.644 DEBUG 13897 --- [io-9999-exec-10] s.s.w.c.SecurityContextPersistenceFilter : SecurityContextHolder now cleared, as request processing completed
tar -zxvf oauth2.tar(4).gz
authserver
导航至
oauth2/authserver
然后输入
mvn spring-boot:run
.
resource
导航至
oauth2/resource
然后输入
mvn spring-boot:run
ui
导航至
oauth2/ui
然后输入
mvn spring-boot:run
http : // localhost : 8080
Login
然后输入
Frodo
作为用户和
MyRing
作为密码,点击提交。
5309
如
Pin Code
然后点击提交。
这将触发上面显示的错误。
SYSO
,它给出了变量的值,例如 XSRF-TOKEN
和 HttpSession
在流程图中显示的每个步骤 .
SYSO
有助于对调试日志进行分段,使其更易于解释。以及所有
SYSO
由其他类调用的一个类完成,因此您可以操作
SYSO
- 生成类以更改控制流中各处的报告。
SYSO
的名称-生成类是
TestHTTP
,其源代码可以在同一个
demo
中找到包裹。
authserver
的终端窗口应用程序和类型
Ctrl-C
停止
authserver
应用程序。
authserver
、
resource
和
ui
)作为
导入 Eclipse现有 Maven 项目 .
authserver
app的eclipse Project Explorer,点击展开
Maven Dependencies
文件夹 ,然后在其中向下滚动以单击以展开
Spring-Security-web...
jar 如下图橙色圆圈所示。然后滚动以找到并展开
org.springframework.security.web.context
包裹。然后双击打开
HttpSessionSecurityContextRepository
在下面的屏幕截图中以蓝色突出显示的类。为此类中的每一行添加断点。您可能想对
SecurityContextPersistenceFilter
做同样的事情。同一个包中的类。
这些断点将使您能够看到 HttpSession
的值 ,现在变成
null
在控制流结束之前,但需要有一个可以映射到
XSRF-TOKEN
的有效值为了解决这个 OP。
demo
中包,在
CustomOAuth2RequestFactory.java
内添加断点.然后
Debug As... Spring Boot App
启动调试器。
最佳答案
你的问题解决了吗?我一直在四处寻找完整的 2FA 样本和 spring-security-oauth2。很高兴您发布了完整的概念和完整的来源。
我试过你的包,你的问题可以简单地通过改变你的 AuthserverApplication.java 中的 1 行代码来解决
@Override
protected void configure(HttpSecurity http) throws Exception {
// @formatter:off
http
.formLogin().loginPage("/login").permitAll()
.and()
.requestMatchers().antMatchers("/login", "/oauth/authorize", "/secure/two_factor_authentication", "/pincode")
.and()
.authorizeRequests().anyRequest().authenticated();
// @formatter:on
}
@Bean
public OAuth2RequestFactory customOAuth2RequestFactory(){
return new CustomOAuth2RequestFactory(clientDetailsService);
}
@Controller
@RequestMapping(TwoFactorAuthenticationController.PATH)
public class TwoFactorAuthenticationController {
private static final Logger LOG = LoggerFactory.getLogger(TwoFactorAuthenticationController.class);
public static final String PATH = "/secure/two_factor_authentication";
public static final String AUTHORIZE_PATH = "/oauth/authorize";
public static final String ROLE_TWO_FACTOR_AUTHENTICATED = "ROLE_TWO_FACTOR_AUTHENTICATED";
private RedirectStrategy redirectStrategy = new DefaultRedirectStrategy();
@RequestMapping(method = RequestMethod.GET)
public String auth(HttpServletRequest request, HttpSession session, HttpServletResponse resp/*, ....*/) {
System.out.println("-------- inside GET /secure/two_factor_authentication --------------");
if (AuthenticationUtil.isAuthenticatedWithAuthority(ROLE_TWO_FACTOR_AUTHENTICATED)) {
LOG.info("User {} already has {} authority - no need to enter code again", ROLE_TWO_FACTOR_AUTHENTICATED);
// throw ....;
}
else if (session.getAttribute(CustomOAuth2RequestFactory.SAVED_AUTHORIZATION_REQUEST_SESSION_ATTRIBUTE_NAME) == null) {
// LOG.warn("Error while entering 2FA code - attribute {} not found in session.", CustomOAuth2RequestFactory.SAVED_AUTHORIZATION_REQUEST_SESSION_ATTRIBUTE_NAME);
// throw ....;
}
return "pinCode";
}
@RequestMapping(method = RequestMethod.POST)
public String auth(FormData formData, HttpServletRequest req, HttpServletResponse resp,
SessionStatus sessionStatus, Principal principal, Model model)
throws IOException{
if (formData.getPinVal()!=null) {
if(formData.getPinVal().equals("5309")){
AuthenticationUtil.addAuthority(ROLE_TWO_FACTOR_AUTHENTICATED);
return "redirect:"+AUTHORIZE_PATH;
};
};
return "pinCode";
}
}
关于spring - 替换 AuthorizationRequest 后 HttpSession 为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37534880/
我正在使用 tomcat 作为我的网络服务器。我在 IE 中点击了一些 url,并为该请求在 HttpSession 中放置了一些对象。 现在我的问题: 如果我关闭浏览器并在新浏览器中点击 url,我
java中的HttpSession是在servlet之后才创建的吗 HttpSession s = request.getSession(); ? 在我的代码中我没有这样写,但是当我使用 if (re
HttpSession是建立在 cookie 和 url-rewriting 之上的高级接口(interface),这意味着只有一个 session ID 存储在客户端,与之相关的数据存储在服务器端。
HTTPSession 变量可以容纳的数据的最大限制(即大小)是多少?如果超过会发生什么?最重要的是,如果大小超过 HTTPSession 变量可以容纳的最大大小,那么在整个 session 中保存数
servlet HttpSession 存储在哪里? 在 HttpSession 属性中存储敏感信息是否安全。 用户是否可以恶意修改 session 属性? 最佳答案 HttpSession 的存储位
是否可以终止登录用户的 HttpSession? 我们可以在用户 session 中执行以下操作: HttpSession s = request.getSession(false); s.inval
我使用 jdk1.6.0_24,当我尝试使用 Mockito 模拟 HTTP session 时,出现下一个错误: java.lang.UnsupportedClassVersionError:jav
我无法在 HttpSession 上进行模拟。测试方法如下: @GetMapping @RequestMapping("/feed") public String feed(HttpS
我只是想知道打印 session 对象的输出是否像 System.out.println(sessiononject); 将返回 session 的创建时间。我将 session 对象存储在静态 Ha
作为异常处理的一部分,我想打印来自 HTTP session 的数据,如下所示: try{ //business logic } catch(Exception ex){ Strin
我是 servlet 新手,我对 HttpSession 有疑问, protected void doGet(HttpServletRequest request, HttpServletRespon
我在服务器应用程序中使用 HttpSession。并为 session 设置属性。我接下来的问题是: session 的属性如何设置——通过引用或值。 担心不会java堆空间异常和RAM节省的问题。
看完How do servlets work? Instantiation, sessions, shared variables and multithreading线程,我想知道是否在没有用户 s
我有一个 HTTPSession 对象,我想在其中存储用户信息。 我有两个选择 将用户电子邮件存储为字符串并将用户从数据库中取出并每次都使用这些字段。 在 session 中存储用户对象并获得 JST
这个问题在这里已经有了答案: What is a NullPointerException, and how do I fix it? (12 个答案) 关闭 7 年前。 你好,我有上面的代码 im
我有 2 个服务器。服务器A有一个cron系统,给定触发需求,通过servlet调用服务器B 在服务器 B 中,当收到服务器 A 的调用时,我将一些信息存储在 HttpSession 上,然后我启动一
是否存在单个 session 中可以存储的最大数据量?我知道仅在 session 中存储大量数据是一笔不好的交易。但是,存储的数量是否有限制,如果有,如何通知应用程序已达到此限制?仅此有异常(exce
长话短说,当用户在我的 J2ee 门户中登录和注销时,我必须通知遵循奇怪业务逻辑的第 3 方 Web 服务。所以我关注她的 httpSession 开始/结束/超时 但是用户可以创建多个 httpSe
我想跟踪 Java EE 应用程序中的所有 HTTP session 及其所有属性。 是否有任何免费工具可用于监控 HTTP session ?我不能用 JProfiler 做到这一点吗?如果可以做到
我一直在查看有关此主题的许多帖子,但找不到适合我的解决方案。 我正在使用 Java EE 6 和 JSF 2.0(部署在 JBoss AS 7.1 上) 在我的 web.xml 中我有:
我是一名优秀的程序员,十分优秀!