- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我是 Spring Security 的新手,如果这是直截了当的,请原谅我。
我们正在重写遗留网络应用程序的 UI 层。我们决定新的 UI 层将基于 Spring MVC 和 Spring Security 来处理安全和授权。
我一直在考虑在新应用程序中设置安全性以模仿我们在以前的应用程序中的安全性。在旧应用中,我们基本上有两个用户入口点:
我想我会尝试在 Spring Security 中模仿这个功能,但到目前为止还不够。我在测试中使用内存中身份验证提供程序代替 LDAP,因为它更容易。我有适用于内部用户的 http 基本身份验证。
我已经尝试子类化 AbstractPreAuthenticatedProcessingFilter
并通过它提供凭据,但它似乎确实将凭据正确转发给“默认”身份验证提供程序。
<http>
...
<http-basic />
<custom-filter position="PRE_AUTH_FILTER" ref="ExternalLoginFilter" />
</http>
<beans:bean id="ExternalLoginFilter" class="com.foo.ExternalLoginPreAuthenticationFilter">
<beans:property name="authenticationManager" ref="authenticationManager" />
</beans:bean>
<authentication-manager alias="authenticationManager">
<authentication-provider>
<user-service>
<user name="internal-user" password="password" authorities="ROLE_USER, ROLE_INTERNAL" />
<user name="external-user" password="password" authorities="ROLE_USER, ROLE_EXTERNAL" />
</user-service>
</authentication-provider>
</authentication-manager>`
这是我的 ExternalLoginPreAuthenticationFilter:
public class ExternalLoginPreAuthenticationFilter extends AbstractPreAuthenticatedProcessingFilter {
@Override
protected Object getPreAuthenticatedCredentials(HttpServletRequest req) {
return "password";
}
@Override
protected Object getPreAuthenticatedPrincipal(HttpServletRequest req) {
HttpSession session = req.getSession(false);
if(session != null){
return session.getAttribute("app.external-user.username");
}
return null;
}
我也尝试像一些示例建议的那样设置“preAuthenticatedAuthenticationProvider”,但这似乎期望我的 ExternalLoginPreAuthenticationFilter
也已解析用户角色。
关于如何配置 Spring MVC 以允许上述场景的任何想法?基本上,我需要能够告诉 Spring Security 以侵入性最小的方式使用特定的用户名/密码针对默认身份验证提供程序执行登录,最好不要有太多 hack(旧应用程序使用的)。
解决方案注意事项:虽然 Ralph 的解决方案似乎有效,但特别是这部分:
I think using the PreAuthenticatedAuthenticationProvider and set the preAuthenticatedUserDetailsService variable to your in memory AuthenticationUserDetailsService should be the way to go.
不过,它在 CSRF 保护方面似乎也表现不佳。当我登录并被重定向到主页时,来自该页面的任何 HTTP POST 都将无法通过 CSRF 检查。在 POST 之前对主页的后续 GET 解决了这个问题,因此 Spring 似乎以某种方式不正确地覆盖了当前的 CSRF token 。我找到了一个 bug report详细说明问题。尽管它声称已修复,但我无法解决它。虽然错误报告链接到论坛中的解决方法,但我习惯于使用以下似乎有效的解决方法。
诀窍是将 AuthenticationManager
注入(inject)到您的 Controller
中并自己进行登录:
@Controller
@RequestMapping(value = "/external-login")
public class ExternalLoginController {
private AuthenticationManager authenticationManager;
@Autowired
public ExternalLoginController(AuthenticationManager authenticationManager){
this.authenticationManager = authenticationManager;
}
// ...
@RequestMapping(method = RequestMethod.POST)
public String login(){
// Do this after third-party authentication service accepts credentials
String username = "external-user"; // or whatever username was authenticated by third-party
UsernamePasswordAuthenticationToken credentials = new UsernamePasswordAuthenticationToken(username, "password");
Authentication auth = authenticationManager.authenticate(credentials);
SecurityContextHolder.getContext().setAuthentication(auth);
return "redirect:/";
}
}
最佳答案
问题是,AuthenticationProvider
是在 AuthenticationManager
中通过提供的身份验证凭证类(通常是 AbstractAuthenticationToken
的子类)选择的).
您的 PreAuthenticationProcessingFilter
将创建一个 PreAuthenticatedAuthenticationToken
,它通常由 PreAuthenticatedAuthenticationProvider
“使用”。
所以要么:
PreAuthenticatedAuthenticationProvider
token 的AuthenticationProvider
,然后执行您想要的操作,或者PreAuthenticationProcessingFilter
以创建另一种 token (例如 UsernamePasswordAuthenticationToken
,它由您使用的“正常”身份验证提供程序“使用”(子类AbstractUserDetailsAuthenticationProvider
))我认为使用 PreAuthenticatedAuthenticationProvider
并将 preAuthenticatedUserDetailsService
变量设置为内存中的 AuthenticationUserDetailsService
应该是可行的方法。
关于java - 预验证并将用户名转发给默认验证提供程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21474128/
我在正在构建的应用程序中集成了转发系统,但很难弄清楚在同一流中检索帖子和转发的逻辑。 我有一个 post_reblog 数据透视表来存储 post_id 和 user_id - 转发该帖子的用户的 I
好的,由于阅读了数百本手册和说明页但仍然没有得到它,我正处于某个时刻,我觉得自己非常愚蠢。我希望你能帮帮我! 我有一台运行 Ubuntu Server 的服务器。在服务器上,我正在运行 ddclien
我在我的项目中使用嵌入 jetty 并提出了一些问题。我有这两页: íindex.jsp 结果.jsp 这两个 servlet: 上传 搜索 在 íindex.jsp 中有一个用于上传文件的表单,上传
我正在使用 c# asp.net 创建一个基于 Web 的电子邮件客户端。 令人困惑的是,各种电子邮件客户端在回复电子邮件时似乎以多种不同方式添加原文。 我想知道的是,是否有某种标准化的方式来消除这个
我正在开发一个评估系统,让考生尝试参加考试。因此,呈现问题及其选择的页面是带有 iframe 的页面,在该页面中呈现问题。包含 iframe 的页面包含 JavaScript 计时器。 因此,当问题在
QOTD(每日问题)的 Twilio 新手。我认为这应该是非常基本的,但我似乎找不到答案。 我成功地将一个电话号码转发到我的手机上……很简单……但问题是我经营着几家公司,我想将号码转发到我的手机上。问
我正在尝试在 pod 上公开一个端口 8080,这样我就可以直接从服务器获取 wget。使用端口转发一切正常(kubectl --namespace jenkins port-forward pods
我想转发一个 url,这样如果你在地址栏中输入 www.example.com,你就会被转发到 www.test.com/test.php。 我所做的是在我的区域文件中添加了一个 cname 记录。
我正在尝试在构建 docker 镜像时克隆一个私有(private) github 存储库。我安装了 docker 18.09.2 并根据 Build secrets and SSH forwardi
Grails 2.2.0 我正在探索grails和ajax,也许我是一个狂热的ajax适配器,但是我确实认为它是一个改变游戏规则的人,所以我要走在前面。 数据模型是主要细节(1:n)。客户端中的一个表
Tumblr API似乎不支持帖子的某些细节:评论、转发或点赞的数量。 真的没有办法从每个帖子的 Tumblr API 获取这个吗? 最佳答案 tumblr API 在报告笔记的方式上非常有限。它可以
我正在制作一个greasemonkey脚本,我想要一个链接来前进并修改当前的html并允许用户单击返回以转到原始页面。 我该怎么做?使用jquery+greasemonkey+javascript。主
我的包含文件有一个小问题,我已经对我的问题做了一个简化的模型。假设我正在编译一些需要名为的头文件的源代码 header.h 里面有: #ifndef HEADER_INCLUDED #define H
我遇到了一个奇怪的问题。我有一个自定义组件来为我处理 UICollectionView 的布局。该代码是用 Swift 编写的。 class MyCustomCollectionViewHandler
有什么方法可以导出命令输出的颜色吗? 让我们用一个小例子来解释它: ls -alh --color=auto 将打印目录的彩色内容,而 ls -alh --color=auto | cat 不会打印一
我希望能够转发 url,例如 http://external_url.com/auth => http://internal_url.com:8080/app/auth https://externa
我有一个在 nginx 中混合运行 PHP 和 Tomcat 的域。这是它的样子。我在这个站点上有一个域 example.com 我安装了 Wordpress。这完全没有问题。现在我想要的是,当您导航
我在一种模板化的层次结构中有一堆相关的指标,看起来像 template struct index{ index w; int x, y; }; template <> struct
我之前发布了有关使用Processing与Leap Motion的文章https://www.leapmotion.com/为了构建一个可以检测手颤的应用程序。我相信我需要执行 FFT 才能实现此目的
Peer 必须能够转发数据,以便在点对点覆盖(例如 Chord)中进行广播。当每个节点(对等体)接收到数据时,它会将数据转发到其路由表中的所有其他节点,然后这些节点将再次转发相同的数据,直到环中的所有
我是一名优秀的程序员,十分优秀!