pub fn double_url_encode(payload: impl AsRef<[u8]>) -> StringExpand description
Double URL encoding — every byte becomes %25XX.
Bypasses WAFs that decode URL encoding once before matching.
Pre-encoded %XX sequences are detected and only the % is
double-encoded to avoid triple-encoding artifacts.