Preventing XSS in Perl

Wednesday, April 30th, 2008

Last time we covered XSS in php. What about perl? It turns out there's an even more in house solution to XSS in perl, because it has been used so long for cgi. We'll use the same basic example. [sourcecode language='html'] alert('XSS!'); [/sourcecode] This is the XSS attack. [sourcecode language='html'] This script is vulnerable to ...