Added wordlists and server header logic to helm

This commit is contained in:
Patrick Di Fazio
2025-12-29 23:57:37 +01:00
parent a9808599dc
commit 06ffa2c480
4 changed files with 21 additions and 4 deletions

View File

@@ -21,7 +21,7 @@ class Config:
api_server_port: int = 8080
api_server_path: str = "/api/v2/users"
probability_error_codes: int = 0 # Percentage (0-100)
server_header: str = "Apache/2.2.22 (Ubuntu)"
server_header: Optional[str] = None
@classmethod
def from_env(cls) -> 'Config':