A simple, easy-to-use Python file protector.
Project description
PyDefender
Made with program protection in mind.
Acknowledgements
Story
I found Python Protector a couple months ago and have been using it! But recently, I have been encountering issues, the github hasn't been updated since June 7th (As of September 6th), so I decided, lets use there base, fix the issues, and hopefully update it more in the future!
Features
- Configurable module system (Enable / Disable Modules)
- Configurable detection system (What it does when something is detected)
- Encrypted logging system with remote uploading
- Discord webhook support
- Clean code
- Constantly updated
Installation
Python 3.11 or higher is required
Install via PyPi:
py -3 -m pip install -U PyDefender
Usage
from pathlib import Path
from threading import Thread
from pythondefender import PyDefender
Defender = PyDefender(
debug=True,
modules=[
"AntiProcess",
"AntiVM",
"Miscellaneous",
"AntiDLL",
"AntiAnalysis",
"AntiDump"],
logs_path=Path.home() / "AppData/Roaming/PyDefender/logs/[Security].log",
webhook_url="%INSERT_WEBHOOK_URL&",
on_detect=[
"Report",
"Exit",
"Screenshot"],
)
if __name__ == "__main__":
DefenderThread = Thread(
name = "PyDefender Security", target=Defender.start
)
DefenderThread.start()
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pythondefender-1.0.0.tar.gz
(19.3 kB
view hashes)
Built Distribution
Close
Hashes for pythondefender-1.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7cc5c52354e3a0e73c5d4cc6930e94257b2ccb209cca9d78f54e2fa88737ff2e |
|
MD5 | 4c93b0e97eb44150257d0e98014025fe |
|
BLAKE2b-256 | 8db53a2e2a2c614ca88934c448b104886c97f35cd89a66dbee84d3255bf91c47 |