Skip to main content

html_form_field_obfuscate

Function html_form_field_obfuscate 

Source
pub fn html_form_field_obfuscate(field: &str) -> String
Expand description

Generates HTML form field name obfuscation for form bypass testing.

Useful for red team form field manipulation and blue team validation testing.

ยงExamples

use redstr::html_form_field_obfuscate;
let field = "username";
let result = html_form_field_obfuscate(field);
assert!(result.len() > 0);