APM SAML IdP - SP Issuer Extraction
Problem this snippet solves: APM doesn't expose any detail about the SAML SP Issuer when authentication requests hitting APM as an IdP during an SP initiated SAMLRequest.
This iRule when applied to...
Published Apr 06, 2016
Version 1.0Nobby
Nimbostratus
Joined June 06, 2006
Nobby
Nimbostratus
Joined June 06, 2006
Jad_Tabbara__J1
Sep 11, 2019Cirrostratus
Hello Nobby.
Thanks for sharing very usefull.
I used it on for Azure Office 365 Integration but I adapt it a little bit because the SAML Request does not contain "saml:issuer"
but instead "<issuer" so I have change the following line
set SAML_Issuer_loc [string first "saml:issuer" [string tolower $SAMLdata]]
by the following line
set SAML_Issuer_loc [string first "<issuer" [string tolower $SAMLdata]]
After that, I was able to extract the SAML SP "Issuer" value.
Regards