# config_local.py - machine-specific overrides (copy to config_local.py, never commit) # Any name defined here replaces the value in config.py at import time. # Extra archive passwords specific to your targets ARCHIVE_PASSWORDS: list[bytes] = [ b"", b"infected", b"password", b"1234", # add your own below ] # tdl namespace you logged into (tdl login -n ) TDL_NAMESPACE: str | None = "monitor_session" # Default keyword patterns (overridden by runtime_config.json when present) _DEFAULT_KEYWORDS: list[str] = [ r"yourdomain\.com", r"@yourdomain\.com", ] # Default channels (overridden by runtime_config.json when present) _DEFAULT_CHANNELS: list[str | int] = [ # "channelname", # -1001234567890, ]