pub fn ssti_framework_variation(template: &str, framework: &str) -> StringExpand description
Generates framework-specific SSTI variations for template injection testing.
Useful for red team SSTI testing and blue team template validation.
ยงExamples
use redstr::ssti_framework_variation;
let template = "Hello {{ name }}";
let result = ssti_framework_variation(template, "jinja2");
assert!(result.len() > 0);