admin管理员组文章数量:1346192
I try to implement unconstrained delegation in my spring boot application. Based on the article:
Client sends 2 tickets to the web server: TGT + TGS(service ticket)
I've configured wireshark to check network traffic and I see the following:
How many tickets are where ? How can I check ?
In spring In debug I see the following:
In AD service account is configure in that way:
So my question are:
- How many tickers are in request ?
if there are 2: please point me out to them. And how to accept them on server side ?
if there is 1: How should I add one more ticket ?
UPDATE
klist result is:
I try to implement unconstrained delegation in my spring boot application. Based on the article:
Client sends 2 tickets to the web server: TGT + TGS(service ticket)
I've configured wireshark to check network traffic and I see the following:
How many tickets are where ? How can I check ?
In spring In debug I see the following:
In AD service account is configure in that way:
So my question are:
- How many tickers are in request ?
if there are 2: please point me out to them. And how to accept them on server side ?
if there is 1: How should I add one more ticket ?
UPDATE
klist result is:
Share Improve this question edited 2 days ago gstackoverflow asked 2 days ago gstackoverflowgstackoverflow 36.6k138 gold badges418 silver badges785 bronze badges1 Answer
Reset to default 0How many tickets are where ? How can I check ?
There is always one ticket (the service ticket) under ap-req > ticket
. It's sent in the clear, but always paired with a one-time authenticator that proves the client knows the session key.
When delegation is enabled, the second ticket (delegated) is stored within the encrypted area of that authenticator, under ap-req > authenticator > cipher > authenticator > cksum > krb-cred
.
How many tickers are in request ?
Impossible to tell from the screenshot.
if there are 2: please point me out to them. And how to accept them on server side ?
It should be automatically stored as part of the server's (acceptor's) GSSContext. That seems to be happening here and here.
if there is 1: How should I add one more ticket ?
In HTTP, at least as far as I understand it, the client needs to perform delegation proactively (since only one step is possible for GSSAPI so the server can't request it).
The client's
klist
needs to show a TGT that isforwardable
.Also, the user principal needs to not have any KDC-side restrictions. For example, Domain Admins on Windows might have the "This account is sensitive and cannot be delegated" flag set on them.
If the HTTP service ticket happens to be cached in
klist
, then it should show theok_as_delegate
flag, corresponding to "Trust this user for delegation[...]".Windows and some other clients require that flag (treating it as admin-set policy), other clients ignore that flag and always delegate if configured; e.g. a Java client could use requestDelegPolicy().
The HTTP client needs to be configured to do delegation.
In Firefox,
network.negotiate-auth.delegation-uris
would be set tohttps://
for example or to.example
(or a combination) to make the browser initiate delegation. (Make sure you don't make the 'delegation' list too broad; it should only allow a few specific hosts.)With curl you would specify
curl --negotiate --delegation always
or--delegation policy
(doesn't work for me on Windows, but does work on Linux).If you were making a custom HTTP client in Java, I think you would call
.requestCredDeleg(true)
on the GSSContext object before getting a token.
本文标签: javaHow to implement unconstrained delegationStack Overflow
版权声明:本文标题:java - How to implement unconstrained delegation? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743824742a2545431.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论