ziffir commited on
Commit
4ca17ce
·
verified ·
1 Parent(s): d5aac00

Upload requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +63 -7
requirements.txt CHANGED
@@ -1,8 +1,64 @@
1
- gradio>=5.0.0
2
- torch>=2.0.0
3
- transformers>=4.40.0
4
- requests>=2.30.0
5
- beautifulsoup4>=4.12.0
6
- networkx>=3.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  plotly>=5.0.0
8
- matplotlib>=3.5.0 # fallback için
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Red Team Reconnaissance Framework v2.0 - Dependencies
2
+
3
+ # Core Web Framework
4
+ gradio>=4.0.0
5
+ fastapi>=0.95.0
6
+ uvicorn>=0.21.0
7
+
8
+ # Async & Networking
9
+ aiohttp>=3.8.0
10
+ asyncio-throttle>=1.0.0
11
+ requests>=2.28.0
12
+
13
+ # Web Scraping & Parsing
14
+ beautifulsoup4>=4.11.0
15
+ lxml>=4.9.0
16
+
17
+ # DNS & Network
18
+ dnspython>=2.3.0
19
+ netaddr>=0.9.0
20
+
21
+ # Visualization
22
  plotly>=5.0.0
23
+ networkx>=3.0
24
+ matplotlib>=3.5.0
25
+ pandas>=1.5.0
26
+
27
+ # Data Processing
28
+ numpy>=1.23.0
29
+ scipy>=1.9.0
30
+
31
+ # Security & Cryptography
32
+ cryptography>=38.0.0
33
+ pycryptodome>=3.16.0
34
+
35
+ # Logging & Monitoring
36
+ python-json-logger>=2.0.0
37
+ loguru>=0.6.0
38
+
39
+ # Configuration Management
40
+ python-dotenv>=0.20.0
41
+ pyyaml>=6.0
42
+
43
+ # Testing
44
+ pytest>=7.2.0
45
+ pytest-asyncio>=0.20.0
46
+ pytest-cov>=4.0.0
47
+
48
+ # Development
49
+ black>=23.0.0
50
+ flake8>=5.0.0
51
+ isort>=5.11.0
52
+
53
+ # Optional: Database support
54
+ sqlalchemy>=2.0.0
55
+ psycopg2-binary>=2.9.0 # PostgreSQL
56
+ pymongo>=4.3.0 # MongoDB
57
+
58
+ # Optional: API integrations
59
+ shodan>=1.28.0
60
+ censys>=1.1.0
61
+
62
+ # Optional: Performance
63
+ orjson>=3.8.0
64
+ uvloop>=0.17.0