
New releaseAug 31, 2026
Automated cross-platform sandbox that detonates suspicious files in isolated VMs/emulators, captures network and memory artifacts, and creates LLM reports.
An automated, cross-platform security analysis engine for safely detonating suspicious files, binaries, and applications.
🎬 Watch the Project Demo
SandB0x-Xtract0r provides a unified environment to execute payloads across PC, mobile, and cloud environments. While the payload executes, the system captures runtime telemetry, network traces, and memory dumps, which are then synthesized into structured threat reports by an integrated multi-LLM bot.
Imagine you find a mystery package on your porch, but you aren't sure if it's a cool toy or a messy glitter bomb. Instead of opening it in your living room, you put the package inside a thick, clear plastic box in your backyard. You use robotic arms to open it while cameras record exactly what happens. If it explodes, the mess stays completely trapped, and your house is safe!
SandB0x-Xtract0r is that clear plastic box for computer files. It puts a mystery file inside a fake, trapped computer, watches everything it does, takes notes, and uses a smart AI robot to read those notes and tell you exactly how dangerous the file was.
Before you can build your safe plastic box, you need the right tools:
First, we need to download the project folders so your computer knows what to build.
git clone command to download the Sandb0x-Xtract0r project straight from GitHub.cd Sandb0x-Xtract0r.To make the tool super smart, you have to wake up the AI robot brains! 🧠
.env.example.The tool needs some extra little helper programs to work perfectly.
packages.txt file. It says you need to install a special helper called libmagic1.requirements.txt file. This tells your computer to install Python helpers, like pdfkit to make reading the final reports easy, and celery to manage heavy lifting!Now you tell Docker to build all the special rooms for testing! 🏠
docker-compose.yml.Once everything is built and running smoothly, you are ready to use it! 🎉
Prerequisites: Docker, Docker Compose, and a Linux host (recommended for KVM/hardware acceleration).
git clone [https://github.com/darnellwashingtonjr94-art/SandB0x-Xtract0r.git](https://github.com/darnellwashingtonjr94-art/SandB0x-Xtract0r.git)
cd SandB0x-Xtract0r
___
## SandB0x-Xtract0r ##
├── [ 📄 ] .env.example
├── [ 📁 ] .github/
│ ├── [ 📁 ] ISSUE_TEMPLATE/
│ └── [ 📁 ] workflows/
├── [ 🚫 ] .gitignore
├── [ 📁 ] config/
├── [ 🐳 ] docker-compose.yml
├── [ 📚 ] docs/
├── [ 🖥️ ] frontend/
├── [ 🖼️ ] IMG_1220.png
├── [ ⚖️ ] LICENSE
├── [ 📖 ] README.md
├── [ 📦 ] requirements.txt
├── [ 🛠️ ] scripts/
├── [ 📁 ] src/
│ ├── [ 🔌 ] api/
│ ├── [ 🔍 ] extractors/
│ ├── [ 🧠 ] llm_bot/
│ ├── [ ⚙️ ] orchestrator/
│ ├── [ 📦 ] sandboxes/
│ ├── [ 🤖 ] bot.py
│ └── [ 🚀 ] main.py
├── [ 💾 ] storage/
└── [ 🧪 ] tests/