Update README for v5.0
Browse files
README.md
CHANGED
|
@@ -1,59 +1,63 @@
|
|
| 1 |
-
|
| 2 |
-
tags:
|
| 3 |
-
- ml-intern
|
| 4 |
-
---
|
| 5 |
-
# MoneyPack Security Suite v4.0
|
| 6 |
|
| 7 |
-
|
| 8 |
-
**Created by MoneyPack.**
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
|
| 12 |
```
|
| 13 |
python moneypack_security.py
|
| 14 |
```
|
| 15 |
|
| 16 |
-
## Build .EXE
|
| 17 |
|
| 18 |
```
|
| 19 |
pip install pyinstaller psutil rich
|
| 20 |
pyinstaller --onefile --console --name MoneyPack_Security moneypack_security.py
|
| 21 |
```
|
| 22 |
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
## Features
|
| 26 |
-
|
| 27 |
-
- File scanner with heuristic malware detection
|
| 28 |
-
- Process monitor detecting 30+ RAT families
|
| 29 |
-
- Network analyzer finding C2 callbacks & reverse shells
|
| 30 |
-
- Persistence scanner (registry, startup, cron, services)
|
| 31 |
-
- Quarantine vault
|
| 32 |
-
- Real-time guard mode
|
| 33 |
-
- Neon glow terminal interface
|
| 34 |
|
| 35 |
-
##
|
| 36 |
|
| 37 |
-
- Python
|
| 38 |
-
- psutil (auto-installs)
|
| 39 |
-
- rich (auto-installs)
|
| 40 |
|
| 41 |
-
|
| 42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
|
| 44 |
-
|
|
|
|
| 45 |
|
| 46 |
-
|
| 47 |
-
- Source code: https://github.com/huggingface/ml-intern
|
| 48 |
-
|
| 49 |
-
## Usage
|
| 50 |
-
|
| 51 |
-
```python
|
| 52 |
-
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 53 |
-
|
| 54 |
-
model_id = "MoneyPack/MoneyPack-Security-Suite"
|
| 55 |
-
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 56 |
-
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 57 |
-
```
|
| 58 |
|
| 59 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# MoneyPack Security Suite v5.0
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
+
**Created by MoneyPack**
|
|
|
|
| 4 |
|
| 5 |
+
Advanced Anti-Malware & RAT Detection - **ZERO False Positives** edition.
|
| 6 |
+
|
| 7 |
+
## What's New in v5.0
|
| 8 |
+
|
| 9 |
+
- **ZERO false positives** - Never flags system files, Python libs, .NET DLLs, or legitimate software
|
| 10 |
+
- **Kill or Quarantine** - When threats ARE found, you choose: delete permanently or isolate
|
| 11 |
+
- **Smart detection** - Only flags files with MULTIPLE confirmed malware indicators
|
| 12 |
+
- **System-aware** - Auto-whitelists Windows, Python, Program Files, .NET paths
|
| 13 |
+
|
| 14 |
+
## Download & Run
|
| 15 |
|
| 16 |
```
|
| 17 |
python moneypack_security.py
|
| 18 |
```
|
| 19 |
|
| 20 |
+
## Build .EXE
|
| 21 |
|
| 22 |
```
|
| 23 |
pip install pyinstaller psutil rich
|
| 24 |
pyinstaller --onefile --console --name MoneyPack_Security moneypack_security.py
|
| 25 |
```
|
| 26 |
|
| 27 |
+
Find your EXE at: `dist\MoneyPack_Security.exe`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
|
| 29 |
+
## How Detection Works (No More False Positives)
|
| 30 |
|
| 31 |
+
The old version flagged anything containing `/bin/sh` or `cmd.exe /c`. That's dumb - every Python install has those.
|
|
|
|
|
|
|
| 32 |
|
| 33 |
+
v5.0 uses **multi-indicator analysis**:
|
| 34 |
+
- Files in system folders (Python, Windows, Program Files) = ALWAYS skipped
|
| 35 |
+
- .NET DLLs with dots in names (Colors.Net.dll) = recognized as legitimate
|
| 36 |
+
- A file needs **3+ confirmed malware behaviors together** to be flagged:
|
| 37 |
+
- Encoded PowerShell + hidden window + bypass
|
| 38 |
+
- Download cradle + code execution
|
| 39 |
+
- Keylogger APIs + hook APIs together
|
| 40 |
+
- Process injection technique (VirtualAlloc + WriteProcessMemory + CreateRemoteThread)
|
| 41 |
+
- Ransomware indicators (encrypt + bitcoin + shadow deletion)
|
| 42 |
+
- Cryptominer signatures (stratum, xmrig, monero)
|
| 43 |
|
| 44 |
+
Single patterns alone = ignored (too many false positives).
|
| 45 |
+
Multiple patterns combined = confirmed malware.
|
| 46 |
|
| 47 |
+
## Features
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
|
| 49 |
+
| Feature | Description |
|
| 50 |
+
|---------|-------------|
|
| 51 |
+
| Quick Scan | Scans Downloads, Desktop, Temp |
|
| 52 |
+
| Full Scan | Deep scan any directory you choose |
|
| 53 |
+
| Process Hunter | Finds RAT processes, option to KILL |
|
| 54 |
+
| Network Guard | Detects C2 callbacks & reverse shells |
|
| 55 |
+
| Real-Time Guard | Continuous background monitoring |
|
| 56 |
+
| Quarantine Vault | Isolate threats safely |
|
| 57 |
+
| Threat Log | History of all detections & kills |
|
| 58 |
+
|
| 59 |
+
## Supported Platforms
|
| 60 |
+
|
| 61 |
+
- Windows 10/11
|
| 62 |
+
- Linux
|
| 63 |
+
- macOS
|