Help for this page

Select Code to Download


  1. or download this
    sub untaint_username {
       my $str = shift;
       $str =~ s/[\W_]//g;  # remove all non word characters (incl. unders
    +core)
    ...
          return 'failure!';
       }
    }