Help for this page

Select Code to Download


  1. or download this
    unless ($file_in =~ /^[\w][\w\._-]*$/) {
        print "Insecure file_in\n";
        exit;
    }
    
  2. or download this
    if ($file_out =~ /^([\w][\w\._-]*)$/) {
        $file_out = $1;
    }
    ...
        print "Insecure file_out\n";
        exit;
    }
    
  3. or download this
    /^\.{2,}$/
  4. or download this
    /\.\./