Move nmap host timeout from hardcoded 5m to configurable setting in app/web/config.py with a default of 2m for faster scans.
17 lines
426 B
Python
17 lines
426 B
Python
"""
|
|
Application configuration and metadata.
|
|
|
|
Contains version information and other application-level constants
|
|
that are managed by developers, not stored in the database.
|
|
"""
|
|
|
|
# Application metadata
|
|
APP_NAME = 'SneakyScanner'
|
|
APP_VERSION = '1.0.0-beta'
|
|
|
|
# Repository URL
|
|
REPO_URL = 'https://git.sneakygeek.net/sneakygeek/SneakyScan'
|
|
|
|
# Scanner settings
|
|
NMAP_HOST_TIMEOUT = '2m' # Timeout per host for nmap service detection
|