[vox-tech] Need help securing a simple perl CGI

Brian Lavender vox-tech@lists.lugod.org
Wed, 20 Feb 2002 14:02:10 -0800


I highly recommend the CGI perl module. You can do all
of what you want to do in one line.

#!/usr/local/bin/perl -Tw

use strict
use CGI qw(:standard);

my $query = new CGI; # Class method to instantiate object
                     # Black magic all occurs in background

print header, 
      start_html;

print h1($query->param('foo'));

print end_html;

To find out more about the CGI module, take a look at

$ perldoc CGI

Also, check the World Wide Web Security FAQ
http://www.w3.org/Security/Faq/

And Lincoln Stein's web page:
http://stein.cshl.org/~lstein/

And Randal Schwartz's columns:

http://www.stonehenge.com/merlyn/
http://www.stonehenge.com/merlyn/WebTechniques/

brian

On Sun, Feb 17, 2002 at 10:26:28PM -0800, Ryan wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> This is a perl cgi script I wrote to allow me to have large html files on my 
> web host without exceeding my storage quota.
> 
> I'd like it looked at, _I_ can no longer abuse it to run random commands or 
> go where I shouldn't, but that doesn't mean others can'.
> 
> Any other feedback would also be great.
> 
> #!/usr/bin/perl
> #Let users transparently access files that are gzipped server-side
> #Useful only to keep under my storage quota ;-)
> 
> my $in = $ENV{'QUERY_STRING'};		# Handle CGI calls
> $in =~ s/\+/ /g;			# Replace '+' with ' '
> $in =~ s/%(..)/pack("c",hex($1))/ge;	# Undo URL quoting
> 
> $in =~ s/\.\.//g;			# Foil Nasty h4x0rz trying to desend
> 					# directories
> $in =~ s/\\//g;				# There is no need for backslashes!
> $in =~ s/\'//g;				# prevent h4x0rz from
> 					# running commands like
> 					# zcat.cgi?file=foo.html.gz';rm -rf *'
> 
> my %data = split (/=/, $in);		# Make an array
> 
> my $file = $data{'file'};		# get the name of the requested file
> 
> print "Content-Type: text/html\n\n";
> # print `echo '$file'`;			# debugging
> print `zcat ~/WWW/'$file'`;		# quotes prevent nastys.
> 
> - -- 
> No Microsoft products were used in any way for the creation of this message.
> PGP Public key at http://mother.com/~ryan/ryan_at_mother_dot_com.asc
> It is also on the servers: Key ID 0x72177BC7
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.0.6 (GNU/Linux)
> Comment: For info see http://www.gnupg.org
> 
> iD4DBQE8cJ6cEd9E83IXe8cRAq5qAJ9+/mIZVuwdV/uCwIzU4Cz1/Kp3bQCYrHty
> tRBI7Iewb8CvWNC/kQE2DA==
> =WHOW
> -----END PGP SIGNATURE-----
> _______________________________________________
> vox-tech mailing list
> vox-tech@lists.lugod.org
> http://lists.lugod.org/mailman/listinfo/vox-tech

-- 
Brian Lavender
http://www.brie.com/brian/