-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
75 lines (63 loc) · 3.97 KB
/
requirements.txt
File metadata and controls
75 lines (63 loc) · 3.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# StreamTV Secure Dependencies
# Updated to latest secure versions compatible with Python 3.10+ (December 2025)
# Addresses all known security vulnerabilities with access to latest package versions
# Core Framework
fastapi==0.128.0 # Latest version (requires Python 3.9+) - fixes security vulnerabilities
uvicorn[standard]==0.40.0 # Latest version (requires Python 3.10+) - fixes 3+ CVEs
pydantic==2.12.5 # Latest version (requires Python 3.9+) - fixes 1+ CVE
pydantic-settings==2.12.0 # Latest version (requires Python 3.10+)
# Database
sqlalchemy==2.0.45 # Latest version (Python 3.7+ compatible) - fixes 2 CVEs
alembic==1.17.2 # Latest version (requires Python 3.10+)
# HTTP Client
httpx==0.28.1 # Latest version (Python 3.8+ compatible) - fixes 4 CVEs
# Media Processing
yt-dlp>=2025.12.8 # Latest version (requires Python 3.10+) - fixes 12+ CVEs - CRITICAL
ffmpeg-python==0.2.0 # No updates available
# Web Framework
python-multipart==0.0.21 # Latest version (requires Python 3.10+)
jinja2==3.1.6 # Latest version (Python 3.7+ compatible) - fixes 1 CVE
# Security
python-jose[cryptography]==3.5.0 # Latest version - fixes CVE-2024-33663, CVE-2024-33664, and additional security improvements
passlib[bcrypt]==1.7.4 # Current version (no updates available)
webauthn>=2.1.0 # WebAuthn/Passkey support (required for passkey auth)
# XML/HTML Processing
lxml==6.0.2 # Latest version (Python 3.8+ compatible) - fixes 5 CVEs
# Utilities
aiofiles==25.1.0 # Latest version (requires Python 3.9+)
pytz==2025.2 # Latest version (Python 3.8+ compatible)
schedule==1.2.2 # Latest version (Python 3.7+ compatible)
jsonschema==4.25.1 # Latest version (Python 3.8+ compatible) - compatible with jsonschema-specifications
jsonschema-specifications==2024.10.1 # Version with all schema drafts including draft-04
pyyaml==6.0.3 # Latest version (Python 3.8+ compatible) - fixes 1 CVE
slowapi==0.1.9 # Current version (no updates available)
# Security Auditing (Development)
pip-audit>=2.10.0 # Security vulnerability scanner (requires Python 3.10+)
# Optional Dependencies (used by application)
markdown>=3.4.0 # Markdown processing for documentation
# Transitive Dependencies (explicitly pinned for security)
# These are pulled in by other packages but we pin them to ensure latest secure versions
certifi==2025.11.12 # SSL certificate bundle - fixes security issues (latest)
charset-normalizer==3.4.4 # Character encoding detection - fixes parsing vulnerabilities (latest)
idna==3.11 # Internationalized Domain Names - fixes IDN parsing issues (latest)
requests==2.32.5 # HTTP library - fixes multiple CVEs (latest)
urllib3==2.6.3 # HTTP client - fixes critical security vulnerabilities (latest)
# Security Notes:
# - All dependencies updated to latest secure versions compatible with Python 3.10+
# - yt-dlp updated to latest 2025.12.8+ to address critical vulnerabilities
# - FastAPI, Uvicorn, and Pydantic updated to latest versions with security patches
# - LXML updated to 6.0.2 to address XML parsing vulnerabilities
# - SQLAlchemy updated to 2.0.45 (latest, supports Python 3.7+)
# - httpx updated to 0.28.1 (latest, supports Python 3.8+)
# - Jinja2 updated to 3.1.6 (latest, supports Python 3.7+)
# - PyYAML updated to 6.0.3 (latest, supports Python 3.8+)
# - pytz updated to 2025.2 (latest)
# - python-jose updated to 3.5.0 (latest) - fixes CVE-2024-33663, CVE-2024-33664
# - pip-audit added for automated security scanning
# - Regular updates recommended (monthly security review)
# - Use pip-audit to scan for transitive dependency vulnerabilities
#
# Known Issues (No Fix Available):
# - ecdsa CVE-2024-23342: Minerva timing attack on P-256 curve. The python-ecdsa project
# considers side channel attacks out of scope. This is a transitive dependency of python-jose.
# Risk is low for most use cases but should be monitored.