Subject: | Character " and ' are incorrectly being removed in fectched pages |
if you a tag such as:
<a href="javascript:hellowordl('hello')">Something</a>
From a feched proxy page the ' char is removed incorrectly, rendering into a invalid
execution javascript context.
The regular expression to sanitize the href value should not be
s/\'\"//g
but instead
s/^\'|^\"|\"$\'$//g
to only remove from the begin and end of the value.