Post Reply 
header filter help requested - preload=true...
Nov. 09, 2010, 11:35 AM
Post: #1
header filter help requested - preload=true...
i have a particular ssl-site that "refuses" to let me log out (in half-ssl mode, at least)...

i've noticed that the log out "process" 'jumps through' three URL's, the second of those URL's has a &preload=true appended to the end of the URL string...

i've been unable to construct one myself, does anyone have any advice on a header filter that would redirect/jump any URL ending with &preload=true to &preload=false instead?
Add Thank You Quote this message in a reply
Nov. 09, 2010, 05:13 PM
Post: #2
RE: header filter help requested - preload=true...
An expression like

Code:
\1\&preload=true\2&$RDIR(https://\1&preload=false\2)

somewhere.

Code:
[HTTP headers]
In = FALSE
Out = TRUE
Key = "!-|||||||||||| URL: Example (Out)"
URL = "\1\&preload=true\2&$RDIR(https://\1&preload=false\2)"

Assuming https:// for the redirect.

Try to add something to the above expression that will cause the filter to fail quickly. For instance,
Code:
prxbx.com&\1\&preload=true\2&$RDIR(https://\1&preload=false\2)
would stop looking for a match quicker than
Code:
\1\&preload=true\2&$RDIR(https://\1&preload=false\2)


HTH
Add Thank You Quote this message in a reply
Nov. 09, 2010, 07:41 PM
Post: #3
RE: header filter help requested - preload=true...
eureka! that got me there, many thanks...

took some debugging and i'm patting myself on the back for being able to "find" it, but to get the filter to "function" as expected, the ssl site was looking for a &cd=false
Add Thank You Quote this message in a reply
Post Reply 


Forum Jump: