2006-05-05 07:41:11 +02:00
|
|
|
#!/usr/bin/perl
|
|
|
|
package IkiWiki::Plugin::htmlscrubber;
|
|
|
|
|
|
|
|
use warnings;
|
|
|
|
use strict;
|
2008-12-23 22:34:19 +01:00
|
|
|
use IkiWiki 3.00;
|
2006-05-05 07:41:11 +02:00
|
|
|
|
2008-02-10 23:07:21 +01:00
|
|
|
# This regexp matches urls that are in a known safe scheme.
|
|
|
|
# Feel free to use it from other plugins.
|
|
|
|
our $safe_url_regexp;
|
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub import {
|
2008-08-03 22:40:12 +02:00
|
|
|
hook(type => "getsetup", id => "htmlscrubber", call => \&getsetup);
|
2006-09-10 00:50:27 +02:00
|
|
|
hook(type => "sanitize", id => "htmlscrubber", call => \&sanitize);
|
2006-05-05 07:41:11 +02:00
|
|
|
|
2008-02-10 19:16:40 +01:00
|
|
|
# Only known uri schemes are allowed to avoid all the ways of
|
|
|
|
# embedding javascrpt.
|
|
|
|
# List at http://en.wikipedia.org/wiki/URI_scheme
|
2008-02-11 01:02:12 +01:00
|
|
|
my $uri_schemes=join("|", map quotemeta,
|
2008-02-10 19:16:40 +01:00
|
|
|
# IANA registered schemes
|
|
|
|
"http", "https", "ftp", "mailto", "file", "telnet", "gopher",
|
|
|
|
"aaa", "aaas", "acap", "cap", "cid", "crid",
|
|
|
|
"dav", "dict", "dns", "fax", "go", "h323", "im", "imap",
|
|
|
|
"ldap", "mid", "news", "nfs", "nntp", "pop", "pres",
|
|
|
|
"sip", "sips", "snmp", "tel", "urn", "wais", "xmpp",
|
2008-02-11 01:02:12 +01:00
|
|
|
"z39.50r", "z39.50s",
|
2008-02-10 19:16:40 +01:00
|
|
|
# Selected unofficial schemes
|
2008-02-10 22:23:28 +01:00
|
|
|
"aim", "callto", "cvs", "ed2k", "feed", "fish", "gg",
|
2008-02-10 19:16:40 +01:00
|
|
|
"irc", "ircs", "lastfm", "ldaps", "magnet", "mms",
|
|
|
|
"msnim", "notes", "rsync", "secondlife", "skype", "ssh",
|
2008-02-11 00:08:56 +01:00
|
|
|
"sftp", "smb", "sms", "snews", "webcal", "ymsgr",
|
2008-02-10 19:16:40 +01:00
|
|
|
);
|
2010-03-12 20:49:13 +01:00
|
|
|
# data is a special case. Allow a few data:image/ types,
|
|
|
|
# but disallow data:text/javascript and everything else.
|
2010-04-02 22:05:14 +02:00
|
|
|
$safe_url_regexp=qr/^(?:(?:$uri_schemes):|data:image\/(?:png|jpeg|gif)|[^:]+(?:$|[\/\?]))/i;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-02-10 23:07:21 +01:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub getsetup () {
|
2008-08-03 22:40:12 +02:00
|
|
|
return
|
|
|
|
plugin => {
|
|
|
|
safe => 1,
|
|
|
|
rebuild => undef,
|
2010-02-12 04:24:15 +01:00
|
|
|
section => "core",
|
2008-08-03 22:40:12 +02:00
|
|
|
},
|
2008-09-27 00:05:36 +02:00
|
|
|
htmlscrubber_skip => {
|
|
|
|
type => "pagespec",
|
|
|
|
example => "!*/Discussion",
|
|
|
|
description => "PageSpec specifying pages not to scrub",
|
|
|
|
link => "ikiwiki/PageSpec",
|
|
|
|
safe => 1,
|
|
|
|
rebuild => undef,
|
|
|
|
},
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-08-03 22:40:12 +02:00
|
|
|
|
2008-12-17 21:22:16 +01:00
|
|
|
sub sanitize (@) {
|
2008-02-10 23:07:21 +01:00
|
|
|
my %params=@_;
|
2008-09-27 00:05:36 +02:00
|
|
|
|
|
|
|
if (exists $config{htmlscrubber_skip} &&
|
|
|
|
length $config{htmlscrubber_skip} &&
|
|
|
|
exists $params{destpage} &&
|
|
|
|
pagespec_match($params{destpage}, $config{htmlscrubber_skip})) {
|
|
|
|
return $params{content};
|
|
|
|
}
|
|
|
|
|
2008-02-10 23:07:21 +01:00
|
|
|
return scrubber()->scrub($params{content});
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2008-02-10 23:07:21 +01:00
|
|
|
|
|
|
|
my $_scrubber;
|
2008-12-17 21:22:16 +01:00
|
|
|
sub scrubber {
|
2008-02-10 23:07:21 +01:00
|
|
|
return $_scrubber if defined $_scrubber;
|
2008-02-10 19:16:40 +01:00
|
|
|
|
2006-05-05 07:41:11 +02:00
|
|
|
eval q{use HTML::Scrubber};
|
2006-11-08 22:03:33 +01:00
|
|
|
error($@) if $@;
|
2006-05-05 07:41:11 +02:00
|
|
|
# Lists based on http://feedparser.org/docs/html-sanitization.html
|
2010-05-01 22:34:47 +02:00
|
|
|
# With html5 tags added.
|
2006-05-05 07:41:11 +02:00
|
|
|
$_scrubber = HTML::Scrubber->new(
|
|
|
|
allow => [qw{
|
2008-01-08 00:32:50 +01:00
|
|
|
a abbr acronym address area b big blockquote br br/
|
2006-05-05 07:41:11 +02:00
|
|
|
button caption center cite code col colgroup dd del
|
|
|
|
dfn dir div dl dt em fieldset font form h1 h2 h3 h4
|
2008-01-08 00:32:50 +01:00
|
|
|
h5 h6 hr hr/ i img input ins kbd label legend li map
|
|
|
|
menu ol optgroup option p p/ pre q s samp select small
|
2006-05-05 07:41:11 +02:00
|
|
|
span strike strong sub sup table tbody td textarea
|
|
|
|
tfoot th thead tr tt u ul var
|
2010-05-01 22:34:47 +02:00
|
|
|
|
2010-05-01 23:56:35 +02:00
|
|
|
video audio source section nav article aside hgroup
|
2010-05-02 00:31:33 +02:00
|
|
|
header footer figure figcaption time mark canvas
|
2010-05-02 01:28:28 +02:00
|
|
|
datalist progress meter ruby rt rp details summary
|
2006-05-05 07:41:11 +02:00
|
|
|
}],
|
2007-07-11 18:50:59 +02:00
|
|
|
default => [undef, { (
|
|
|
|
map { $_ => 1 } qw{
|
2008-02-10 19:16:40 +01:00
|
|
|
abbr accept accept-charset accesskey
|
2007-07-11 18:50:59 +02:00
|
|
|
align alt axis border cellpadding cellspacing
|
2008-02-10 22:59:37 +01:00
|
|
|
char charoff charset checked class
|
2007-07-11 18:50:59 +02:00
|
|
|
clear cols colspan color compact coords
|
|
|
|
datetime dir disabled enctype for frame
|
2008-02-10 19:16:40 +01:00
|
|
|
headers height hreflang hspace id ismap
|
2008-02-10 22:59:37 +01:00
|
|
|
label lang maxlength media method
|
2007-07-11 18:50:59 +02:00
|
|
|
multiple name nohref noshade nowrap prompt
|
|
|
|
readonly rel rev rows rowspan rules scope
|
2008-02-10 19:16:40 +01:00
|
|
|
selected shape size span start summary
|
2008-02-10 22:59:37 +01:00
|
|
|
tabindex target title type valign
|
2007-07-11 18:50:59 +02:00
|
|
|
value vspace width
|
2010-05-01 22:34:47 +02:00
|
|
|
|
2010-05-02 00:27:53 +02:00
|
|
|
autofocus autoplay preload loopstart
|
|
|
|
loopend end playcount controls pubdate
|
2010-05-02 01:28:28 +02:00
|
|
|
placeholder min max step low high optimum
|
|
|
|
form required autocomplete novalidate pattern
|
|
|
|
list formenctype formmethod formnovalidate
|
2010-05-02 01:59:16 +02:00
|
|
|
formtarget reversed spellcheck open hidden
|
2007-07-11 18:50:59 +02:00
|
|
|
} ),
|
|
|
|
"/" => 1, # emit proper <hr /> XHTML
|
2008-02-10 23:07:21 +01:00
|
|
|
href => $safe_url_regexp,
|
|
|
|
src => $safe_url_regexp,
|
|
|
|
action => $safe_url_regexp,
|
2010-05-02 01:11:03 +02:00
|
|
|
formaction => $safe_url_regexp,
|
2008-02-10 23:07:21 +01:00
|
|
|
cite => $safe_url_regexp,
|
|
|
|
longdesc => $safe_url_regexp,
|
|
|
|
poster => $safe_url_regexp,
|
|
|
|
usemap => $safe_url_regexp,
|
2008-02-10 19:16:40 +01:00
|
|
|
}],
|
2006-05-05 07:41:11 +02:00
|
|
|
);
|
|
|
|
return $_scrubber;
|
2008-12-17 21:22:16 +01:00
|
|
|
}
|
2006-05-05 07:41:11 +02:00
|
|
|
|
|
|
|
1
|