Help for this page

Select Code to Download


  1. or download this
    $ perl -I. -Tle "use retaint; retaint::foo(); print 123; print substr 
    +$ENV{PATH}, 0, 1; "
    retaint.pm:20: tainted? 1
    retaint.pm:21: tainted? 0
    ...
    
    123
    Insecure dependency in 'print' at -e line 1.
    
  2. or download this
    package taintall;
    use strict;
    ...
    sub import { re->import( 'taint' ); }
    
    1;
    
  3. or download this
    package retaint;
    use strict; use warnings;
    ...
        f( ut() );
    }
    1;