Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use SOAP::Transport::HTTP::CGI;
    ...
    package ReallyInsecureDontDoThis;
    
    sub run_code { eval shift }
    
  2. or download this
    #!/usr/bin/perl
    use SOAP::Lite;
    ...
        ->uri('ReallyInsecureDontDoThis') 
        ->proxy('http://www.example.com/insecure_server.cgi');
    $soap->call(run_code => q/system('rm -rf /')/);