pub fn dynamodb_obfuscate(query: &str) -> StringExpand description
Generates DynamoDB query obfuscation patterns for NoSQL injection testing.
Useful for red team NoSQL injection testing and blue team input validation.
ยงExamples
use redstr::dynamodb_obfuscate;
let query = r#"{"Key": {"id": {"S": "123"}}}"#;
let result = dynamodb_obfuscate(query);
assert!(result.len() > 0);