File tree Expand file tree Collapse file tree
.github/Contributor_Guide Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -44,7 +44,6 @@ simple_firewall/
4444│ └── attack_simulator.py # Attack simulation for testing
4545├── main.py # 🚀 Modern CLI entry point (NEW!)
4646├── firewall_config.json # ⚙️ Configuration file
47- ├── run.py # 🔄 Legacy launcher (redirects to main.py)
4847├── install.sh # 📦 Installation script
4948├── requirements.txt # 📋 Python dependencies
5049├── package.json # 📦 Node.js dependencies (dev tools)
@@ -295,19 +294,6 @@ Attack simulation script for testing firewall effectiveness:
295294# 4. High Connection Rate Testing
296295```
297296
298- ### 🎯 ` run.py ` - Legacy Launcher Script
299-
300- Backwards compatibility launcher that redirects to main.py:
301- ``` python
302- # !/usr/bin/env python3
303- """ Legacy launcher - redirects to main.py"""
304- import subprocess
305- import sys
306-
307- if __name__ == " __main__" :
308- subprocess.run([sys.executable, " main.py" ] + sys.argv[1 :])
309- ```
310-
311297
312298### 📦 ` install.sh ` - Installation Script
313299
Original file line number Diff line number Diff line change @@ -95,15 +95,6 @@ python3 main.py --create-config
9595sudo python3 main.py -v
9696```
9797
98- ### Legacy Commands (Deprecated)
99-
100- ``` bash
101- # Old run.py launcher (redirects to main.py)
102- python3 run.py
103-
104- # Old direct firewall (moved to simple_firewall_old.py)
105- # sudo python3 simple_firewall.py # NO LONGER AVAILABLE
106- ```
10798
10899
109100## Configuration
You can’t perform that action at this time.
0 commit comments