Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Too late for "-T"?

by Maclir (Curate)
on Feb 07, 2001 at 04:25 UTC ( [id://56848]=note: print w/replies, xml ) Need Help??


in reply to Too late for "-T"?
in thread Is this safe??

Is your web server running mod_perl? If so, check out this node Re: Confused about Taint.

Replies are listed 'Best First'.
Thanks all!
by SilverB1rd (Scribe) on Feb 07, 2001 at 21:14 UTC
    So far I have this script that just displays all the fields. Now I need to be able to open the template files for the email securly.
    #!/usr/bin/perl -Tw #warnings and taint mode now enabled use CGI; use strict; #you may now use the CGI methods. print "Content-type:text/html\n\n"; print "<html><body>"; my ($query) = new CGI; my (@values, $key); foreach $key ($query->param) { @values = $query->param($key); print "$key = @values\n"; } print "</body></html>";

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://56848]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (10)
As of 2024-04-24 09:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found