Technical Forum
Ask questions. Discover Answers.
cancel
Showing results for 
Search instead for 
Did you mean: 
Custom Alert Banner

i-rule header insert - APM

Oudi_Cohen_Kash
Altocumulus
Altocumulus

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.

1 ACCEPTED SOLUTION

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.

View solution in original post

3 REPLIES 3

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 ?

 

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.