Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Security techniques every programmer should know

by fizbin (Chaplain)
on Dec 30, 2004 at 15:41 UTC ( [id://418279]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    # $page and $section are parameters from the user that have been clean
    +ed of 0 bytes and obvious control characters
      my $mantext = ''; my $status;
    ...
        else {exec('/usr/bin/man', $page);}
      }
    # now reformat $mantext and display it.
    
  2. or download this
      section=-P/usr/bin/whatever%20command%20I%20want&page=cat
    
  3. or download this
    # $page and $section are parameters from the user that have been clean
    +ed of 0 bytes and obvious control characters
      my $mantext = ''; my $status;
    ...
        else {exec('/usr/bin/man', '--', $page);}
      }
    # now reformat $mantext and display it.
    
  4. or download this
      my $qpage = quotemeta($page);
      my $qsect = quotemeta($section || '');
      exec("/usr/bin/man $qsect $qpage");
    
  5. or download this
    --
    @/=map{[/./g]}qw/.h_nJ Xapou cets krht ele_ r_ra/;
    map{y/X_/\n /;print}map{pop@$_}@/for@/
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (6)
As of 2024-03-28 21:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found