Expand description
Keyword manipulation strategies (case, whitespace, comments). Keyword manipulation encoding strategies.
Functions§
- alternating_
case - Shared alternating-case utility.
- between_
obfuscate - Between obfuscation — rewrites
=and>usingBETWEENsyntax. - case_
alternate - Case alternation — deterministic alternating upper/lower.
- lowercase
- Full lowercase conversion.
- mysql_
versioned_ comment MySQLversioned comment (/*!50000SELECT*/) — executed byMySQL, ignored by WAFs.- percentage_
prefix - Percentage prefix — adds
%before each character. - random_
case_ alternate - Random case alternation — unpredictable mixed-case output.
- space_
to_ comment - Replace spaces with SQL comments (
/**/). - space_
to_ dash - Replace spaces with dash comments (
--\n). - space_
to_ hash - Replace spaces with hash comments (
#). - space_
to_ plus - Replace spaces with plus signs (
+). - space_
to_ random_ blank - Replace spaces with random blank characters.
- sql_
comment_ insert - Insert SQL comments (
/**/) BETWEEN tokens by replacing spaces with comments. - unmagic_
quotes - Unmagic quotes — multi-byte quote escape for PHP multi-byte charsets.
- uppercase
- Full uppercase conversion.
- whitespace_
insert - Insert tab characters BETWEEN tokens by replacing spaces with tabs.