22-May-2022 05:02 - edited 22-May-2022 08:34
Hi,
I built this irule.
when HTTP_REQUEST {
#HTTP::header replace "Host" "x.x.x.x"
}
when ACCESS_ACL_ALLOWED {
HTTP::header insert "username" "user name value"
HTTP::header insert "userpass" "password value"
I want to change the user name value and the password value to parameters from Active Directory.
How can I do that?
Thtanks.
Solved! Go to Solution.
23-May-2022 06:50
Try:
HTTP::header insert "userpass" [ACCESS::session data get -secure session.sso.token.last.password]
But I would NOT write the password in a http header.
23-May-2022 00:36
Check out this: https://support.f5.com/csp/article/K74392192
23-May-2022 04:57
when HTTP_REQUEST {
#HTTP::header replace "Host" "x.x.x.x"
}
when ACCESS_ACL_ALLOWED {
HTTP::header insert "username" [ACCESS::session data get session.sso.token.last.username]
HTTP::header insert "userpass" [ACCESS::session data get session.sso.token.last.password]
}
I configure this, and it's insert the username correct but no the password.
any idea ?
23-May-2022 06:50
Try:
HTTP::header insert "userpass" [ACCESS::session data get -secure session.sso.token.last.password]
But I would NOT write the password in a http header.