Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: So, now what are taints?

by cLive ;-) (Prior)
on Mar 28, 2004 at 22:38 UTC ( [id://340447]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $q = CGI->new();
    my $domain = $q->param('domain');
    
    my $result = `ping $domain`;
    
  2. or download this
    my $domain='';
    $q->param('domain') =~ /^([a-zA-Z0-9\.]+)$/
        and $domain = $1;
    
  3. or download this
    $q->param('domain') =~ /^(.+)$/
        and $domain = $1;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-04-19 07:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found