Help for this page

Select Code to Download


  1. or download this
    /tmp>cat taint-require.pl
    #!/usr/bin/perl -T
    ...
    Insecure dependency in require while running with -T switch at ./taint
    +-require.pl line 11, <STDIN> line 1.
    
    /tmp>
    
  2. or download this
          $dep =~ s{::}{/}g;
          $dep .= ".pm";
          require $dep;
    
  3. or download this
    /tmp>cat perl4-mod.pl
    #!/usr/bin/perl
    ...
    
    
    /tmp>