fork(2) download
  1. <?php
  2.  
  3. if(!isset($argv[1])){
  4. echo("no argument value.\n");
  5. echo("php thisfile mailaddress\n");
  6. exit(-1);
  7. }
  8.  
  9. $mail = $argv[1];
  10. preg_match('/(.+)@(.+)/', $mail, $matches);
  11. $id_sixteen = substr(crypt($matches[1], "m3"), 2, 8) . substr(crypt($matches[2], "Rz"), 2, 8);
  12. echo($id_sixteen);
  13.  
  14. ?>
Runtime error #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
no argument value.
php thisfile mailaddress