in reply to POST in anchor tags?
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;
|
|---|