MoneyPack commited on
Commit
7ca214e
·
verified ·
1 Parent(s): ffc1675

Add README

Browse files
Files changed (1) hide show
  1. README.md +27 -18
README.md CHANGED
@@ -1,26 +1,35 @@
1
- ---
2
- tags:
3
- - ml-intern
4
- ---
5
 
6
- # MoneyPack/MoneyPack-Security-Suite
 
7
 
8
- <!-- ml-intern-provenance -->
9
- ## Generated by ML Intern
10
 
11
- This model repository was generated by [ML Intern](https://github.com/huggingface/ml-intern), an agent for machine learning research and development on the Hugging Face Hub.
 
 
12
 
13
- - Try ML Intern: https://smolagents-ml-intern.hf.space
14
- - Source code: https://github.com/huggingface/ml-intern
15
 
16
- ## Usage
 
 
 
17
 
18
- ```python
19
- from transformers import AutoModelForCausalLM, AutoTokenizer
20
 
21
- model_id = "MoneyPack/MoneyPack-Security-Suite"
22
- tokenizer = AutoTokenizer.from_pretrained(model_id)
23
- model = AutoModelForCausalLM.from_pretrained(model_id)
24
- ```
 
 
 
 
 
 
 
25
 
26
- For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.
 
 
 
1
+ # MoneyPack Security Suite v4.0
 
 
 
2
 
3
+ Advanced Anti-Malware & RAT Detection for Windows/Linux/Mac.
4
+ **Created by MoneyPack.**
5
 
6
+ ## Quick Start
 
7
 
8
+ ```
9
+ python moneypack_security.py
10
+ ```
11
 
12
+ ## Build .EXE (Windows)
 
13
 
14
+ ```
15
+ pip install pyinstaller psutil rich
16
+ pyinstaller --onefile --console --name MoneyPack_Security moneypack_security.py
17
+ ```
18
 
19
+ Your EXE: `dist\MoneyPack_Security.exe`
 
20
 
21
+ ## Features
22
+
23
+ - File scanner with heuristic malware detection
24
+ - Process monitor detecting 30+ RAT families
25
+ - Network analyzer finding C2 callbacks & reverse shells
26
+ - Persistence scanner (registry, startup, cron, services)
27
+ - Quarantine vault
28
+ - Real-time guard mode
29
+ - Neon glow terminal interface
30
+
31
+ ## Requirements
32
 
33
+ - Python 3.8+
34
+ - psutil (auto-installs)
35
+ - rich (auto-installs)