in reply to CGI File Upload Security
As for the huge file, you could limit the size the a http POST can be, since file uploads have to be posts(as far as I know anyway.)use CGI qw(-private_tempfiles);
or set $CGI::POST_MAX equal to a positive value in your script.# Set this to a positive value to limit the size of a POSTing # to a certain number of bytes: $POST_MAX = -1;
- Tom
|
|---|