CGI-SecureState
view release on metacpan or search on metacpan
SecureState.pm view on Meta::CPAN
To set to 1, do
use CGI::SecureState qw(:use_flock); #or
$CGI::SecureState::USE_FLOCK = 1;
=item B<Extra and Paranoid Security>
If the standard security is not enough, CGI::SecureState provides extra security
by setting the appropriate options in CGI.pm. The ":extra_security" option
enables private file uploads and sets the maximum size for a CGI POST to be
10 kilobytes. The ":paranoid_security" option disables file uploads entirely.
To use them, do
use CGI::SecureState qw(:extra_security); #or
use CGI::SecureState qw(:paranoid_security);
To disable them, do
use CGI::SecureState qw(:no_security);
=back
=head1 EXAMPLES
( run in 2.010 seconds using v1.01-cache-2.11-cpan-b16cb0d3907 )