Skip to main content

http_header_variation

Function http_header_variation 

Source
pub fn http_header_variation(input: &str) -> String
Expand description

Generates HTTP header value variations for Caido and web security testing.

Useful for testing header parsing and WAF rules in tools like Caido.

ยงExamples

use redstr::http_header_variation;
let header = "application/json";
let result = http_header_variation(header);
assert!(result.len() > 0);