Enthält: - rdp_client.py: RDP Client mit GUI und Monitor-Auswahl - rdp.sh: Bash-basierter RDP Client - teamleader_test/: Network Scanner Fullstack-App - teamleader_test2/: Network Mapper CLI Subdirectories mit eigenem Repo wurden ausgeschlossen. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
25 lines
467 B
Plaintext
25 lines
467 B
Plaintext
# Database Configuration
|
|
DATABASE_URL=sqlite:///./network_scanner.db
|
|
|
|
# Application Settings
|
|
APP_NAME=Network Scanner
|
|
APP_VERSION=1.0.0
|
|
DEBUG=True
|
|
|
|
# Scanning Configuration
|
|
DEFAULT_SCAN_TIMEOUT=3
|
|
MAX_CONCURRENT_SCANS=50
|
|
ENABLE_NMAP=True
|
|
|
|
# Network Configuration
|
|
DEFAULT_NETWORK_RANGE=192.168.1.0/24
|
|
SCAN_PRIVATE_NETWORKS_ONLY=True
|
|
|
|
# API Configuration
|
|
API_PREFIX=/api
|
|
CORS_ORIGINS=["http://localhost:3000"]
|
|
|
|
# Logging
|
|
LOG_LEVEL=INFO
|
|
LOG_FILE=logs/network_scanner.log
|