Skip to main content

ssti_framework_variation

Function ssti_framework_variation 

Source
pub fn ssti_framework_variation(template: &str, framework: &str) -> String
Expand 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);