Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: Query String Validation with Apache |
|
Author |
|
prasee
Joined: 13 Aug 2014 Posts: 1 Location: India
|
Posted: Thu 14 Aug '14 12:16 Post subject: Query String Validation with Apache |
|
|
Hello There,
I am a beginner in Apache and trying to figure out a way to validate a query string in the request handled by Apache and proxy the request to backend application only upon validation of the query string value.
For Example My current Virtual Host directive in httpd.conf is like this. Please excuse me if this is lengthy.
==================================================
Code: | <Location /fed/idp>
# Standalone weblogic that contains the custom code
WebLogicHost <hostname>.<domain>.com
WebLogicPort 7499
# If Client Certificate Authentication successful in Apache,
# redirect to AD Authentication for 2nd Factor
RewriteEngine On
RewriteCond %{SSL:SSL_CLIENT_VERIFY} ^SUCCESS$
# If referenceid is not found in the query string, it means the user is first time user.
# Send him to custom code for 2nd factor AD AuthN
RewriteCond %{QUERY_STRING} !referenceid
# Application deployed in Weblogic for AD AuthN
RewriteRule .* /authenticator/internal/Processor [L] |
==================================================
In the above piece, I am passing the request to a custom AD Authentication module deployed in my Weblogic if Certificate AuthN succeeds to perform a 2-factor AuthN.
1) For a first time user, upon certificate AuthN success in Apache, his request will not contain a query string named "referenceid" (which is set by my custom AuthN module that gets invoked in #2 below ) and so the user will be directed to AD Authentication module for 2nd factor Authentication.
2) Upon successful AD Authentication, I will set a random "referenceid:value" in the original request URL as query string and redirect back to Apache.
3) Now when Apache receives this access request from #2 above, Cert AuthN will not be invoked as there will be a SSL session maintained. But to identify whether this user access has to be sent to AD AuthN, i currently validate the existence of referenceid in query string.
However, I want to actually validate whether the value of referenceid in the query string matches with what i have set in #2. If successful, I do not want the second factor AuthN to be invoked. The user must be proxied to the backend application directly. |
|
Back to top |
|
|
|
|
|
|