ssl_send_data(): Prevent endless loop
[privoxy.git] / default.filter
1 #################################################################################
2 #
3 #  File        :  default.filter
4 #
5 #  Purpose     :  Rules to process the content of web pages
6 #
7 #  Copyright   :  Written by and Copyright (C) 2001-2020 the
8 #                 Privoxy team. https://www.privoxy.org/
9 #
10 #                 This program is free software; you can redistribute it
11 #                 and/or modify it under the terms of the GNU General
12 #                 Public License as published by the Free Software
13 #                 Foundation; either version 2 of the License, or (at
14 #                 your option) any later version.
15 #
16 #                 This program is distributed in the hope that it will
17 #                 be useful, but WITHOUT ANY WARRANTY; without even the
18 #                 implied warranty of MERCHANTABILITY or FITNESS FOR A
19 #                 PARTICULAR PURPOSE.  See the GNU General Public
20 #                 License for more details.
21 #
22 #                 The GNU General Public License should be included with
23 #                 this file.  If not, you can view it at
24 #                 http://www.gnu.org/copyleft/gpl.html
25 #                 or write to the Free Software Foundation, Inc., 59
26 #                 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
27 #
28 #################################################################################
29 #
30 # Syntax:
31 #
32 # Generally filters start with a line like "FILTER: name description".
33 # They are then referrable from the actionsfile with +filter{name}
34 #
35 # FILTER marks a filter as content filter, other filter
36 # types are CLIENT-HEADER-FILTER, CLIENT-HEADER-TAGGER,
37 # SERVER-HEADER-FILTER and SERVER-HEADER-TAGGER.
38 #
39 # Inside the filters, write one Perl-Style substitution (job) per line.
40 # Jobs that precede the first FILTER: line are ignored.
41 #
42 # For Details see the pcrs manpage contained in this distribution.
43 # (and the perlre, perlop and pcre manpages)
44 #
45 # Note that you are free to choose the delimiter as you see fit.
46 #
47 # Note2: In addition to the Perl options gimsx, the following nonstandard
48 # options are supported:
49 #
50 # 'U' turns the default to ungreedy matching.  Add ? to quantifiers to
51 #     switch back to greedy.
52 #
53 # 'T' (trivial) prevents parsing for backreferences in the substitute.
54 #     Use if you want to include text like '$&' in your substitute without
55 #     quoting.
56 #
57 # 'D' (Dynamic) allows the use of variables. Supported variables are:
58 #     $host, $listen-address, $origin (the IP address the request came
59 #     from), $path and $url.
60 #
61 #     Note that '$' is a bad choice as delimiter for dynamic filters as you
62 #     might end up with unintended variables if you use a variable name
63 #     directly after the delimiter. Variables will be resolved without
64 #     escaping anything, therefore you also have to be careful not to chose
65 #     delimiters that appear in the replacement text. For example '<' should
66 #     be save, while '?' will sooner or later cause conflicts with $url.
67 #
68 #################################################################################
69
70
71 #################################################################################
72 #
73 # js-annoyances: Get rid of particularly annoying JavaScript abuse.
74 #
75 #################################################################################
76 FILTER: js-annoyances Get rid of particularly annoying JavaScript abuse.
77
78 # Note: Most of these jobs would be safer if restricted to a
79 # <script> context as in:
80 #
81 # s/(<script.*)nasty-item(?=.*<\/script>)/$1replacement/sigU
82 #
83 # but that would make them match only the first occurrence of
84 # nasty-item in each <script>. We need nestable jobs!
85
86 # Get rid of Javascript referrer tracking.
87 # Test page: http://www.javascript-page.com/referrer.html
88 #
89 s|(?:\w+\.)+referrer|false.toString()|gisU
90
91 # The status bar is for displaying link targets, not pointless blahblah
92 #
93 s@([\W]\s*)((?:this|window)\.(?:default)?status)\s*=\s*((['"]).*?\4)@$1$2 =\
94  (typeof(this.href) != 'undefined')?($3 + ' URL: ' + this.href):($2)@ig
95
96 s/(?:(?:this|window)\.(?:default)?status)\s*=\s*\w*\s*;//ig
97
98 # Kill OnUnload popups. Yummy.
99 # Test: http://www.zdnet.com/zdsubs/yahoo/tree/yfs.html
100 #
101 s/(<body\s+[^>]*)onunload/$1never/siU
102 s|(<script.*)window\.onunload(?=.*</script>)|$1never|sigU
103
104 # If we allow window.open, we want normal window features:
105 # Test: http://www.htmlgoodies.com/beyond/notitle.html
106 #
107 s/(open\s*\([^\)]+resizable=)(["']?)(?:no|0)\2/$1$2yes$2/sigU
108 s/(open\s*\([^\)]+location=)(["']?)(?:no|0)\2/$1$2yes$2/sigU
109 s/(open\s*\([^\)]+status=)(["']?)(?:no|0)\2/$1$2yes$2/sigU
110 s/(open\s*\([^\)]+scroll(?:ing|bars)=)(["']?)(?:no|0)\2/$1$2auto$2/sigU
111 s/(open\s*\([^\)]+menubar=)(["']?)(?:no|0)\2/$1$2yes$2/sigU
112 s/(open\s*\([^\)]+toolbar=)(["']?)(?:no|0)\2/$1$2yes$2/sigU
113 s/(open\s*\([^\)]+directories=)(["']?)(?:no|0)\2/$1$2yes$2/sigU
114 s/(open\s*\([^\)]+fullscreen=)(["']?)(?:yes|1)\2/$1$2no$2/sigU
115 s/(open\s*\([^\)]+always(?:raised|lowered)=)(["']?)(?:yes|1)\2/$1$2no$2/sigU
116 s/(open\s*\([^\)]+z-?lock=)(["']?)(?:yes|1)\2/$1$2no$2/sigU
117 s/(open\s*\([^\)]+hotkeys=)(["']?)(?:yes|1)\2/$1$2no$2/sigU
118 s/(open\s*\([^\)]+titlebar=)(["']?)(?:no|0)\2/$1$2yes$2/sigU
119 s/(open\s*\([^\)]+always(?:raised|lowered)=)(["']?)(?:yes|1)\2/$1$2no$2/sigU
120
121
122 #################################################################################
123 #
124 # js-events: Kill JavaScript event bindings and timers (Radically destructive! Only for extra nasty sites).
125 #
126 #################################################################################
127 FILTER: js-events Kill JavaScript event bindings and timers (Radically destructive! Only for extra nasty sites).
128
129 s/(on|event\.)((mouse(over|out|down|up|move))|(un)?load|contextmenu|selectstart)/never/ig
130 # Not events, but abused on the same type of sites:
131 s/(alert|confirm)\s*\(/concat(/ig
132 s/set(timeout|interval)\(/concat(/ig
133
134 #################################################################################
135 #
136 # html-annoyances: Get rid of particularly annoying HTML abuse.
137 #
138 #################################################################################
139 FILTER: html-annoyances Get rid of particularly annoying HTML abuse.
140
141 # New browser windows (if allowed -- see no-popups filter below) should be
142 # resizeable and have a location and status bar
143 #
144 s/(<a\s+href[^>]+resizable=)(['"]?)(?:no|0)\2/$1$2yes$2/igU
145 s/(<a\s+href[^>]+location=)(['"]?)(?:no|0)\2/$1$2yes$2/igU
146 s/(<a\s+href[^>]+status=)(['"]?)(?:no|0)\2/$1$2yes$2/igU
147 s/(<a\s+href[^>]+scrolling=)(['"]?)(?:no|0)\2/$1$2auto$2/igU
148 s/(<a\s+href[^>]+menubar=)(['"]?)(?:no|0)\2/$1$2yes$2/igU
149
150 # The <BLINK> and <MARQUEE> tags were crimes!
151 #
152 s-</?(blink|marquee).*>--sigU
153
154
155 #################################################################################
156 #
157 # content-cookies: Kill cookies that come in the HTML or JS content.
158 #
159 #################################################################################
160 FILTER: content-cookies Kill cookies that come in the HTML or JS content.
161
162 # JS cookies, except those used by antiadbuster.com to detect us:
163 #
164 s|(\w+\.)+cookie(?=[ \t\r\n]*=)(?!='aab)|ZappedCookie|ig
165
166 # HTML cookies:
167 #
168 s|<meta\s+http-equiv=['"]?set-cookie.*>|<!-- ZappedCookie -->|igU
169
170
171 #################################################################################
172 #
173 # refresh-tags: Kill automatic refresh tags if refresh time is larger than 9 seconds.
174 #
175 #################################################################################
176 FILTER: refresh-tags Kill automatic refresh tags if refresh time is larger than 9 seconds.
177
178 # Note: Only deactivates refreshes with more than 9 seconds delay to
179 #       preserve monster-stupid but common redirections via meta tags.
180 #
181 s@<meta\s+http-equiv\s*=\s*(['"]?)refresh\1\s+content\s*=\s*(['"]?)\d{2,}\s*(;(?:\s*url\s*=\s*)?([^>\2]*))?\2@<link rev="x-refresh" href="$4"@ig
182
183
184 #################################################################################
185 #
186 # unsolicited-popups: Disable unsolicited pop-up windows.
187 #
188 #################################################################################
189 FILTER: unsolicited-popups Disable only unsolicited pop-up windows.
190
191 s+([^'"]\s*<head.*>)(?=\s*[^'"])+$1<script>function PrivoxyWindowOpen(){return(null);}</script>+isU
192 s@([^\w\s.]\s*)((?:map)?(window|this|parent)\.?)?open\s*\(@$1PrivoxyWindowOpen(@ig
193 s+([^'"]\s*</html>)(?!\s*(\\n|'|"))+$1<script>function PrivoxyWindowOpen(a, b, c){return(window.open(a, b, c));}</script>+iU
194
195
196 ##################################################################################
197 #
198 # all-popups: Kill all popups in JavaScript and HTML.
199 #
200 #################################################################################
201 FILTER: all-popups Kill all popups in JavaScript and HTML.
202
203 s@((\W\s*)(?:map)?(window|this|parent)\.?)open\s*\\?\(@$1concat(@ig  # JavaScript
204 #s/\starget\s*=\s*(['"]?)_?(blank|new)\1?/ notarget/ig        # HTML
205 s/\starget\s*=\s*(['"]?)_?(blank|new)\1?/ /ig        # (X)HTML
206
207 ##################################################################################
208 #
209 # img-reorder: Reorder attributes in <img> tags to make the banners-by-* filters more effective.
210 #
211 #################################################################################
212 FILTER: img-reorder Reorder attributes in <img> tags to make the banners-by-* filters more effective.
213
214 # In the first step src is moved to the start, then width is moved to the second
215 # place to guarantee an order of src, width, height. Also does some white-space
216 # normalization.
217 #
218 # This makes banners-by-size more effective and allows both banners-by-size
219 # and banners-by-link to preserve the original image URL in the title attribute.
220
221 s|<img\s+?([^>]*)\ssrc\s*=\s*(['"])([^>'" ]+)\2|<img src=$2$3$2 $1|siUg
222 s|<img\s+?([^>]*)\ssrc\s*=\s*([^'">\\\s]+)|<img src=$2 $1|siUg
223 s|(<img[^>]+height)\s*=\s*|$1=|siUg
224
225 s|<img (src=(?:(['"])[^>'" ]*\2\|[^'">\\\s]+?))([^>]*)\s+width\s*=\s*((["']?)\d+?\5)(?=[\s>])|<img $1 width=$4$3|siUg
226
227
228 #################################################################################
229 #
230 # banners-by-size: Kill banners by size.
231 #
232 #################################################################################
233 #
234 # Standard banner sizes taken from http://www.iab.net/iab_banner_standards/bannersizes.html
235 #
236 # Note: Use http://config.privoxy.org/send-banner?type=trans for a transparent 1x1 image
237 #       Use http://config.privoxy.org/send-banner?type=pattern for a grey/white pattern image
238 #       Use http://config.privoxy.org/send-banner?type=auto  to auto-select.
239 #
240 # Note2: Use img-reorder before this filter to ensure maximum matching success
241 #
242 #################################################################################
243 FILTER: banners-by-size Kill banners by size.
244
245 # 88*31
246 s@<img\s+(?:src\s*=\s*(['"]?)([^>\\\1\s]+)\1)?[^>]*?(width=(['"]?)88\4)[^>]*?(height=(['"]?)31\6)[^>]*?(?=/?>)@\
247   <img src="http://config.privoxy.org/send-banner?type=auto" border="0" title="Killed-$2-by-size" $3 $5@sig
248 # 120*60, 120*90, 120*240, 120*600
249 s@<img\s+(?:src\s*=\s*(['"]?)([^>\\\1\s]+)\1)?[^>]*?(width=(['"]?)120\4)[^>]*?(height=(['"]?)(?:600?|90|240)\6)[^>]*?(?=/?>)@\
250   <img src="http://config.privoxy.org/send-banner?type=auto" border="0" title="Killed-$2-by-size" $3 $5@sig
251 # 125*125
252 s@<img\s+(?:src\s*=\s*(['"]?)([^>\\\1\s]+)\1)?[^>]*?(width=(['"]?)125\4)[^>]*?(height=(['"]?)125\6)[^>]*?(?=/?>)@\
253   <img src="http://config.privoxy.org/send-banner?type=auto" border="0" title="Killed-$2-by-size" $3 $5@sig
254 # 160*600
255 s@<img\s+(?:src\s*=\s*(['"]?)([^>\\\1\s]+)\1)?[^>]*?(width=(['"]?)160\4)[^>]*?(height=(['"]?)600\6)[^>]*?(?=/?>)@\
256   <img src="http://config.privoxy.org/send-banner?type=auto" border="0" title="Killed-$2-by-size" $3 $5@sig
257 # 180*150
258 s@<img\s+(?:src\s*=\s*(['"]?)([^>\\\1\s]+)\1)?[^>]*?(width=(['"]?)180\4)[^>]*?(height=(['"]?)150\6)[^>]*?(?=/?>)@\
259   <img src="http://config.privoxy.org/send-banner?type=auto" border="0" title="Killed-$2-by-size" $3 $5@sig
260 # 234*60, 468*60 (Most Banners!)
261 s@<img\s+(?:src\s*=\s*(['"]?)([^>\\\1\s]+)\1)?[^>]*?(width=(['"]?)(?:234|468)\4)[^>]*?(height=(['"]?)60\6)[^>]*?(?=/?>)@\
262   <img src="http://config.privoxy.org/send-banner?type=auto" border="0" title="Killed-$2-by-size" $3 $5@sig
263 # 240*400
264 s@<img\s+(?:src\s*=\s*(['"]?)([^>\\\1\s]+)\1)?[^>]*?(width=(['"]?)240\4)[^>]*?(height=(['"]?)400\6)[^>]*?(?=/?>)@\
265   <img src="http://config.privoxy.org/send-banner?type=auto" border="0" title="Killed-$2-by-size" $3 $5@sig
266 # 250*250, 300*250
267 s@<img\s+(?:src\s*=\s*(['"]?)([^>\\\1\s]+)\1)?[^>]*?(width=(['"]?)(?:250|300)\4)[^>]*?(height=(['"]?)250\6)[^>]*?(?=/?>)@\
268   <img src="http://config.privoxy.org/send-banner?type=auto" border="0" title="Killed-$2-by-size" $3 $5@sig
269 # 336*280
270 s@<img\s+(?:src\s*=\s*(['"]?)([^>\\\1\s]+)\1)?[^>]*?(width=(['"]?)336\4)[^>]*?(height=(['"]?)280\6)[^>]*?(?=/?>)@\
271   <img src="http://config.privoxy.org/send-banner?type=auto" border="0" title="Killed-$2-by-size" $3 $5@sig
272
273 # Note: 200*50 was also proposed, but it probably causes too much collateral damage:
274 #
275 #s@<img\s+(?:src\s*=\s*(['"]?)([^>\\\1\s]+)\1)?[^>]*?(width=(['"]?)200\4)[^>]*?(height=(['"]?)50\6)[^>]*?(?=/?>)@\
276 #   <img src="http://config.privoxy.org/send-banner?type=auto" border="0" title="Killed-$2-by-size" $3 $5@sig
277
278
279 #################################################################################
280 #
281 # banners-by-link: Kill banners by their links to known clicktrackers (Experimental).
282 #
283 #################################################################################
284 FILTER: banners-by-link Kill banners by their links to known clicktrackers.
285
286 # Common case with width and height attributes:
287 #
288 s@<a\s+href\s*=\s*(['"]?)([^>\1\s]*?(?:\
289   adclick                             # See www.dn.se \
290 | advert                              # see dict.leo.org \
291 | atwola\.com/(?:link|redir)          # see www.cnn.com \
292 | doubleclick\.net/jump/              # redirs for doublecklick.net ads \
293 | counter                             # common \
294 | (?<!&type=)tracker                  # (&type=tracker is used in sf's project statistics) \
295 | adlog\.pl                           # see sf.net \
296 )[^>\1\s]*)\1[^>]*>\s*<img\s+(?:src\s*=\s*(['"]?)([^>\\\3\s]+)\3)?[^>]*((?:width|height)\s*=\s*(['"]?)\d+?\6)[^>]*((?:width|height)\s*=\s*(['"]?)\d+?\8)[^>]*?(?=/?>)\
297 @<img $5 $7 src="http://config.privoxy.org/send-banner?type=auto" border="0" title="Killed $4 by link to $2"@sigx
298
299 # Rare case w/o explicit dimensions:
300 #
301 s@<a\s+href\s*=\s*(['"]?)([^>\1\s]*?(?:ad(?:click|vert)|atwola\.com/(?:link|redir)|doubleclick\.net/jump/|(?<!&type=)tracker|counter|adlog\.pl)[^>\1\s]*)\1[^>]*>\s*<img\s+(?:src\s*=\s*(['"]?)([^>\\\3\s]+)\3)?[^>]*?(?=/?>)@<img src="http://config.privoxy.org/send-banner?type=auto" border="0" title="Killed $4 by link to $2"@sig
302
303
304 ################################################################################
305 #
306 # webbugs: Squish WebBugs (1x1 invisible GIFs used for user tracking).
307 #
308 #################################################################################
309 FILTER: webbugs Squish WebBugs (1x1 invisible GIFs used for user tracking).
310
311 s@<img[^>]*\s(?:width|height)\s*=\s*['"]?[01](?=\D)[^>]*\s(?:width|height)\s*=\s*['"]?[01](?=\D)[^>]*?>@@siUg
312
313
314 #################################################################################
315 #
316 # tiny-textforms: Extend those tiny textareas up to 40x80 and kill the hard wrap.
317 #
318 #################################################################################
319 FILTER: tiny-textforms Extend those tiny textareas up to 40x80 and kill the hard wrap.
320
321 s/(<textarea[^>]*?)(?:\s*(?:rows|cols)=(['"]?)\d+\2)+/$1 rows=$2\40$2 cols=$2\80$2/ig
322 s/(<textarea[^>]*?)wrap=(['"]?)hard\2/$1/ig
323
324
325 #################################################################################
326 #
327 # jumping-windows: Prevent windows from resizing and moving themselves.
328 #
329 #################################################################################
330 FILTER: jumping-windows Prevent windows from resizing and moving themselves.
331
332 s/(?<=[\W])(?:window|this|self)\.(?:move|resize)(?:to|by)\(/''.concat(/ig
333
334 #################################################################################
335 #
336 # frameset-borders: Give frames a border, make them resizable and scrollable.
337 #
338 #################################################################################
339 FILTER: frameset-borders Give frames a border and make them resizable.
340
341 s/(<frameset\s+[^>]*)framespacing=(['"]?)(no|0)\2/$1/igU
342 s/(<frameset\s+[^>]*)frameborder=(['"]?)(no|0)\2/$1/igU
343 s/(<frameset\s+[^>]*)border=(['"]?)(no|0)\2/$1/igU
344 s/(<frame\s+[^>]*)noresize/$1/igU
345 s/(<frame\s+[^>]*)frameborder=(['"]?)(no|0)\2/$1/igU
346 s/(<frame\s+[^>]*)scrolling=(['"]?)(no|0)\2/$1/igU
347
348
349 #################################################################################
350 #
351 # iframes: Remove all detected iframes. Should only be enabled for
352 #          individual sites after testing that the iframes are optional.
353 #
354 #################################################################################
355 FILTER: iframes Removes all detected iframes. Should only be enabled for individual sites.
356 s@<iframe.*</iframe>@<!-- iframe removed by Privoxy's iframe filter -->@Uisg
357
358
359 #################################################################################
360 #
361 # demoronizer: Correct Microsoft's abuse of standardized character sets, which
362 #              leave the browser to (mis)-interpret unknown characters, with
363 #              sometimes bizarre results on non-MS platforms.
364 #
365 # credit: ripped from the demoroniser.pl script by:
366 #         John Walker -- January 1998, http://www.fourmilab.ch/webtools/demoroniser
367 #
368 #################################################################################
369 FILTER: demoronizer Fix MS's non-standard use of standard charsets.
370
371 s/(&\#[0-2]\d\d)\s/$1; /g
372 # per Robert Lynch: http://slate.msn.com//?id=2067547, just a guess.
373 # Must come before x94 below.
374 s/\xE2\x80\x94/ -- /g
375 s/\x82/,/g
376 #s-\x83-<em>f</em>-g
377 s/\x84/,,/g
378 s/\x85/.../g
379 #s/\x88/^/g
380 #s-\x89- Â°/°°-g
381 s/\x8B/</g
382 s/\x8C/Oe/g
383 s/\x91/`/g
384 s/\x92/'/g
385 s/(\x93|\x94)/"/g
386 # Bullet type character.
387 s/\x95/&middot;/g
388 s/\x96/-/g
389 s/\x97/--/g
390 #s-\x98-<sup>~</sup>-g
391 #s-\x99-<sup>TM</sup>-g
392 # per Robert Lynch.
393 s/\x9B/>/g                  # 155
394
395
396 #################################################################################
397 #
398 # shockwave-flash: Kill embedded Shockwave Flash objects.
399 #                  Note: Better just block "/.*\.swf$"!
400 #
401 #################################################################################
402 FILTER: shockwave-flash Kill embedded Shockwave Flash objects.
403
404 s|<object [^>]*macromedia.*</object>|<!-- Squished Shockwave Object -->|sigU
405 s|<embed [^>]*(application/x-shockwave-flash\|\.swf).*>(.*</embed>)?|<!-- Squished Shockwave Flash Embed -->|sigU
406
407
408 #################################################################################
409 #
410 # quicktime-kioskmode: Make Quicktime movies saveable.
411 #
412 #################################################################################
413 FILTER: quicktime-kioskmode Make Quicktime movies saveable.
414
415 s/(<embed\s+[^>]*)kioskmode\s*=\s*(["']?)true\2/$1/ig
416
417
418 #################################################################################
419 #
420 # fun: Text replacements for subversive browsing fun!
421 #
422 #################################################################################
423 FILTER: fun Text replacements for subversive browsing fun!
424
425 # SCNR
426 #
427 s/microsoft(?!\.[^\s])/MicroSuck/ig
428
429 # Buzzword Bingo (example for extended regex syntax)
430 #
431 s* (?:industry|world)[ -]leading \
432 |  cutting[ -]edge \
433 |  customer[ -]focused \
434 |  market[ -]driven \
435 |  award[ -]winning # Comments are OK, too! \
436 |  high[ -]performance \
437 |  solutions[ -]based \
438 |  unmatched \
439 |  unparalleled \
440 |  unrivalled \
441 *$0<sup><font color="red"><b>Bingo!</b></font></sup> \
442 *igx
443
444 # For Germans only
445 #
446 s/(M|m)edien(?![^<]*>)/$1&auml;dchen/Ug
447
448 #################################################################################
449 #
450 # crude-parental: Crude parental filtering. Use with a suitable blocklist.
451 #                 Pages are "blocked" based on keyword matching.
452 #
453 #################################################################################
454 FILTER: crude-parental Crude parental filtering. Note that this filter doesn't work reliably.
455
456 # (Note: Middlesex, Sussex and Essex are counties in the UK, not rude words)
457 # (Note #2: Is 'sex' a rude word?!)
458
459 s%^.*(?<!middle)(?<!sus)(?<!es)sex.*$%<html><head><title>Blocked</title></head><body>\
460 <h3>Blocked by Privoxy's crude-parental filter due to possible adult content.</h3></body></html>%is
461
462 s+^.*warez.*$+<html><head><title>No Warez</title></head><body><h3>You're not searching for illegal stuff, are you?</h3></body></html>+is
463
464 # Remove by description
465 s/^.*\
466 (?:(suck|lick|tongue|rub|fuck|fingering|finger|chicks?)\s*)?\
467 (?:(her|your|my|hard|with|big|wet|tight|pink|hot|moist|young|teen)\s*)+\
468 (dicks?|penis|cocks?|balls?|tits?|pussy|cunt|clit|ass|mouth).*$\
469 /This page has been blocked by Privoxy's crude-parental content filter\
470 /is
471
472 #Remove by link text
473 s/^.*\
474 (download|broadband|view|watch|free|get|extreem)?\s*\
475 (sex|xxx|porn|cumshot|fuck(ing|s)?|anal|ass|asian|adult|Amateur|org(y|ies)|close ups?|hand?job|nail(ed)?)+\s*\
476 (movies?|pics?|videos?|dvds?|dvd's|links?).*$\
477 /This page has been blocked by Privoxy's crude-parental content filter\
478 /is
479
480 #Remove by age disclaimer
481 s/^.*\
482 (models?|chicks?|girls?|women|persons)\s*\
483 (who|are|were)+ (over|at least) (16|18|21) years (old|of age).*$\
484 /This page has been blocked by Privoxy's crude-parental content filter\
485 /is
486
487 #Remove by regulations
488 s/^.*(Section 2257|18 U.?S.?C.? 2257).*$\
489 /This page has been blocked by Privoxy's crude-parental content filter\
490 /is
491
492
493 #################################################################################
494 #
495 # IE-Exploits: Disable some known Internet Explorer bug exploits.
496 #
497 #################################################################################
498 FILTER: ie-exploits Disable some known Internet Explorer bug exploits.
499
500 # Note: This is basically a demo and waits for someone more interested in IE
501 # security (sic!) to take over.
502
503 # Cross-site-scripting:
504 #
505 s%f\("javascript:location.replace\('mk:@MSITStore:C:'\)"\);%alert\("This page looks like it tries to use a vulnerability described here:\n http://online.securityfocus.com/archive/1/298748/2002-11-02/2002-11-08/2"\);%siU
506
507 # Address bar spoofing (http://www.secunia.com/advisories/10395/):
508 #
509 s/(<a[^>]*href[^>]*)(?:\x01|\x02|\x03|%0[012])@/$1MALICIOUS-LINK@/ig
510
511 # Nimda:
512 #
513 s%<script language="JavaScript">(window\.open|1;''\.concat)\("readme\.eml", null, "resizable=no,top=6000,left=6000"\)</script>%<br><font size="7"> WARNING: This Server is infected with <a href="http://www.cert.org/advisories/CA-2001-26.html">Nimda</a>!</font>%g
514
515
516 #################################################################################
517 #
518 #
519 # site-specifics: Cure for site-specific problems. Don't apply generally!
520 #
521 #   Note: The fixes contained here are so specific to the problems of the
522 #         particular web sites they are designed for that they would be a
523 #         waste of CPU cycles (or even destructive!) on 99.9% of the web
524 #         sites where they don't apply.
525 #
526 #################################################################################
527 FILTER: site-specifics Cure for site-specific problems. Don't apply generally!
528
529 # www.spiegel.de excludes X11 users from viewing Flash5 objects - shame.
530 # Apply to: www.spiegel.de/static/js/flash-plugin.js
531 #
532 s/indexOf\("x11"\)/indexOf("x13")/
533
534 # www.quelle-bausparkasse.de uses a very stupid redirect mechanism that
535 # relies on a webbug being present. Can we tolerate that? No!
536 # Apply to: www.quelle-bausparkasse.de/$
537 #
538 s/mylogfunc()//g
539
540 # groups.yahoo.com has splash pages that one needs to click through in
541 # order to access the actual messages. Let the browser do that. Thanks
542 # to Paul Jobson for this one:
543 #
544 s|<a href="(.+?)">(?:Continue to message\|Weiter zu Nachricht)</a>|<meta http-equiv="refresh" content="0; URL=$1">|ig
545
546 # monster.com has two very similar gimmicks:
547 #
548 s|<input type="hidden" name="REDIRECT" value="(.+?)">|<meta http-equiv="refresh" content="0; URL=$1">|i
549
550 s|<IMG SRC="http://media.monster.com/mm/usen/my/no_thanks_211x40.gif".+?>|<meta http-equiv="refresh" content="0; URL=http://my.monster.com/resume.asp">|i
551
552 # nytimes.com triggers popups through the onload handler of dummy images
553 # to fool popup-blockers.
554 #
555 s|(<img [^>]*)onload|$1never|sig
556
557 # Pre-check all the "Discard" buttons in GNU Mailman's web interface.
558 # (This saves a lot of mouse aiming practice when flushing spamtraps)
559 #
560 s|(<INPUT name="\d{2,4}" type="RADIO" value="0") CHECKED |$1|g
561 s|<INPUT name="\d{2,4}" type="RADIO" value="3" |$0 checked|g
562
563 #################################################################################
564 #
565 # no-ping: Removes non-standard ping attributes in <a> and <area> tags.
566 #
567 #################################################################################
568 FILTER: no-ping Removes non-standard ping attributes in <a> and <area> tags.
569 s@(<a(?:rea)?[^>]*?)\sping=(['"]?)([^"'>]+)\2([>\s]?)@\
570 <strong style="color:white; background-color:red;" title="Privoxy removed ping target '$3'">PING!</strong>\n$1$4@ig
571
572 #################################################################################
573 #
574 # google: CSS-based block for Google text ads. Also removes
575 #         a width limitation and the toolbar advertisement.
576 #
577 #################################################################################
578 FILTER: google CSS-based block for Google text ads. Also removes a width limitation and the toolbar advertisement.
579
580 s@</head>[^\\]@<style type="text/css">\n\
581  /* Style sheet inserted by Privoxy's google filter. */\n\
582  \#fbc, \#fbl, \#ra, .rhh {visibility: hidden !important;}\n\
583  \#tpa1,\#tpa2,\#tpa3,\#tpa4,\#tpa5,\#tpa5, \#spl, .ch, \#ads,\
584  \#toolbar, \#google_ads_frame, \#mbEnd {display: none !important;}\n\
585  .main_body, .j, \#res, .med, .hd, .g, .s\n\
586  {width: 99%; max-width: 100%; margin-left: 0; margin-right: 0;}\n\
587  </style>\n$0@
588 s@<div style=\"padding-top:11px;min-width:500px\">@<div id="main_body">@
589 s@(<table cellspacing=0 cellpadding=0 width=25% align=right bgcolor=\#ffffff border=0\
590 |</font></td></tr></tbody></table><table align=\"right\" bgcolor=\"\#ffffff\"\
591 |<table cellspacing=0 cellpadding=0 align=right bgcolor=\#ffffff border=0\
592 |<table style=\"clear:both\" align=right width=25% cellspacing=\"0\" cellpadding=\"0\"\
593  border=\"0\" bgcolor=\"\#ffffff\")@$0 id="ads"@
594 s@(<br clear=all><table)( border=0 cellpadding=9><tr><td)@$1 id="toolbar"$2@
595
596 #################################################################################
597 #
598 # yahoo: CSS-based block for Yahoo text ads. Also removes a width limitation.
599 #
600 #################################################################################
601 FILTER: yahoo CSS-based block for Yahoo text ads. Also removes a width limitation.
602
603 s@</head>@\n<style type="text/css">\n\
604  /* Style sheet inserted by Privoxy's yahoo filter. */\n\
605  \#symadbn, \#ymadbn, .yschbox, .yschhd, .bbox, \#yschsec, \#sec,\
606  \#yschanswr, .yschftad, .yschspn, .yschspns, \#ygrp-sponsored-links,\
607  \#nwad, \#MWA2, \#MSCM, \#yregad, \#sponsored-links,\
608  \#ks-ypn-ads, .ad, \#east, \#ygrp-vital, .ads {display: none !important;}\n\
609  \#yschpri, \#yschweb, \#pri, \#web, \#main, .yschttl, .abstr, .res \n\
610  {width: 99% !important; max-width: 100% !important;}\n\
611  .yschttl, .res, .res.indent, \#web {padding: 0px; margin: 0px !important;}\n\
612  \#web {padding-left: 0.5em}\n\
613  \#yschqcon, \#yschtg {width: auto !important; /* No useless horizontal scrollbar please */}\n\
614  \#composebox \#compose_editorArea {width: 70% !important; /* reasonably sized reply textarea please */\n\
615  </style>\n$0\n@
616
617 s@(<textarea\s+id="composeArea"[^>]*)width:545px;@$1width:70%;@isU
618
619 #################################################################################
620 #
621 # msn: CSS-based block for MSN text ads. Also removes tracking URLs
622 #      and a width limitation.
623 #
624 #################################################################################
625 FILTER: msn CSS-based block for MSN text ads. Also removes tracking URLs and a width limitation.
626
627 s@</head>@<style type="text/css">\n\
628  /* Style sheet inserted by Privoxy's msn filter. */\n\
629  .msn_ads, \#at, \#ar, .mktmsg {display: none !important;}\n\
630  \#results, \#b_results, .flank, .results_area_flank, .results_area_stroke,\n\
631  \#results_area, \#content, .sb_tlst, .sa_cc, .sb_ph, \#sw_main,\n\
632  .content, .b_content, \#sw_foot, \#bf, \#sw_content, \#sidebar, \#pag\n\
633  {width: 99% !important; min-width: 99% !important;\n\
634  max-width: 100% !important; /* width:100% sometimes causes horizontal scrollbars */}\n\
635  /* Remove 'related' ads */\n\
636  .b_ad, .b_adlabel {clear: both; display:none;}\n\
637  /* Remove "suggestions". They are next to worthless but partly overlap with the search results */\n\
638  .suggestion, \#nys_right, \#nys {clear: both; display:none;}\n\
639  /* Remove "Related searches" at the left side of the main results.\n\
640     They are next to worthless, too, and also are still present below the main search results */\n\
641  \#b_results > .b_ans {clear: both; display:none;}\n\
642  \#s_notf_div,\n \
643  /* Overlay ads to enable Facebook 'likes' in search results. */\n\
644  .sn_container {display:none !important;}\n\
645  \#content, \#b_content {padding: 0px 0px 0px 0px}\n\
646  </style>\n$0@
647 # Are these ids still in use?
648 s@(<div[^>]*) id=(["']?)ads_[^\2]*\2@$1 class="msn_ads"@Uig
649 s@(<div[^>]*) class=(["']?)sb_ads[^\2]*\2@$1 class="msn_ads"@Uig
650 s@(<a[^>]*href=\")http://g.msn.com/.*\?(http://.*)(&amp;&amp;DI=.*)(\")@$1$2$4@Ug
651 s@(<a[^>]*)gping=\".*\"@$1 title="URL cleaned up by Privoxy's msn filter"@Ug
652
653 #################################################################################
654 #
655 # blogspot: Cleans up some Blogspot blogs. Read the fine print before using this.
656 #
657 #           This filter also intentionally removes some navigation stuff and
658 #           sets the page width to 100%. As a result, some rounded "corners" would
659 #           appear to early or not at all and as fixing this would require a browser
660 #           that understands background-size (CSS3), they are removed instead.
661 #
662 #           When applied to feeds, it removes comment titles that
663 #           only contain the beginning of the actual comment.
664 #
665 #################################################################################
666 FILTER: blogspot Cleans up some Blogspot blogs. Read the fine print before using this.
667
668 s@</head>@<style type="text/css">\n\
669  /* Style sheet inserted by Privoxy's blogspot filter. */\n\
670  \#powered-by {display: none !important;}\n\
671  \#wrap4, \#wrapper {margin-top: 0px }\n\
672  \#blogheader, \#header {margin-top: 0.5em !important}\n\
673  \#content {width: 98% }\n\
674  \#main {width: 70% }\n\
675  \#sidebar {width: 29% }\n\
676  .post-body {overflow: auto;}\n\
677  .blogComments {width: 100%; overflow: auto;}\n</style>\n$0@
678 s@<body.*(?:<div id="space-for-ie"></div>|(<div id="(?:content|wrap4|wrapper)))@<body>\
679  <!-- Privoxy's blogspot filter ditched some garbage here -->$1@Us
680 s@(<div style=\"[^\"]*width:)30em@$1 100%@
681 s@background:url\(\"http://www.blogblog.com/rounders[^\"]*\"\).*;@/*$0*/@Ug
682 s@(background:\#[a-f\d]{3})( url\(\"http://www.blogblog.com/rounders[^\"]*\"\).*;)@$1 ;/*$2*/@Ug
683 # Do the feed filtering magic as described above.
684 s@<title(?:\s+type=\'text\')?>([^<]*)(?:\.\.\.)?\s*</title>\s*\
685 (<content(?:\s+type=\'(?:html|text)\')?>\s*\1)@<title></title>$2@ig
686
687 #################################################################################
688 #
689 # x-httpd-php-to-html: Changes the Content-Type header from
690 #                      x-httpd-php to html. "Content-Type: x-httpd-php"
691 #                      is set by clueless PHP users and causes many
692 #                      browsers do open a download menu instead of
693 #                      rendering the page.
694 #
695 #################################################################################
696 SERVER-HEADER-FILTER: x-httpd-php-to-html Changes the Content-Type header from x-httpd-php to html.
697
698 s@^(Content-Type:)\s*application/x-httpd-php@$1 text/html@i
699
700 #################################################################################
701 #
702 # html-to-xml: Changes the Content-Type header from html to xml.
703 #
704 #################################################################################
705 SERVER-HEADER-FILTER: html-to-xml Changes the Content-Type header from html to xml.
706
707 s@^(Content-Type:)\s*text/html(;.*)?$@$1 application/xhtml+xml$2@i
708
709 #################################################################################
710 #
711 # xml-to-html: Changes the Content-Type header from xml to html.
712 #
713 #################################################################################
714 SERVER-HEADER-FILTER: xml-to-html Changes the Content-Type header from xml to html.
715
716 s@^(Content-Type:)\s*(?:application|text)/(?:xhtml\+)?xml(;.*)?$@$1 text/html$2@i
717
718 #################################################################################
719 #
720 # hide-tor-exit-notation: Remove the Tor exit node notation in Host and Referer headers.
721 #
722 #   Note: If Privoxy and Tor are chained and Privoxy is configured to
723 #         use socks4a, one can use http://www.example.org.foobar.exit/
724 #         to access the host www.example.org through Tor exit node foobar.
725 #
726 #         As the HTTP client isn't aware of this notation, it treats the
727 #         whole string "www.example.org.foobar.exit" as host and uses it
728 #         for the "Host" and "Referer" headers. From the server's point of
729 #         view the resulting headers are invalid and can cause problems.
730 #
731 #         An invalid "Referer" header can trigger "hot-linking" protections,
732 #         an invalid "Host" header will make it impossible for the server to
733 #         find the right vhost (several domains hosted on the same IP address).
734 #
735 #         This filter removes the "foo.exit" part in those headers
736 #         to prevent the mentioned problems. Note that it only modifies
737 #         the HTTP headers, it doesn't make it impossible for the server
738 #         to detect your Tor exit node based on the IP address the request is
739 #         coming from.
740 #
741 #################################################################################
742 CLIENT-HEADER-FILTER: hide-tor-exit-notation Removes the Tor exit node notation in Host and Referer headers.
743
744 s@^((?:Referer|Host):\s*(?:https?://)?[^/]*)\.[^\./]*?\.exit@$1@i
745
746 #################################################################################
747 #
748 # no-brotli-accepted: Strips "br" from the Accept-Encoding header as Privoxy
749 #                     currently doesn't support Brotli.
750 #
751 #################################################################################
752 CLIENT-HEADER-FILTER: no-brotli-accepted Strip "br" from Accept-Encoding header
753
754 s@(^Accept-Encoding:.*?)(?:br, |, br|br)@$1@i
755
756 #################################################################################
757 #
758 # less-download-windows: Prevents annoying download windows for content types
759 #                        the browser can handle itself.
760 #
761 #################################################################################
762 SERVER-HEADER-FILTER: less-download-windows Prevent annoying download windows for content types the browser can handle itself.
763
764 s@^Content-Disposition:.*filename=(["']?).*\.(png|gif|jpe?g|diff?|d?patch|c|h|pl|shar)\1.*$@@i
765 s@^(Content-Type:)\s*(?:message/(?:news|rfc822)|text/x-.*|application/x-sh(?:\s|$))\s*@$1 text/plain@i
766
767 #################################################################################
768 #
769 # image-requests: Tags detected image requests as "IMAGE-REQUEST". Whether
770 #                 or not the detection actually works depends on the browser.
771 #
772 #################################################################################
773 CLIENT-HEADER-TAGGER: image-requests Tags detected image requests as "IMAGE-REQUEST".
774
775 s@^Accept:\s*image/.*@IMAGE-REQUEST@i
776
777 #################################################################################
778 #
779 # css-requests:  Tags detected CSS requests as "CSS-REQUEST". Whether
780 #                or not the detection actually works depends on the browser.
781 #
782 #################################################################################
783 CLIENT-HEADER-TAGGER: css-requests Tags detected CSS requests as "CSS-REQUEST".
784
785 s@^Accept:\s*text/css.*@CSS-REQUEST@i
786
787 #################################################################################
788 #
789 # range-requests: Tags range requests as "RANGE-REQUEST".
790 #
791 #                 By default Privoxy removes Range headers for requests to
792 #                 ressources that will be filtered to make sure the filters
793 #                 get the whole picture. Otherwise Range requests could be
794 #                 intentionally used to circumvent filters or, less likely,
795 #                 filtering a partial response may damage it because it matched
796 #                 a pattern that the ressource as a whole wouldn't.
797 #
798 #                 Range requests can be useful and save bandwidth so instead
799 #                 of removing Range headers for requests to ressources that
800 #                 will be filtered, you may prefer to simply disable filtering
801 #                 for those requests.
802 #
803 #                 That's what this tagger is all about. After enabling it,
804 #                 you can disable filtering for range requests using the following
805 #                 action section:
806 #
807 #                 {-filter -deanimate-gifs}
808 #                 TAG:^RANGE-REQUEST
809 #
810 #################################################################################
811 CLIENT-HEADER-TAGGER: range-requests Tags range requests as "RANGE-REQUEST".
812
813 s@^Range:.*@RANGE-REQUEST@i
814
815 #################################################################################
816 #
817 # client-ip-address: Tags the request with the client's IP address.
818 #
819 #################################################################################
820 CLIENT-HEADER-TAGGER: client-ip-address Tags the request with the client's IP address.
821
822 s@^\w*\s+.*\s+HTTP/\d\.\d\s*@IP-ADDRESS: $origin@D
823
824 #################################################################################
825 #
826 # listen-address: Tags the request with the listen-address on which the request
827 #                 came in.
828 #
829 #################################################################################
830 CLIENT-HEADER-TAGGER: listen-address Tags the request with the listen-address on which the request came in.
831
832 s@^\w*\s+.*\s+HTTP/\d\.\d\s*@LISTEN-ADDRESS: $listen-address@D
833
834 #################################################################################
835 #
836 # http-method: Tags the request with its HTTP method.
837 #
838 #################################################################################
839 CLIENT-HEADER-TAGGER: http-method Tags the request with its HTTP method.
840
841 s@^(\w*).*HTTP/\d\.\d\s*$@$1@i
842
843 #################################################################################
844 #
845 # allow-post: Tags POST requests as "ALLOWED-POST".
846 #
847 #################################################################################
848 CLIENT-HEADER-TAGGER: allow-post Tags POST requests as "ALLOWED-POST".
849
850 s@^(?:POST)\s+.*\s+HTTP/\d\.\d\s*@ALLOWED-POST@i
851
852 #################################################################################
853 #
854 # complete-url: Tags the request with the whole request URL.
855 #
856 #################################################################################
857 CLIENT-HEADER-TAGGER: complete-url Tags the request with the whole request URL.
858
859 s@^\w*\s+(.*)\s+HTTP/\d\.\d\s*$@$1@i
860
861 #################################################################################
862 #
863 # user-agent: Tags the request with the complete User-Agent header.
864 #
865 #################################################################################
866 CLIENT-HEADER-TAGGER: user-agent Tags the request with the complete User-Agent header.
867
868 s@^User-Agent:.*@$0@i
869
870 #################################################################################
871 #
872 # referer: Tags the request with the complete Referer header.
873 #
874 #################################################################################
875 CLIENT-HEADER-TAGGER: referer Tags the request with the complete Referer header.
876
877 s@^Referer:.*@$0@i
878
879 #################################################################################
880 #
881 # content-type: Tags the request with the content type declared by the server.
882 #
883 #################################################################################
884 SERVER-HEADER-TAGGER: content-type Tags the request with the content type declared by the server.
885
886 s@^Content-Type:\s*([^;]+).*@$1@i
887
888 #################################################################################
889 #
890 # privoxy-control: The taggers create tags with the content of X-Privoxy-Control
891 #                  headers, the filters remove said headers.
892 #
893 #################################################################################
894 CLIENT-HEADER-TAGGER: privoxy-control Creates tags with the content of X-Privoxy-Control headers.
895
896 s@^X-Privoxy-Control:\s*@@i
897
898 CLIENT-HEADER-FILTER: privoxy-control Removes X-Privoxy-Control headers.
899
900 s@^X-Privoxy-Control:.*@@i
901
902 SERVER-HEADER-TAGGER: privoxy-control Creates tags with the content of X-Privoxy-Control headers.
903
904 s@^X-Privoxy-Control:\s*@@i
905
906 SERVER-HEADER-FILTER: privoxy-control Removes X-Privoxy-Control headers.
907
908 s@^X-Privoxy-Control:.*@@i