Path: blob/dev/integration_tests/fuzz/fuzz-host-header-injection.yaml
2070 views
id: host-header-injection12info:3name: Host Header Injection4author: pdteam5severity: info6description: Host header injection78variables:9domain: "oast.fun"1011http:12- pre-condition:13- type: dsl14dsl:15- 'method == "GET"'16- 'contains(path,"/host-header-lab")' # for integration testing only17condition: and1819fuzzing:20- part: header21type: replace22mode: single23fuzz:24X-Forwarded-For: "{{domain}}"25X-Forwarded-Host: "{{domain}}"26Forwarded: "{{domain}}"27X-Real-IP: "{{domain}}"28X-Original-URL: "{{domain}}"29X-Rewrite-URL: "{{domain}}"30Host: "{{domain}}"31# " Host": "{{domain}}" # space before host (not supported yet due to lack of unsafe mode)3233matchers:34- type: status35status:36- 2003738- type: word39part: body40words:41- "Interactsh"42matchers-condition: and4344