Releases: ChaoticFormula/vPrankPy
Releases · ChaoticFormula/vPrankPy
v1.0.0-Beta
vPrankPy
📦 About This Release
This is the first release of the Scam Baiter Prototype, a harmless educational tool inspired by the YouTube channel Scammer Payback. It's designed for cybersecurity demonstrations, ethical scambaiting, and awareness campaigns.
📹 Features
- 🎥 Auto-plays a full-screen distraction video on launch
- 🔒 Prevents closing the app unless a secret code (
231022) is typed [For v.0.1] - 🔁 Reopens if closed manually
- 🖥 Auto-starts on reboot (if added to Startup folder manually)
- 🛑 Prevents being cut or killed while running
- 🔐 Silent operation using
--noconsole
🛠️ How to Use
- Download the
main.exefile from the Assets below. - Place your video named
video.mp4next to the.exe. - Run it to test in a safe environment.
- To stop the program, type:
231022
✅ Note: This is a prototype. Always test on your own system before using in demos.
⚠️ WARNING
⚠️ This is not a prank tool. Do not run it on someone else's computer without informed consent. This tool simulates malware-like behavior and is intended for ethical hacking demonstrations only.
🙌 Credits
- 💡 Idea Inspired by: Scammer Payback
- 🧠 Developed by: [IHEfty]
- 🧰 Built with: Python, PyInstaller, OpenCV, Pillow, Keyboard
🧰 Build Instructions (Source Code)
-
Place your
video.mp4in the same directory asman.py -
Install dependencies:
pip install opencv-python pillow keyboard
-
Package with PyInstaller:
pyinstaller --onefile --noconsole --add-data "video.mp4;." --hidden-import PIL --hidden-import PIL.Image --hidden-import PIL.ImageTk man.py -
The compiled exe will be located in the
dist/folder