Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 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
de745d7
Start draft PR
souravg77 Jun 12, 2025
73cedae
Merged branch pr-1-ItsHugoo-pineapple-sniffer for PR https://github.c…
souravg77 Jun 12, 2025
4b89901
Fix network interfaces detection method to correctly parse interface …
souravg77 Jun 12, 2025
0e1e596
Enhance network interfaces detection with comprehensive debugging
souravg77 Jun 12, 2025
0b057b6
Enhance network interfaces detection with robust fallback and debugging
souravg77 Jun 12, 2025
d813b4d
Update network config tests to handle mocking and error scenarios
souravg77 Jun 12, 2025
0b1c4f5
Refactor network config detector to handle subprocess errors cleanly
souravg77 Jun 12, 2025
4cd2d2f
Improve network interfaces detection regex for more robust parsing
souravg77 Jun 12, 2025
4f6dfaa
Improve network interfaces parsing with more robust manual parsing me…
souravg77 Jun 12, 2025
7a4e414
Refactor network interfaces parsing with multi-line search strategy
souravg77 Jun 12, 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