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

Re: (x4) Company hacks through my Perl's Website Security hole

by jarich (Curate)
on May 26, 2004 at 02:42 UTC ( [id://356438]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    @files = <../data/texts/*>;
    
    ...
    exists $isfile{$file} or die;
    
    open(IN, "../data/texts/$file") or die $!;
    
  2. or download this
    open (FILEHANDLE, MODE, FILENAME) or die $!;
    
  3. or download this
    open (IN, "<", "../data/texts/$file") or die $!;
    
  4. or download this
    #!/usr/bin/perl -wT
    
    ...
    exists $isfile{$file} or die "Invalid filename: $file";
    
    open(IN, "<", "../data/texts/$file") or die $!;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (1)
As of 2024-04-19 00:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found