Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
93790ed
Start draft PR
tomaszlt Jun 11, 2025
4e948dc
Add comprehensive .gitignore file for Python project
tomaszlt Jun 11, 2025
b36c2b5
Initialize VPN security detection package
tomaszlt Jun 11, 2025
45dfbf0
Implement VPN network configuration detection methods
tomaszlt Jun 11, 2025
ee3bfc5
Add comprehensive tests for VPN network configuration detection
tomaszlt Jun 11, 2025
51f6ece
Improve network interface detection regex
tomaszlt Jun 11, 2025
5a9e051
Improve network interface detection algorithm
tomaszlt Jun 11, 2025
7183886
Refine network interface detection with improved regex
tomaszlt Jun 11, 2025
861b944
Add debugging output for network interface detection
tomaszlt Jun 11, 2025
da476fc
Further improve network interface detection algorithm
tomaszlt Jun 11, 2025
0987aa4
Improve test case to be more robust
tomaszlt Jun 11, 2025
6b242ba
Enhance network interface detection with more verbose error handling
tomaszlt Jun 11, 2025
4e6dee7
Further improve network interface detection with more robust regex
tomaszlt Jun 11, 2025
7566b85
Improve regex pattern for network interface detection
tomaszlt Jun 11, 2025
b630c36
Enhance network interface detection to handle more input variations
tomaszlt Jun 11, 2025
8010ccf
Start draft PR
Vuk7912 Jun 11, 2025
9aa79a2
Merged branch pr-1-ItsHugoo-pineapple-sniffer for PR https://github.c…
Vuk7912 Jun 11, 2025
2260ac0
Fix network interface detection with more robust regex parsing
Vuk7912 Jun 11, 2025
40fbbfa
Update VPN detection tests to use unittest.mock for compatibility
Vuk7912 Jun 11, 2025
00a5de9
Improve network interface detection regex and error handling
Vuk7912 Jun 11, 2025
7f1b35e
Update network config tests with more robust detection assertions
Vuk7912 Jun 11, 2025
77be4a9
Update VPN detection tests with more comprehensive scenario coverage
Vuk7912 Jun 11, 2025
becc975
Refactor VPN configuration detection to use VPNConfigDetector and imp…
Vuk7912 Jun 11, 2025
0a62144
Enhance network interface detection with more specific regex for glob…
Vuk7912 Jun 11, 2025
18a21c1
Update network interface detection test to be more flexible and robust
Vuk7912 Jun 11, 2025
5e78254
Enhance network interface detection to capture global and dynamic int…
Vuk7912 Jun 11, 2025
a767c47
Enhance network interface detection with more flexible regex parsing
Vuk7912 Jun 11, 2025
c2ce17f
Further enhance network interface detection with more robust parsing …
Vuk7912 Jun 11, 2025
8f29046
Improve network interface parsing to handle diverse interface block f…
Vuk7912 Jun 11, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 16 additions & 41 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,48 +1,23 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
*.pyc
*.pyo
*.pyd
.pytest_cache/
.coverage
htmlcov/
.env
<<<<<<< HEAD
venv/
ENV/
env.bak/
venv.bak/
*.egg-info/
env/
.venv/
dist/
build/

# Security Analysis Results (user-generated)
*.json
*_results.txt
*_report.txt
*_audit.json
daily_check.json
weekly_audit.json
security_check.json

# macOS
*.egg-info/
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# IDE
=======
dist/
build/
*.egg-info/
.vscode/
.idea/
*.swp
*.swo
*~

# Temporary files
*.tmp
*.temp
*.log

# User configuration
config.local.py
.env
>>>>>>> pr-2-ItsHugoo-pineapple-sniffer
Loading