Advertisement
KingSkrupellos

Zone-H PerL Versiyon Mass Mirror Postalayıcı

Oct 19th, 2017
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.34 KB | None | 0 0
  1. Zone-H PerL Version Mass Mirror Postalayıcı Command Prompt'dan [ cmd.exe ] Çalışır [ 20/10/2017 ]
  2.  
  3. [img]http://i.hizliresim.com/5gvnMA.png[/img]
  4.  
  5. Selamün Aleyküm. Daha Öncedende Zone-H Mirror Poster Kodlarını Vermiştim. Ama onlar PHP ve Localhost üzerinden gönderiliyordu. Biraz üzerinde farklı olarak çalıştım ve Başlat + Çalıştır+ Command Prompt üzerindende Zone-H'ya mass çoklu şekilde mirror gönderebilieceğiz. Zone-H kullanmak pek tercihim değil son zamanlarda önemli .gov .edu ve hack sitelerinin heykli olduğu halde adminlerin mirror silmesi iyice güven sarstı o yüzden diğerlerini kullanıyorum. Ya siteler önceden kaydedilmiş oluyor yada ReDefacement oluyor. Şuan sadece en önemli Domainleri ekliyorum bilginize :D Şimdiki Zone-H Perl Version ise sadeece cmd.exe 'den gönderebileceksiniz.Çoğunlukla ya shell'e ihtiyaç duyar gibiyim mirror postalamak için ama artık onlar geçmişte kaldı. Teknoloji ilerliyor bizde elimizden geleni yapıyoruz.
  6.  
  7. Eski Konu Linkleri =>
  8.  
  9. Zone-H Çoklu Zone Mirror Postalayıcı PHP Kod LocalHostta Çalışır => PHP + LocalHost
  10.  
  11. [img]https://i.hizliresim.com/1gvzlG.png[/img]
  12.  
  13. [code]https://www.cyberizm.org/cyberizm-zone-h-coklu-zone-mirror-postalayici-php-kod-localhostta-calisir.html[/code]
  14.  
  15. CDST Zone-H.Org Çoklu Mirror Postalayıcısı PHP Script Priv8 => PHP + Özellikli + Hangi Yöntem Seçenekleri
  16.  
  17. [code]https://www.cyberizm.org/cyberizm-cdst-zone-h-org-coklu-mirror-postalayicisi-php-script-priv8.html[/code]
  18.  
  19. [img]http://i.hizliresim.com/yEDpP9.png[/img]
  20.  
  21. Perl Version Zone-H Mirror Poster Kodları [ 20.10.2017 ]
  22.  
  23. [hide][code]#!/usr/bin/perl
  24. # Coded By : KingSkrupellos
  25. # Site : Cyberizm.Org Digital Security Technological Turkish Moslem Army
  26.  
  27. use URI::URL;
  28. use LWP::UserAgent;
  29. use Term::ANSIColor;
  30. use IO::Socket::INET;
  31. use HTTP::Request;
  32. use HTTP::Request::Common qw(POST);
  33. use HTTP::Request::Common qw(GET);
  34. system(($^O eq 'MSWin32') ? 'cls' : 'clear');
  35. print qq(
  36. _______ _______ __ _ _______ __ __
  37. | || || | | || | | | | |
  38. |____ || _ || |_| || ___| ____ | |_| |
  39. ____| || | | || || |___ |____| | |
  40. | ______|| |_| || _ || ___| | |
  41. | |_____ | || | | || |___ | _ |
  42. |_______||_______||_| |__||_______| |__| |__|
  43. __ __ _______ _______ _______
  44. | |_| || _ || || |
  45. | || |_| || _____|| _____|
  46. | || || |_____ | |_____
  47. | || ||_____ ||_____ |
  48. | ||_|| || _ | _____| | _____| |
  49. |_| |_||__| |__||_______||_______|
  50. _______ _______ _______ _______ _______ ______
  51. | || || || || || _ |
  52. | _ || _ || _____||_ _|| ___|| | ||
  53. | |_| || | | || |_____ | | | |___ | |_||_
  54. | ___|| |_| ||_____ | | | | ___|| __ |
  55. | | | | _____| | | | | |___ | | | |
  56. |___| |_______||_______| |___| |_______||___| |_|
  57. );
  58.  
  59. print "[START] Targets List :";
  60. my $list=<STDIN>;
  61. chomp($list);
  62. open (THETARGET, "<$list") || die "[-] Can't open the Targets List !";
  63. @TARGETS = <THETARGET>;
  64. close THETARGET;
  65. $link=$#TARGETS + 1;
  66. foreach $tofuck(@TARGETS){
  67.  
  68. chomp($tofuck);
  69.  
  70.  
  71.  
  72. $req = HTTP::Request->new(GET=>$tofuck);
  73. $useragent = LWP::UserAgent->new();
  74. $response = $useragent->request($req);
  75. $ar = $response->content;
  76. if ($ar =~ /Hacked|/){
  77. open (TEXT, '>>Defaced.txt');
  78. print TEXT "\n$tofuck => Posted !!\n\n";
  79. close (TEXT);
  80. print colored ("Wait",'white on_red'),"\n";
  81. $dmn= $tofuck;
  82. $def="KingSkrupellos";
  83. $zn="http://zone-h.org/notify/single";
  84. $lwp=LWP::UserAgent->new;
  85. $res=$lwp -> post($zn,[
  86. 'defacer' => $def,
  87. 'domain1' => $dmn,
  88. 'hackmode' => '15',
  89. 'reason' => '1',
  90. 'submit' => 'Send',
  91. ]);
  92. if ($res->content =~ /color="red">(.*)<\/font><\/li>/) {
  93. print "$dmn submit $1\n";
  94. }
  95. else
  96. {
  97. print colored ("[ERROR] Submited During Last Year",'white on_red'),"\n";
  98. }
  99. }
  100. }[/code][/hide]
  101.  
  102. [img]https://i.hizliresim.com/JOq0Nq.png[/img]
  103.  
  104. [img]https://i.hizliresim.com/OyVGN0.png[/img]
  105.  
  106. [img]https://i.hizliresim.com/Ayn9YX.png[/img]
  107.  
  108. [img]https://i.hizliresim.com/bLkn4V.png[/img]
  109.  
  110. Yapmanız Gerekenler ve Kullanımı =>
  111.  
  112. 1) Yukarıdaki Dosyayı .pl haline getirin mesela zonehmasscyberizm.pl gibi.
  113.  
  114. 2) Sonra Başlat + Çalıştır + Command Prompt'a girin.
  115.  
  116. 3) Masaüstünde kullanıyorsanız dosyayı cd Desktop sonra perl zonehmasscyberizm.pl
  117.  
  118. 4) Masaüstündeki Defaced.txt tıklayın ve otomatik olarak herhangi bir shell'e ihtiyaç duymadan
  119.  
  120. Zone Mirror Kayıtlarınızı Zone-H.Org/Zone-H.Com'a yollayabilirsiniz.
  121.  
  122. 5) Yani kısaca perl zonehmasscyberizm.pl Defaced.txt gibi kullanabilirsiniz.
  123.  
  124. Mr. KingSkrupellos - Cyberizm.Org Başarılar Diler :D :cigara:
  125.  
  126. ############# SON #######################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement