You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
label.new(r"Replaces instances of <int> UNION with <int>e0UNION"),
507
+
label.new(r"Replaces apostrophe character (') with its UTF-8 full width counterpart (e.g. ' -> %EF%BC%87)"),
508
+
label.new(r"Replaces apostrophe character (') with its illegal double unicode counterpart (e.g. ' -> %00%27)"),
509
+
label.new(r"Appends (Access) NULL byte character (%00) at the end of payload"),
510
+
label.new(r"Base64-encodes all characters in a given payload"),
511
+
label.new(r"Replaces greater than operator ('>') with 'NOT BETWEEN 0 AND #' and equals operator ('=') with 'BETWEEN # AND #'"),
512
+
label.new(r"Injects keyword binary where possible"),
513
+
label.new(r"Replaces space character after SQL statement with a valid random blank character. Afterwards replace character '=' with operator LIKE"),
514
+
label.new(r"Double URL-encodes all characters in a given payload (not processing already encoded) (e.g. SELECT -> %2553%2545%254C%2545%2543%2554)"),
515
+
label.new(r"URL-encodes all characters in a given payload (not processing already encoded) (e.g. SELECT -> %53%45%4C%45%43%54)"),
516
+
label.new(r"Unicode-URL-encodes all characters in a given payload (not processing already encoded) (e.g. SELECT -> %u0053%u0045%u004C%u0045%u0043%u0054)"),
517
+
label.new(r"Unicode-escapes non-encoded characters in a given payload (not processing already encoded) (e.g. SELECT -> \u0053\u0045\u004C\u0045\u0043\u0054)"),
518
+
label.new(r"Replaces (MySQL) instances like 'LIMIT M, N' with 'LIMIT N OFFSET M' counterpart"),
519
+
label.new(r"Replaces (MySQL) instances like 'MID(A, B, C)' with 'MID(A FROM B FOR C)' counterpart"),
520
+
label.new(r"Prepends (inline) comment before parentheses (e.g. ( -> /**/()"),
521
+
label.new(r"Replaces (MySQL) instances like 'CONCAT(A, B)' with 'CONCAT_WS(MID(CHAR(0), 0, 0), A, B)' counterpart"),
522
+
label.new(r"Replaces instances of <int> UNION with <int>DUNION"),
523
+
label.new(r"Replaces all occurrences of operator equal ('=') with 'LIKE' counterpart"),
524
+
label.new(r"Replaces all occurrences of operator equal ('=') with 'RLIKE' counterpart"),
525
+
label.new(r"Slash escape single and double quotes (e.g. ' -> \')"),
526
+
label.new(r"Replaces greater than operator ('>') with 'GREATEST' counterpart"),
527
+
label.new(r"Adds (MySQL) versioned comment before each keyword"),
528
+
label.new(r"Replaces each (MySQL) 0x<hex> encoded string with equivalent CONCAT(CHAR(),...) counterpart"),
label.new(r"Replaces instances of UNION with -.1UNION"),
537
+
label.new(r"Embraces complete query with (MySQL) versioned comment"),
538
+
label.new(r"Embraces complete query with (MySQL) zero-versioned comment"),
539
+
label.new(r"Adds multiple spaces (' ') around SQL keywords"),
540
+
label.new(r"Converts all (non-alphanum) characters in a given payload to overlong UTF8 (not processing already encoded) (e.g. ' -> %C0%A7)"),
541
+
label.new(r"Converts all characters in a given payload to overlong UTF8 (not processing already encoded) (e.g. SELECT -> %C1%93%C1%85%C1%8C%C1%85%C1%83%C1%94)"),
542
+
label.new(r"Adds a percentage sign ('%') infront of each character (e.g. SELECT -> %S%E%L%E%C%T)"),
543
+
label.new(r"Replaces plus operator ('+') with (MsSQL) function CONCAT() counterpart"),
544
+
label.new(r"Replaces plus operator ('+') with (MsSQL) ODBC function {fn CONCAT()} counterpart"),
545
+
label.new(r"Replaces each keyword character with random case value (e.g. SELECT -> SEleCt)"),
0 commit comments