Proxomitron filters.

Stopping your browser from sending the HTTP_REFERER string.

[HTTP headers]
In = FALSE
Out = TRUE
Key = "Referer: [MB] <empty> (Out)"
Match = "*"

This code was included in a German version of Proxomitron found here http://www.buerschgens.de/Prox/.

Filter for removing Java Applets that Grab Your IP & other Personal Information.

Even if you you are chained through a hundred proxies, if you allow Java Applets to run on your machine it is still possible to retrieve your IP address. Since it runs on the client (your computer) it doesn't matter how many proxies you use in your chain, your IP address can still be retrieved.

To stop this you can of course disable Java in your Browser but then you stop Java on all sites. With the bellow filter you can leave your Browser Java Enabled and still block Java Applets from running except on Web Sites that you trust and explicitly allow it (e.g. Web Sites in your Bypass List).

[Patterns]
Name = "Applet change class w/Indicator"
Active = TRUE
URL = "($TYPE(htm)&(^$LST(AllowApplet)))"
Bounds = "$NEST(<applet,</applet>)"
Limit = 1012
Match = "*"
Replace = "<small><font color=red>[Java Applet]</font></small>"

This code was originally found here http://asp.flaaten.dk/proxo/topic.asp?TOPIC_ID=380 but the Replace string has been modified.

Filter for removing VBScript.

Just like Java Script VBScript can be used to snoop on you. This filter will filter will remove VBScript and replace it with a warning text that VBScript has been removed.

[Patterns]
Name = "Delete VBScript"
Active = TRUE
Multi = TRUE
Limit = 4096
Match = "<script*language=$AV(VBS*)*>*</script>"
Replace = "<div style="border-color: red; border-style: double; border-width: 3px"><big><font color=red><b>[VBS] This Web Site may not be displayed correctly! This Web Site use VBScript which is blocked by Proxomitron.</b></font></big><small><font color=red><br>If you trust this site and want to be sure that you see all content as it was intended to, then maybe you should consider adding this site to your Bypass List.</font></small></div>"

This code was originally found here http://mail.bazafirm.pl/~drwolf/proxomitron.html but the Replace string has been modified.