Help for this page

Select Code to Download


  1. or download this
    $ cat child
    #!/usr/bin/perl
    ...
    -rwxrwxrwx 1 ikegami group 34 2008-12-13 08:15 child
    $ perl -T -e'%ENV=(); system("./child") and die("error: $?")'
    child
    
  2. or download this
    $ chmod a+s child
    $ perl -T -e'%ENV=(); system("./child") and die("error: $?")'
    Setuid/gid script is writable by world.
    error: 6400 at -e line 1.