Post Reply 
Can't get the GET header filter to work.
Jul. 11, 2005, 03:49 PM
Post: #8
 
As Mike mentioned above, there is no such thing like *the* GET header.
What you're trying to achieve is blocking requests that contain "email=" in the URL.

During the request the URL is split into two parts:
"GET" contains the relative URL path (this is *no* header, but the request).
"Host" contains the hostname part (this is a header).

So what you want is a header filter that simply blocks "email=" in the URL match:
Code:
[HTTP headers]
In = FALSE
Out = TRUE
Key = "!-|||||||||||| URL: Block Requests containing "email=" (Out)"
URL = "*email\="
Replace = "Killed\k"

HTH,
sidki
Add Thank You Quote this message in a reply
Post Reply 


Messages In This Thread
Can't get the GET header filter to work. - Shaman - Jul. 07, 2005, 07:30 PM
[] - Oddysey - Jul. 09, 2005, 02:38 AM
[] - z12 - Jul. 09, 2005, 06:38 AM
[] - Shaman - Jul. 10, 2005, 11:08 PM
[] - Oddysey - Jul. 11, 2005, 02:19 AM
[] - Shea - Jul. 11, 2005, 02:57 AM
[] - Shaman - Jul. 11, 2005, 09:45 AM
[] - sidki3003 - Jul. 11, 2005 03:49 PM
email... - ProxRocks - Jul. 11, 2005, 04:28 PM
[] - sidki3003 - Jul. 11, 2005, 05:12 PM
this subject line is dumb... - ProxRocks - Jul. 11, 2005, 05:52 PM
[] - Shaman - Jul. 12, 2005, 10:57 AM

Forum Jump: