Okay, you're writing a CGI script in perl and you want security.
Have perl check for tainted data. (the -T command line option).
Some advice that's not security related but good anyway, tell perl to show you warnings ( -w ) and errors (use strict).
Something like:
or:#!/usr/bin/perl -T use strict; use warnings;
Update:Reworded the part about warnings and strict#!/usr/bin/perl -wT use strict;
In reply to Re: POST in anchor tags?
by Mr. Muskrat
in thread POST in anchor tags?
by Triscuit
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |