Add SERVER_HEADER environment variable to customize the HTTP Server response header, defaulting to Apache/2.2.22 (Ubuntu). This allows the honeypot to masquerade as different web servers to attract attackers. - Add server_header field to Config dataclass - Override version_string() in Handler to return configured header - Update documentation and all deployment configs
17 lines
398 B
YAML
17 lines
398 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: krawl-config
|
|
namespace: krawl-system
|
|
data:
|
|
PORT: "5000"
|
|
DELAY: "100"
|
|
LINKS_MIN_LENGTH: "5"
|
|
LINKS_MAX_LENGTH: "15"
|
|
LINKS_MIN_PER_PAGE: "10"
|
|
LINKS_MAX_PER_PAGE: "15"
|
|
MAX_COUNTER: "10"
|
|
CANARY_TOKEN_TRIES: "10"
|
|
PROBABILITY_ERROR_CODES: "0"
|
|
SERVER_HEADER: "Apache/2.2.22 (Ubuntu)"
|
|
# CANARY_TOKEN_URL: set-your-canary-token-url-here |