itsi-server 0.1.19 → 0.1.20
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 +4 -4
- data/Cargo.lock +950 -239
- data/README.md +2 -0
- data/exe/itsi +5 -5
- data/ext/itsi_acme/Cargo.toml +86 -0
- data/ext/itsi_acme/examples/high_level.rs +63 -0
- data/ext/itsi_acme/examples/high_level_warp.rs +52 -0
- data/ext/itsi_acme/examples/low_level.rs +87 -0
- data/ext/itsi_acme/examples/low_level_axum.rs +66 -0
- data/ext/itsi_acme/src/acceptor.rs +81 -0
- data/ext/itsi_acme/src/acme.rs +354 -0
- data/ext/itsi_acme/src/axum.rs +86 -0
- data/ext/itsi_acme/src/cache.rs +39 -0
- data/ext/itsi_acme/src/caches/boxed.rs +80 -0
- data/ext/itsi_acme/src/caches/composite.rs +69 -0
- data/ext/itsi_acme/src/caches/dir.rs +106 -0
- data/ext/itsi_acme/src/caches/mod.rs +11 -0
- data/ext/itsi_acme/src/caches/no.rs +78 -0
- data/ext/itsi_acme/src/caches/test.rs +136 -0
- data/ext/itsi_acme/src/config.rs +172 -0
- data/ext/itsi_acme/src/https_helper.rs +69 -0
- data/ext/itsi_acme/src/incoming.rs +142 -0
- data/ext/itsi_acme/src/jose.rs +161 -0
- data/ext/itsi_acme/src/lib.rs +142 -0
- data/ext/itsi_acme/src/resolver.rs +59 -0
- data/ext/itsi_acme/src/state.rs +424 -0
- data/ext/itsi_server/Cargo.toml +3 -3
- data/ext/itsi_server/src/ruby_types/itsi_http_request.rs +2 -2
- data/ext/itsi_server/src/ruby_types/itsi_server/itsi_server_config.rs +150 -19
- data/ext/itsi_server/src/ruby_types/itsi_server.rs +1 -0
- data/ext/itsi_server/src/server/binds/listener.rs +34 -29
- data/ext/itsi_server/src/server/binds/tls/locked_dir_cache.rs +2 -2
- data/ext/itsi_server/src/server/binds/tls.rs +1 -1
- data/ext/itsi_server/src/server/middleware_stack/middleware.rs +33 -28
- data/ext/itsi_server/src/server/middleware_stack/middlewares/auth_jwt.rs +56 -3
- data/ext/itsi_server/src/server/middleware_stack/middlewares/csp.rs +179 -0
- data/ext/itsi_server/src/server/middleware_stack/middlewares/mod.rs +25 -2
- data/ext/itsi_server/src/server/middleware_stack/middlewares/ruby_app.rs +3 -3
- data/ext/itsi_server/src/server/middleware_stack/middlewares/static_assets.rs +2 -1
- data/ext/itsi_server/src/server/middleware_stack/mod.rs +32 -34
- data/ext/itsi_server/src/server/serve_strategy/cluster_mode.rs +10 -4
- data/ext/itsi_server/src/server/serve_strategy/single_mode.rs +30 -7
- data/ext/itsi_server/src/server/thread_worker.rs +2 -2
- data/ext/itsi_server/src/services/static_file_server.rs +30 -28
- data/ext/itsi_tracing/src/lib.rs +39 -8
- data/lib/itsi/server/config/config_helpers.rb +93 -0
- data/lib/itsi/server/config/dsl.rb +81 -33
- data/lib/itsi/server/config/known_paths/KitchensinkDirectories.txt +2346 -0
- data/lib/itsi/server/config/known_paths/Randomfiles.txt +24 -0
- data/lib/itsi/server/config/known_paths/UnixDotfiles.txt +52 -0
- data/lib/itsi/server/config/known_paths/backdoors/ASP_CommonBackdoors.txt +29 -0
- data/lib/itsi/server/config/known_paths/backdoors/bot_control_panels.txt +1668 -0
- data/lib/itsi/server/config/known_paths/backdoors/shells.txt +1167 -0
- data/lib/itsi/server/config/known_paths/cgi/CGI_HTTP_POST.txt +7 -0
- data/lib/itsi/server/config/known_paths/cgi/CGI_HTTP_POST_Windows.txt +6 -0
- data/lib/itsi/server/config/known_paths/cgi/CGI_Microsoft.txt +79 -0
- data/lib/itsi/server/config/known_paths/cgi/CGI_XPlatform.txt +3948 -0
- data/lib/itsi/server/config/known_paths/cms/README.md +5 -0
- data/lib/itsi/server/config/known_paths/cms/drupal_plugins.txt +6320 -0
- data/lib/itsi/server/config/known_paths/cms/drupal_themes.txt +828 -0
- data/lib/itsi/server/config/known_paths/cms/joomla_plugins.txt +224 -0
- data/lib/itsi/server/config/known_paths/cms/joomla_themes.txt +30 -0
- data/lib/itsi/server/config/known_paths/cms/php-nuke.txt +2142 -0
- data/lib/itsi/server/config/known_paths/cms/wordpress.txt +1566 -0
- data/lib/itsi/server/config/known_paths/cms/wp_common_theme_files.txt +46 -0
- data/lib/itsi/server/config/known_paths/cms/wp_plugins.txt +13366 -0
- data/lib/itsi/server/config/known_paths/cms/wp_plugins_full.txt +68662 -0
- data/lib/itsi/server/config/known_paths/cms/wp_plugins_top225.txt +225 -0
- data/lib/itsi/server/config/known_paths/cms/wp_themes.readme +12 -0
- data/lib/itsi/server/config/known_paths/cms/wp_themes.txt +7336 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/3CharExtBrute.txt +17576 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/CommonWebExtensions.txt +80 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/Extensions.Backup.txt +14 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/Extensions.Common.txt +865 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/Extensions.Compressed.txt +186 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/Extensions.Mostcommon.txt +30 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/Extensions.Skipfish.txt +93 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/WordlistSkipfish.txt +1918 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/copy_of.txt +8 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-directories-lowercase.txt +56180 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-directories.txt +62290 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-extensions-lowercase.txt +2367 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-extensions.txt +2450 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-files-lowercase.txt +35323 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-files.txt +37037 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-words-lowercase.txt +107982 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-words.txt +119600 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-directories-lowercase.txt +26593 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-directories.txt +30009 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-extensions-lowercase.txt +1233 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-extensions.txt +1289 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-files-lowercase.txt +16243 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-files.txt +17128 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-words-lowercase.txt +56293 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-words.txt +63087 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-directories-lowercase.txt +17776 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-directories.txt +20122 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-extensions-lowercase.txt +914 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-extensions.txt +963 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-files-lowercase.txt +10848 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-files.txt +11424 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-words-lowercase.txt +38267 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-words.txt +43003 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/spanish.txt +445 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/test_demo.txt +36 -0
- data/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/upload_variants.txt +44 -0
- data/lib/itsi/server/config/known_paths/login-file-locations/Logins.txt +71 -0
- data/lib/itsi/server/config/known_paths/login-file-locations/cfm.txt +294 -0
- data/lib/itsi/server/config/known_paths/login-file-locations/html.txt +295 -0
- data/lib/itsi/server/config/known_paths/login-file-locations/jsp.txt +294 -0
- data/lib/itsi/server/config/known_paths/login-file-locations/php.txt +294 -0
- data/lib/itsi/server/config/known_paths/login-file-locations/windows-asp.txt +294 -0
- data/lib/itsi/server/config/known_paths/login-file-locations/windows-aspx.txt +294 -0
- data/lib/itsi/server/config/known_paths/password-file-locations/Passwords.txt +47 -0
- data/lib/itsi/server/config/known_paths/php/PHP.txt +30 -0
- data/lib/itsi/server/config/known_paths/php/PHP_CommonBackdoors.txt +5 -0
- data/lib/itsi/server/config/known_paths/proxy-conf.txt +31 -0
- data/lib/itsi/server/config/known_paths/tftp.txt +79 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/ADFS.txt +86 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/AdobeXML.txt +16 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/Apache.txt +101 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/ApacheTomcat.txt +47 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/Apache_Axis.txt +16 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/ColdFusion.txt +111 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/FatwireCMS.txt +390 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/Frontpage.txt +38 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/HP_System_Mgmt_Homepage.txt +239 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/HTTP_POST_Microsoft.txt +2 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/Hyperion.txt +578 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/IIS.txt +187 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/JBoss.txt +5 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/JRun.txt +13 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/JavaServlets_Common.txt +3 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/Joomla_exploitable.txt +1937 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/LotusNotes.txt +206 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/Netware.txt +18 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/Oracle9i.txt +60 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/OracleAppServer.txt +192 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/README.md +6 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/Ruby_Rails.txt +121 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/SAP.txt +463 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/Sharepoint.txt +1707 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/SiteMinder.txt +19 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/SunAppServerGlassfish.txt +51 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/SuniPlanet.txt +35 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/Vignette.txt +73 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/Weblogic.txt +160 -0
- data/lib/itsi/server/config/known_paths/webservers-appservers/Websphere.txt +366 -0
- data/lib/itsi/server/config/known_paths/wellknown-rfc5785.txt +30 -0
- data/lib/itsi/server/config/known_paths.rb +17 -0
- data/lib/itsi/server/config/middleware/_index.md +54 -0
- data/lib/itsi/server/config/middleware/log_requests.md +63 -0
- data/lib/itsi/server/config/middleware/log_requests.rb +33 -0
- data/lib/itsi/server/config/middleware.rb +9 -0
- data/lib/itsi/server/config/option.rb +9 -0
- data/lib/itsi/server/config/options/_index.md +36 -0
- data/lib/itsi/server/config/options/fiber_scheduler.md +35 -0
- data/lib/itsi/server/config/options/fiber_scheduler.rb +18 -0
- data/lib/itsi/server/config/options/threads.md +39 -0
- data/lib/itsi/server/config/options/threads.rb +17 -0
- data/lib/itsi/server/config/options/workers.md +43 -0
- data/lib/itsi/server/config/options/workers.rb +17 -0
- data/lib/itsi/server/config/typed_struct.rb +203 -0
- data/lib/itsi/server/config.rb +124 -30
- data/lib/itsi/server/signal_trap.rb +5 -1
- data/lib/itsi/server/typed_handlers/source_parser.rb +1 -1
- data/lib/itsi/server/version.rb +1 -1
- data/lib/itsi/server.rb +27 -6
- data/lib/ruby_lsp/itsi/addon.rb +64 -48
- metadata +141 -5
- data/CHANGELOG.md +0 -10
- data/CODE_OF_CONDUCT.md +0 -139
- data/LICENSE.txt +0 -21
- data/_index.md +0 -6
@@ -0,0 +1,1233 @@
|
|
1
|
+
.php
|
2
|
+
.html
|
3
|
+
.txt
|
4
|
+
.htm
|
5
|
+
.aspx
|
6
|
+
.asp
|
7
|
+
.js
|
8
|
+
.css
|
9
|
+
.pgsql.txt
|
10
|
+
.mysql.txt
|
11
|
+
.pdf
|
12
|
+
.cgi
|
13
|
+
.inc
|
14
|
+
.gif
|
15
|
+
.jpg
|
16
|
+
.swf
|
17
|
+
.xml
|
18
|
+
.cfm
|
19
|
+
.xhtml
|
20
|
+
.wmv
|
21
|
+
.zip
|
22
|
+
.axd
|
23
|
+
.gz
|
24
|
+
.png
|
25
|
+
.doc
|
26
|
+
.shtml
|
27
|
+
.jsp
|
28
|
+
.ico
|
29
|
+
.exe
|
30
|
+
.csi
|
31
|
+
.inc.php
|
32
|
+
.config
|
33
|
+
.jpeg
|
34
|
+
.ashx
|
35
|
+
.log
|
36
|
+
.xls
|
37
|
+
.0
|
38
|
+
.old
|
39
|
+
.mp3
|
40
|
+
.com
|
41
|
+
.tar
|
42
|
+
.ini
|
43
|
+
.asa
|
44
|
+
.tgz
|
45
|
+
.flv
|
46
|
+
.php3
|
47
|
+
.bak
|
48
|
+
.rar
|
49
|
+
.asmx
|
50
|
+
.xlsx
|
51
|
+
.page
|
52
|
+
.phtml
|
53
|
+
.dll
|
54
|
+
.asax
|
55
|
+
.1
|
56
|
+
.msg
|
57
|
+
.pl
|
58
|
+
.csv
|
59
|
+
.css.aspx
|
60
|
+
.2
|
61
|
+
.3
|
62
|
+
.ppt
|
63
|
+
.nsf
|
64
|
+
.bmp
|
65
|
+
.sql
|
66
|
+
.xml.gz
|
67
|
+
.new
|
68
|
+
.avi
|
69
|
+
.psd
|
70
|
+
.rss
|
71
|
+
.5
|
72
|
+
.wav
|
73
|
+
.action
|
74
|
+
.db
|
75
|
+
.dat
|
76
|
+
.do
|
77
|
+
.xsl
|
78
|
+
.class
|
79
|
+
.mdb
|
80
|
+
.include
|
81
|
+
.12
|
82
|
+
.cs
|
83
|
+
.class.php
|
84
|
+
.htc
|
85
|
+
.mov
|
86
|
+
.tpl
|
87
|
+
.4
|
88
|
+
.6.12
|
89
|
+
.9
|
90
|
+
.js.php
|
91
|
+
.mysql-connect
|
92
|
+
.mpg
|
93
|
+
.rdf
|
94
|
+
.rtf
|
95
|
+
.6
|
96
|
+
.ascx
|
97
|
+
.mvc
|
98
|
+
.1.0
|
99
|
+
.files
|
100
|
+
.master
|
101
|
+
.jar
|
102
|
+
.vb
|
103
|
+
.mp4
|
104
|
+
.local.php
|
105
|
+
.fla
|
106
|
+
.require
|
107
|
+
.de
|
108
|
+
.docx
|
109
|
+
.php5
|
110
|
+
.wci
|
111
|
+
.readme
|
112
|
+
.7
|
113
|
+
.cfg
|
114
|
+
.aspx.cs
|
115
|
+
.cfc
|
116
|
+
.dwt
|
117
|
+
.ru
|
118
|
+
.lck
|
119
|
+
.gif_var_de
|
120
|
+
.html_var_de
|
121
|
+
.net
|
122
|
+
.ttf
|
123
|
+
.x-aom
|
124
|
+
.jhtml
|
125
|
+
.mpeg
|
126
|
+
.x-fancycat
|
127
|
+
.php4
|
128
|
+
.readme_var_de
|
129
|
+
.vcf
|
130
|
+
.x-rma
|
131
|
+
.x-affiliate
|
132
|
+
.x-offers
|
133
|
+
.x-affiliate_var_de
|
134
|
+
.x-aom_var_de
|
135
|
+
.x-fancycat_var_de
|
136
|
+
.x-fcomp
|
137
|
+
.x-fcomp_var_de
|
138
|
+
.x-giftreg
|
139
|
+
.x-giftreg_var_de
|
140
|
+
.x-magnifier
|
141
|
+
.x-magnifier_var_de
|
142
|
+
.x-offers_var_de
|
143
|
+
.x-pconf
|
144
|
+
.x-pconf_var_de
|
145
|
+
.x-rma_var_de
|
146
|
+
.x-survey
|
147
|
+
.tif
|
148
|
+
.dir
|
149
|
+
.json
|
150
|
+
.6.9
|
151
|
+
.zif
|
152
|
+
.wma
|
153
|
+
.8
|
154
|
+
.mid
|
155
|
+
.rm
|
156
|
+
.aspx.vb
|
157
|
+
.tar.gz
|
158
|
+
.woa
|
159
|
+
.main
|
160
|
+
.ram
|
161
|
+
.opml
|
162
|
+
.0.html
|
163
|
+
.css.php
|
164
|
+
.feed
|
165
|
+
.lasso
|
166
|
+
.6.3
|
167
|
+
.shtm
|
168
|
+
.sitemap
|
169
|
+
.scc
|
170
|
+
.tmp
|
171
|
+
.backup
|
172
|
+
.sln
|
173
|
+
.org
|
174
|
+
.conf
|
175
|
+
.mysql-query
|
176
|
+
.session-start
|
177
|
+
.uk
|
178
|
+
.10
|
179
|
+
.14
|
180
|
+
.orig
|
181
|
+
.settings.php
|
182
|
+
.19
|
183
|
+
.cab
|
184
|
+
.kml
|
185
|
+
.pps
|
186
|
+
.require-once
|
187
|
+
.asx
|
188
|
+
.bok
|
189
|
+
.msi
|
190
|
+
.01
|
191
|
+
.c
|
192
|
+
.fcgi
|
193
|
+
.fopen
|
194
|
+
.html.
|
195
|
+
.phpmailer.php
|
196
|
+
.bin
|
197
|
+
.htaccess
|
198
|
+
.info
|
199
|
+
.java
|
200
|
+
.jsf
|
201
|
+
.tmpl
|
202
|
+
.0.2
|
203
|
+
.00
|
204
|
+
.6.19
|
205
|
+
.bat
|
206
|
+
.com.html
|
207
|
+
.print
|
208
|
+
.resx
|
209
|
+
.ics
|
210
|
+
.php.php
|
211
|
+
.x
|
212
|
+
.data
|
213
|
+
.dcr
|
214
|
+
.enfinity
|
215
|
+
.html.html
|
216
|
+
.licx
|
217
|
+
.mno
|
218
|
+
.plx
|
219
|
+
.vm
|
220
|
+
.11
|
221
|
+
.5.php
|
222
|
+
.50
|
223
|
+
.config.php
|
224
|
+
.dwg
|
225
|
+
.edu
|
226
|
+
.search
|
227
|
+
.static
|
228
|
+
.wws
|
229
|
+
.6.edu
|
230
|
+
.bz2
|
231
|
+
.co.uk
|
232
|
+
.ece
|
233
|
+
.epc
|
234
|
+
.getimagesize
|
235
|
+
.ice
|
236
|
+
.it_backup_giornaliero
|
237
|
+
.it_backup_settimanale
|
238
|
+
.jspa
|
239
|
+
.lst
|
240
|
+
.php-dist
|
241
|
+
.svc
|
242
|
+
.vbs
|
243
|
+
.1.html
|
244
|
+
.30-i486
|
245
|
+
.ai
|
246
|
+
.cur
|
247
|
+
.dmg
|
248
|
+
.img
|
249
|
+
.inf
|
250
|
+
.seam
|
251
|
+
.smtp.php
|
252
|
+
.1-bin-linux-2.0.30-i486
|
253
|
+
.1a
|
254
|
+
.34
|
255
|
+
.5.3
|
256
|
+
.7z
|
257
|
+
.ajax
|
258
|
+
.cfm.cfm
|
259
|
+
.chm
|
260
|
+
.csp
|
261
|
+
.edit
|
262
|
+
.file
|
263
|
+
.gif.php
|
264
|
+
.m3u
|
265
|
+
.psp
|
266
|
+
.py
|
267
|
+
.sh
|
268
|
+
.test
|
269
|
+
.zdat
|
270
|
+
.04
|
271
|
+
.2.2
|
272
|
+
.4.0
|
273
|
+
.admin
|
274
|
+
.captcha.aspx
|
275
|
+
.dev
|
276
|
+
.eps
|
277
|
+
.file-get-contents
|
278
|
+
.fr
|
279
|
+
.fsockopen
|
280
|
+
.list
|
281
|
+
.m4v
|
282
|
+
.min.js
|
283
|
+
.new.html
|
284
|
+
.p
|
285
|
+
.store
|
286
|
+
.webinfo
|
287
|
+
.xml.php
|
288
|
+
.3.2
|
289
|
+
.5.0
|
290
|
+
.htm.
|
291
|
+
.php.bak
|
292
|
+
.1.1
|
293
|
+
.1c
|
294
|
+
.300
|
295
|
+
.5.1
|
296
|
+
.790
|
297
|
+
.826
|
298
|
+
.bk
|
299
|
+
.bsp
|
300
|
+
.cms
|
301
|
+
.csshandler.ashx
|
302
|
+
.d
|
303
|
+
.html,
|
304
|
+
.htmll
|
305
|
+
.idx
|
306
|
+
.images
|
307
|
+
.jad
|
308
|
+
.master.cs
|
309
|
+
.prev_next
|
310
|
+
.ssf
|
311
|
+
.stm
|
312
|
+
.txt.gz
|
313
|
+
.00.8169
|
314
|
+
.01.4511
|
315
|
+
.112
|
316
|
+
.134
|
317
|
+
.156
|
318
|
+
.2.0
|
319
|
+
.21
|
320
|
+
.24
|
321
|
+
.4.9.php
|
322
|
+
.4511
|
323
|
+
.8169
|
324
|
+
.969
|
325
|
+
.web.ui.webresource.axd
|
326
|
+
.as
|
327
|
+
.asp.asp
|
328
|
+
.au
|
329
|
+
.cnf
|
330
|
+
.dhtml
|
331
|
+
.enu
|
332
|
+
.html.old
|
333
|
+
.include-once
|
334
|
+
.lock
|
335
|
+
.m
|
336
|
+
.mysql-select-db
|
337
|
+
.phps
|
338
|
+
.pm
|
339
|
+
.pptx
|
340
|
+
.sav
|
341
|
+
.sendtoafriendform
|
342
|
+
.ssi
|
343
|
+
.suo
|
344
|
+
.vbproj
|
345
|
+
.wml
|
346
|
+
.xsd
|
347
|
+
.025
|
348
|
+
.075
|
349
|
+
.077
|
350
|
+
.083
|
351
|
+
.13
|
352
|
+
.16
|
353
|
+
.206
|
354
|
+
.211
|
355
|
+
.246
|
356
|
+
.26.13.391n35.50.38.816
|
357
|
+
.26.24.165n35.50.24.134
|
358
|
+
.26.56.247n35.52.03.605
|
359
|
+
.27.02.940n35.49.56.075
|
360
|
+
.27.15.919n35.52.04.300
|
361
|
+
.27.29.262n35.47.15.083
|
362
|
+
.367
|
363
|
+
.3gp
|
364
|
+
.40.00.573n35.42.57.445
|
365
|
+
.403
|
366
|
+
.43.58.040n35.38.35.826
|
367
|
+
.44.04.344n35.38.35.077
|
368
|
+
.44.08.714n35.39.08.499
|
369
|
+
.44.10.892n35.38.49.246
|
370
|
+
.44.27.243n35.41.29.367
|
371
|
+
.44.29.976n35.37.51.790
|
372
|
+
.44.32.445n35.36.10.206
|
373
|
+
.44.34.800n35.38.08.156
|
374
|
+
.44.37.128n35.40.54.403
|
375
|
+
.44.40.556n35.40.53.025
|
376
|
+
.44.45.013n35.38.36.211
|
377
|
+
.44.46.104n35.38.22.970
|
378
|
+
.44.48.130n35.38.25.969
|
379
|
+
.44.52.162n35.38.50.456
|
380
|
+
.44.58.315n35.38.53.455
|
381
|
+
.445
|
382
|
+
.45.01.562n35.38.38.778
|
383
|
+
.45.04.359n35.38.39.112
|
384
|
+
.45.06.789n35.38.22.556
|
385
|
+
.45.10.717n35.38.41.989
|
386
|
+
.455
|
387
|
+
.456
|
388
|
+
.499
|
389
|
+
.556
|
390
|
+
.605
|
391
|
+
.778
|
392
|
+
.816
|
393
|
+
.970
|
394
|
+
.989
|
395
|
+
.array-keys
|
396
|
+
.atom
|
397
|
+
.award
|
398
|
+
.bkp
|
399
|
+
.crt
|
400
|
+
.default
|
401
|
+
.eml
|
402
|
+
.epl
|
403
|
+
.fancybox
|
404
|
+
.fil
|
405
|
+
.geo
|
406
|
+
.h
|
407
|
+
.hmtl
|
408
|
+
.html.bak
|
409
|
+
.ida
|
410
|
+
.implode
|
411
|
+
.index.php
|
412
|
+
.iso
|
413
|
+
.kmz
|
414
|
+
.mysql-pconnect
|
415
|
+
.php.old
|
416
|
+
.php.txt
|
417
|
+
.rec
|
418
|
+
.storefront
|
419
|
+
.taf
|
420
|
+
.war
|
421
|
+
.xslt
|
422
|
+
.1.6
|
423
|
+
.15
|
424
|
+
.23
|
425
|
+
.2a
|
426
|
+
.8.1
|
427
|
+
.sponsors
|
428
|
+
.a
|
429
|
+
.aquery
|
430
|
+
.ascx.cs
|
431
|
+
.cat
|
432
|
+
.contrib
|
433
|
+
.ds
|
434
|
+
.dwf
|
435
|
+
.film
|
436
|
+
.g
|
437
|
+
.go
|
438
|
+
.googlebook
|
439
|
+
.gpx
|
440
|
+
.hotelname
|
441
|
+
.htm.htm
|
442
|
+
.ihtml
|
443
|
+
.in-array
|
444
|
+
.index
|
445
|
+
.ini.php
|
446
|
+
.layer
|
447
|
+
.maninfo
|
448
|
+
.odt
|
449
|
+
.price
|
450
|
+
.randomhouse
|
451
|
+
.read
|
452
|
+
.ru-tov.html
|
453
|
+
.s7
|
454
|
+
.sample
|
455
|
+
.sit
|
456
|
+
.src
|
457
|
+
.tpl.php
|
458
|
+
.trck
|
459
|
+
.uguide
|
460
|
+
.vorteil
|
461
|
+
.wbp
|
462
|
+
.2.1
|
463
|
+
.2.html
|
464
|
+
.3.1
|
465
|
+
.30
|
466
|
+
.asax.vb
|
467
|
+
.aspx.aspx
|
468
|
+
.btr
|
469
|
+
.cer
|
470
|
+
.common.php
|
471
|
+
.de.html
|
472
|
+
.html
|
473
|
+
.jbf
|
474
|
+
.lbi
|
475
|
+
.lib.php
|
476
|
+
.lnk
|
477
|
+
.login
|
478
|
+
.login.php
|
479
|
+
.mhtml
|
480
|
+
.mpl
|
481
|
+
.mso
|
482
|
+
.mysql-result
|
483
|
+
.original
|
484
|
+
.pgp
|
485
|
+
.ph
|
486
|
+
.php.
|
487
|
+
.preview
|
488
|
+
.preview-content.php
|
489
|
+
.search.htm
|
490
|
+
.site
|
491
|
+
.text
|
492
|
+
.view
|
493
|
+
.0.1
|
494
|
+
.0.5
|
495
|
+
.1.2
|
496
|
+
.2.9
|
497
|
+
.3.5
|
498
|
+
.3.html
|
499
|
+
.4.html
|
500
|
+
.5.html
|
501
|
+
.72
|
502
|
+
.web
|
503
|
+
.action2
|
504
|
+
.asc
|
505
|
+
.asp.bak
|
506
|
+
.aspx.resx
|
507
|
+
.browse
|
508
|
+
.code
|
509
|
+
.com_backup_giornaliero
|
510
|
+
.com_backup_settimanale
|
511
|
+
.csproj
|
512
|
+
.dtd
|
513
|
+
.en.html
|
514
|
+
.ep
|
515
|
+
.eu
|
516
|
+
.form
|
517
|
+
.html1
|
518
|
+
.inc.asp
|
519
|
+
.index.html
|
520
|
+
.it
|
521
|
+
.nl
|
522
|
+
.ogg
|
523
|
+
.old.php
|
524
|
+
.old2
|
525
|
+
.opendir
|
526
|
+
.out
|
527
|
+
.pgt
|
528
|
+
.php,
|
529
|
+
.php
|
530
|
+
.po
|
531
|
+
.prt
|
532
|
+
.query
|
533
|
+
.rb
|
534
|
+
.rhtml
|
535
|
+
.ru.html
|
536
|
+
.save
|
537
|
+
.search.php
|
538
|
+
.t
|
539
|
+
.wsdl
|
540
|
+
.0-to1.2.php
|
541
|
+
.0.3
|
542
|
+
.03
|
543
|
+
.18
|
544
|
+
.2.6
|
545
|
+
.3.0
|
546
|
+
.3.4
|
547
|
+
.4.1
|
548
|
+
.6.1
|
549
|
+
.7.2
|
550
|
+
.templates
|
551
|
+
.adp
|
552
|
+
.ajax.php
|
553
|
+
.apsx
|
554
|
+
.asf
|
555
|
+
.bck
|
556
|
+
.bu
|
557
|
+
.calendar
|
558
|
+
.captcha
|
559
|
+
.cart
|
560
|
+
.com.crt
|
561
|
+
.core
|
562
|
+
.dict.php
|
563
|
+
.dot
|
564
|
+
.egov
|
565
|
+
.en.php
|
566
|
+
.eot
|
567
|
+
.errors
|
568
|
+
.f4v
|
569
|
+
.fr.html
|
570
|
+
.git
|
571
|
+
.ht
|
572
|
+
.hta
|
573
|
+
.html.lck
|
574
|
+
.html.printable
|
575
|
+
.ini.sample
|
576
|
+
.lib
|
577
|
+
.lic
|
578
|
+
.map
|
579
|
+
.master.vb
|
580
|
+
.mi
|
581
|
+
.mkdir
|
582
|
+
.o
|
583
|
+
.p7b
|
584
|
+
.pac
|
585
|
+
.parse.errors
|
586
|
+
.pd
|
587
|
+
.pfx
|
588
|
+
.php2
|
589
|
+
.php_files
|
590
|
+
.phtm
|
591
|
+
.png.php
|
592
|
+
.portal
|
593
|
+
.printable
|
594
|
+
.psql
|
595
|
+
.pub
|
596
|
+
.q
|
597
|
+
.ra
|
598
|
+
.reg
|
599
|
+
.restrictor.php
|
600
|
+
.rpm
|
601
|
+
.strpos
|
602
|
+
.tcl
|
603
|
+
.template
|
604
|
+
.tiff
|
605
|
+
.tv
|
606
|
+
.us
|
607
|
+
.user
|
608
|
+
.06
|
609
|
+
.09
|
610
|
+
.1.3
|
611
|
+
.1.5.swf
|
612
|
+
.2.3
|
613
|
+
.25
|
614
|
+
.3.3
|
615
|
+
.4.2
|
616
|
+
.6.5
|
617
|
+
.controls
|
618
|
+
.acgi
|
619
|
+
.alt
|
620
|
+
.array-merge
|
621
|
+
.back
|
622
|
+
.call-user-func-array
|
623
|
+
.cfml
|
624
|
+
.cmd
|
625
|
+
.cocomore.txt
|
626
|
+
.detail
|
627
|
+
.disabled
|
628
|
+
.dist.php
|
629
|
+
.djvu
|
630
|
+
.dta
|
631
|
+
.e
|
632
|
+
.extract
|
633
|
+
.file-put-contents
|
634
|
+
.fpl
|
635
|
+
.framework
|
636
|
+
.fread
|
637
|
+
.htm.lck
|
638
|
+
.inc.js
|
639
|
+
.includes
|
640
|
+
.jp
|
641
|
+
.jpg.html
|
642
|
+
.l
|
643
|
+
.letter
|
644
|
+
.local
|
645
|
+
.num
|
646
|
+
.pem
|
647
|
+
.php.sample
|
648
|
+
.php}
|
649
|
+
.php~
|
650
|
+
.pot
|
651
|
+
.preg-match
|
652
|
+
.process
|
653
|
+
.ps
|
654
|
+
.r
|
655
|
+
.raw
|
656
|
+
.rc
|
657
|
+
.s
|
658
|
+
.search.
|
659
|
+
.server
|
660
|
+
.sis
|
661
|
+
.sql.gz
|
662
|
+
.squery
|
663
|
+
.subscribe
|
664
|
+
.svg
|
665
|
+
.svn
|
666
|
+
.thtml
|
667
|
+
.tpl.html
|
668
|
+
.ua
|
669
|
+
.vcs
|
670
|
+
.xhtm
|
671
|
+
.xml.asp
|
672
|
+
.xpi
|
673
|
+
.0.0
|
674
|
+
.0.4
|
675
|
+
.07
|
676
|
+
.08
|
677
|
+
.10.html
|
678
|
+
.17
|
679
|
+
.2008
|
680
|
+
.2011
|
681
|
+
.22
|
682
|
+
.25.html
|
683
|
+
.2ms2
|
684
|
+
.3.2.min.js
|
685
|
+
.32
|
686
|
+
.33
|
687
|
+
.4.6
|
688
|
+
.5.6
|
689
|
+
.6.0
|
690
|
+
.7.1
|
691
|
+
.91
|
692
|
+
.add
|
693
|
+
.array-rand
|
694
|
+
.asax.cs
|
695
|
+
.asax.resx
|
696
|
+
.ascx.vb
|
697
|
+
.aspx,
|
698
|
+
.aspx.
|
699
|
+
.awm
|
700
|
+
.b
|
701
|
+
.bhtml
|
702
|
+
.bml
|
703
|
+
.ca
|
704
|
+
.cache
|
705
|
+
.cfg.php
|
706
|
+
.cn
|
707
|
+
.cz
|
708
|
+
.de.txt
|
709
|
+
.diff
|
710
|
+
.email
|
711
|
+
.en
|
712
|
+
.error
|
713
|
+
.faces
|
714
|
+
.filesize
|
715
|
+
.functions.php
|
716
|
+
.hml
|
717
|
+
.hqx
|
718
|
+
.html,404
|
719
|
+
.html.php
|
720
|
+
.htmls
|
721
|
+
.htx
|
722
|
+
.i
|
723
|
+
.idq
|
724
|
+
.jpe
|
725
|
+
.js.aspx
|
726
|
+
.js.gz
|
727
|
+
.jspf
|
728
|
+
.load
|
729
|
+
.media
|
730
|
+
.mp2
|
731
|
+
.mspx
|
732
|
+
.mv
|
733
|
+
.mysql
|
734
|
+
.new.php
|
735
|
+
.ocx
|
736
|
+
.oui
|
737
|
+
.outcontrol
|
738
|
+
.pad
|
739
|
+
.pages
|
740
|
+
.pdb
|
741
|
+
.pdf.
|
742
|
+
.pnp
|
743
|
+
.pop_formata_viewer
|
744
|
+
.popup.php
|
745
|
+
.popup.pop_formata_viewer
|
746
|
+
.pvk
|
747
|
+
.restrictor.log
|
748
|
+
.results
|
749
|
+
.run
|
750
|
+
.scripts
|
751
|
+
.sdb
|
752
|
+
.ser
|
753
|
+
.shop
|
754
|
+
.sitemap.xml
|
755
|
+
.smi
|
756
|
+
.start
|
757
|
+
.ste
|
758
|
+
.swf.swf
|
759
|
+
.textsearch
|
760
|
+
.torrent
|
761
|
+
.unsubscribe
|
762
|
+
.v
|
763
|
+
.vbproj.webinfo
|
764
|
+
.wmf
|
765
|
+
.wpd
|
766
|
+
.ws
|
767
|
+
.xpml
|
768
|
+
.y
|
769
|
+
.0.8
|
770
|
+
.0.pdf
|
771
|
+
.001
|
772
|
+
.1-all-languages
|
773
|
+
.1.pdf
|
774
|
+
.11.html
|
775
|
+
.125
|
776
|
+
.20
|
777
|
+
.20.html
|
778
|
+
.2007
|
779
|
+
.26.html
|
780
|
+
.4.7
|
781
|
+
.45
|
782
|
+
.5.4
|
783
|
+
.6.2
|
784
|
+
.6.html
|
785
|
+
.7.0
|
786
|
+
.7.3
|
787
|
+
.7.html
|
788
|
+
.75.html
|
789
|
+
.8.2
|
790
|
+
.8.3
|
791
|
+
.adcode
|
792
|
+
.c.
|
793
|
+
.getmapimage
|
794
|
+
.run.adcode
|
795
|
+
.skins
|
796
|
+
.z
|
797
|
+
.access.login
|
798
|
+
.ajax.asp
|
799
|
+
.app
|
800
|
+
.asd
|
801
|
+
.asm
|
802
|
+
.assets
|
803
|
+
.at
|
804
|
+
.bad
|
805
|
+
.bak2
|
806
|
+
.blog
|
807
|
+
.casino
|
808
|
+
.cc
|
809
|
+
.cdr
|
810
|
+
.changelang.php
|
811
|
+
.children
|
812
|
+
.com,
|
813
|
+
.com-redirect
|
814
|
+
.content
|
815
|
+
.copy
|
816
|
+
.count
|
817
|
+
.cp
|
818
|
+
.csproj.user
|
819
|
+
.custom
|
820
|
+
.dbf
|
821
|
+
.deb
|
822
|
+
.delete
|
823
|
+
.details.php
|
824
|
+
.dic
|
825
|
+
.divx
|
826
|
+
.download
|
827
|
+
.download.php
|
828
|
+
.downloadcirrequirements.pdf
|
829
|
+
.downloadtourkitrequirements.pdf
|
830
|
+
.emailcirrequirements.php
|
831
|
+
.emailtourkitform.php
|
832
|
+
.emailtourkitnotification.php
|
833
|
+
.emailtourkitrequirements.php
|
834
|
+
.epub
|
835
|
+
.err
|
836
|
+
.es
|
837
|
+
.exclude
|
838
|
+
.filemtime
|
839
|
+
.fillpurposes2.php
|
840
|
+
.grp
|
841
|
+
.home
|
842
|
+
.htlm
|
843
|
+
.htm,
|
844
|
+
.html-
|
845
|
+
.image
|
846
|
+
.inc.html
|
847
|
+
.it.html
|
848
|
+
.j
|
849
|
+
.jnlp
|
850
|
+
.js.asp
|
851
|
+
.js2
|
852
|
+
.jspx
|
853
|
+
.lang-en.php
|
854
|
+
.link
|
855
|
+
.listevents
|
856
|
+
.log.0
|
857
|
+
.mbox
|
858
|
+
.mc_id
|
859
|
+
.menu.php
|
860
|
+
.mgi
|
861
|
+
.mod
|
862
|
+
.net.html
|
863
|
+
.news
|
864
|
+
.none
|
865
|
+
.off
|
866
|
+
.p3p
|
867
|
+
.php.htm
|
868
|
+
.php.static
|
869
|
+
.php1
|
870
|
+
.phpp
|
871
|
+
.pop3.php
|
872
|
+
.pop_3d_viewer
|
873
|
+
.popup.pop_3d_viewer
|
874
|
+
.prep
|
875
|
+
.prg
|
876
|
+
.print.html
|
877
|
+
.print.php
|
878
|
+
.product_details
|
879
|
+
.pwd
|
880
|
+
.pyc
|
881
|
+
.red
|
882
|
+
.registration
|
883
|
+
.requirementsfeestable.php
|
884
|
+
.roshani-gunewardene.com
|
885
|
+
.se
|
886
|
+
.sea
|
887
|
+
.sema
|
888
|
+
.session
|
889
|
+
.setup
|
890
|
+
.simplexml-load-file
|
891
|
+
.sitx
|
892
|
+
.smil
|
893
|
+
.srv
|
894
|
+
.swi
|
895
|
+
.swp
|
896
|
+
.sxw
|
897
|
+
.tar.bz2
|
898
|
+
.tem
|
899
|
+
.temp
|
900
|
+
.template.php
|
901
|
+
.top
|
902
|
+
.txt.php
|
903
|
+
.types
|
904
|
+
.unlink
|
905
|
+
.url
|
906
|
+
.userloginpopup.php
|
907
|
+
.visapopup.php
|
908
|
+
.visapopupvalid.php
|
909
|
+
.vspscc
|
910
|
+
.vssscc
|
911
|
+
.w
|
912
|
+
.work
|
913
|
+
.wvx
|
914
|
+
.xspf
|
915
|
+
.-
|
916
|
+
.-110,-maria-lund-45906.-511-gl.php
|
917
|
+
.-tillagg-order-85497.php
|
918
|
+
.0-rc1
|
919
|
+
.0.10
|
920
|
+
.0.11
|
921
|
+
.0.328.1.php
|
922
|
+
.0.329.1.php
|
923
|
+
.0.330.1.php
|
924
|
+
.0.6
|
925
|
+
.0.7
|
926
|
+
.0.806.1.php
|
927
|
+
.0.xml
|
928
|
+
.0.zip
|
929
|
+
.000
|
930
|
+
.002
|
931
|
+
.02
|
932
|
+
.030-i486
|
933
|
+
.05
|
934
|
+
.07.html
|
935
|
+
.1-3.2.php
|
936
|
+
.1-bin-linux-2.030-i486
|
937
|
+
.1-pt_br
|
938
|
+
.1.5
|
939
|
+
.1.8
|
940
|
+
.1.htm
|
941
|
+
.10.10
|
942
|
+
.11.2010
|
943
|
+
.12.html
|
944
|
+
.13.html
|
945
|
+
.131
|
946
|
+
.132
|
947
|
+
.15.html
|
948
|
+
.16.html
|
949
|
+
.2-rc1
|
950
|
+
.2.5
|
951
|
+
.2.8
|
952
|
+
.2.js
|
953
|
+
.2.pdf
|
954
|
+
.2004
|
955
|
+
.2006
|
956
|
+
.2009
|
957
|
+
.2010
|
958
|
+
.21.html
|
959
|
+
.23.html
|
960
|
+
.26
|
961
|
+
.27
|
962
|
+
.27.html
|
963
|
+
.29.html
|
964
|
+
.31
|
965
|
+
.35
|
966
|
+
.4.2.min.js
|
967
|
+
.4.4
|
968
|
+
.45.html
|
969
|
+
.5.1-pt_br
|
970
|
+
.5.2
|
971
|
+
.5.7
|
972
|
+
.5.7-pl1
|
973
|
+
.6-all-languages
|
974
|
+
.6.14
|
975
|
+
.6.16
|
976
|
+
.6.18
|
977
|
+
.6.2-rc1
|
978
|
+
.62.html
|
979
|
+
.63.html
|
980
|
+
.64
|
981
|
+
.65
|
982
|
+
.66
|
983
|
+
.7-pl1
|
984
|
+
.762
|
985
|
+
.8.2.4
|
986
|
+
.8.5
|
987
|
+
.8.7
|
988
|
+
.80.html
|
989
|
+
.808
|
990
|
+
.85
|
991
|
+
.9.1
|
992
|
+
.90
|
993
|
+
.92
|
994
|
+
.972
|
995
|
+
.98.html
|
996
|
+
.e.
|
997
|
+
.engineer
|
998
|
+
.log.new
|
999
|
+
.maximize
|
1000
|
+
.ndm
|
1001
|
+
.sim
|
1002
|
+
.services
|
1003
|
+
.[file
|
1004
|
+
.accdb
|
1005
|
+
.act
|
1006
|
+
.actions.php
|
1007
|
+
.admin.php
|
1008
|
+
.ads
|
1009
|
+
.alhtm
|
1010
|
+
.all
|
1011
|
+
.ani
|
1012
|
+
.apf
|
1013
|
+
.apj
|
1014
|
+
.ar
|
1015
|
+
.aral-design.com
|
1016
|
+
.aral-design.de
|
1017
|
+
.arc
|
1018
|
+
.array-key-exists
|
1019
|
+
.asp.old
|
1020
|
+
.asp1
|
1021
|
+
.aspg
|
1022
|
+
.bfhtm
|
1023
|
+
.biminifinder
|
1024
|
+
.br
|
1025
|
+
.browser
|
1026
|
+
.build
|
1027
|
+
.buscar
|
1028
|
+
.categorias
|
1029
|
+
.categories
|
1030
|
+
.ccs
|
1031
|
+
.ch
|
1032
|
+
.cl
|
1033
|
+
.click.php
|
1034
|
+
.cls
|
1035
|
+
.cls.php
|
1036
|
+
.cms.ad.adserver.cls
|
1037
|
+
.com-tov.html
|
1038
|
+
.com.ar
|
1039
|
+
.com.br
|
1040
|
+
.com.htm
|
1041
|
+
.com.old
|
1042
|
+
.common
|
1043
|
+
.conf.php
|
1044
|
+
.contact.php
|
1045
|
+
.control
|
1046
|
+
.core.php
|
1047
|
+
.counter.php
|
1048
|
+
.coverfinder
|
1049
|
+
.create.php
|
1050
|
+
.cs2
|
1051
|
+
.d2w
|
1052
|
+
.dbm
|
1053
|
+
.dct
|
1054
|
+
.dmb
|
1055
|
+
.doc.doc
|
1056
|
+
.dxf
|
1057
|
+
.ed
|
1058
|
+
.email.shtml
|
1059
|
+
.en.htm
|
1060
|
+
.engine
|
1061
|
+
.env
|
1062
|
+
.error-log
|
1063
|
+
.esp
|
1064
|
+
.ex
|
1065
|
+
.exc
|
1066
|
+
.exe,
|
1067
|
+
.ext
|
1068
|
+
.external
|
1069
|
+
.ficheros
|
1070
|
+
.fichiers
|
1071
|
+
.flush
|
1072
|
+
.fmt
|
1073
|
+
.fn
|
1074
|
+
.footer
|
1075
|
+
.form_jhtml
|
1076
|
+
.friend
|
1077
|
+
.g.
|
1078
|
+
.geo.xml
|
1079
|
+
.ghtml
|
1080
|
+
.google.com
|
1081
|
+
.gov
|
1082
|
+
.gpg
|
1083
|
+
.hl
|
1084
|
+
.href
|
1085
|
+
.htm.d
|
1086
|
+
.htm.html
|
1087
|
+
.htm.old
|
1088
|
+
.htm2
|
1089
|
+
.html.orig
|
1090
|
+
.html.sav
|
1091
|
+
.html[
|
1092
|
+
.html]
|
1093
|
+
.html_
|
1094
|
+
.html_files
|
1095
|
+
.htmlpar
|
1096
|
+
.htmlprint
|
1097
|
+
.html}
|
1098
|
+
.htm~
|
1099
|
+
.hts
|
1100
|
+
.hu
|
1101
|
+
.hwp
|
1102
|
+
.ibf
|
1103
|
+
.il
|
1104
|
+
.image.php
|
1105
|
+
.imagecreatetruecolor
|
1106
|
+
.imagejpeg
|
1107
|
+
.iml
|
1108
|
+
.imprimer
|
1109
|
+
.imprimer-cadre
|
1110
|
+
.imprimir
|
1111
|
+
.imprimir-marco
|
1112
|
+
.info.html
|
1113
|
+
.info.php
|
1114
|
+
.ini.bak
|
1115
|
+
.ini.default
|
1116
|
+
.inl
|
1117
|
+
.inv
|
1118
|
+
.join
|
1119
|
+
.jpg.jpg
|
1120
|
+
.jps
|
1121
|
+
.key
|
1122
|
+
.kit
|
1123
|
+
.lang
|
1124
|
+
.lignee
|
1125
|
+
.ltr
|
1126
|
+
.lzh
|
1127
|
+
.m4a
|
1128
|
+
.mail
|
1129
|
+
.manager
|
1130
|
+
.md5
|
1131
|
+
.met
|
1132
|
+
.metadesc
|
1133
|
+
.metakeys
|
1134
|
+
.mht
|
1135
|
+
.min
|
1136
|
+
.mld
|
1137
|
+
.mobi
|
1138
|
+
.mobile
|
1139
|
+
.mv4
|
1140
|
+
.n
|
1141
|
+
.net-tov.html
|
1142
|
+
.nfo
|
1143
|
+
.nikon
|
1144
|
+
.nodos
|
1145
|
+
.nxg
|
1146
|
+
.obyx
|
1147
|
+
.ods
|
1148
|
+
.old.2
|
1149
|
+
.old.asp
|
1150
|
+
.old.html
|
1151
|
+
.open
|
1152
|
+
.opml.config
|
1153
|
+
.ord
|
1154
|
+
.org.zip
|
1155
|
+
.ori
|
1156
|
+
.partfinder
|
1157
|
+
.pho
|
1158
|
+
.php-
|
1159
|
+
.phpl
|
1160
|
+
.phpx
|
1161
|
+
.pix
|
1162
|
+
.pls
|
1163
|
+
.prc
|
1164
|
+
.pre
|
1165
|
+
.prhtm
|
1166
|
+
.print-frame
|
1167
|
+
.print.
|
1168
|
+
.print.shtml
|
1169
|
+
.printer
|
1170
|
+
.properties
|
1171
|
+
.propfinder
|
1172
|
+
.pvx
|
1173
|
+
.php
|
1174
|
+
.recherche
|
1175
|
+
.redirect
|
1176
|
+
.req
|
1177
|
+
.roshani-gunewardene.net
|
1178
|
+
.roshani-m-gunewardene.com
|
1179
|
+
.safe
|
1180
|
+
.sbk
|
1181
|
+
.se.php
|
1182
|
+
.search.asp
|
1183
|
+
.sec
|
1184
|
+
.seo
|
1185
|
+
.serv
|
1186
|
+
.server.php
|
1187
|
+
.servlet
|
1188
|
+
.settings
|
1189
|
+
.sf
|
1190
|
+
.shopping_return.php
|
1191
|
+
.shopping_return_adsense.php
|
1192
|
+
.show
|
1193
|
+
.sht
|
1194
|
+
.so
|
1195
|
+
.sph
|
1196
|
+
.split
|
1197
|
+
.sso
|
1198
|
+
.stats.php
|
1199
|
+
.story
|
1200
|
+
.swd
|
1201
|
+
.swf.html
|
1202
|
+
.sys
|
1203
|
+
.tex
|
1204
|
+
.tga
|
1205
|
+
.thm
|
1206
|
+
.tlp
|
1207
|
+
.tml
|
1208
|
+
.tmp.php
|
1209
|
+
.touch
|
1210
|
+
.tsv
|
1211
|
+
.txt.
|
1212
|
+
.txt.html
|
1213
|
+
.ug
|
1214
|
+
.unternehmen
|
1215
|
+
.utf8
|
1216
|
+
.vbproj.vspscc
|
1217
|
+
.vsprintf
|
1218
|
+
.vstemplate
|
1219
|
+
.vtl
|
1220
|
+
.wbmp
|
1221
|
+
.webc
|
1222
|
+
.webproj
|
1223
|
+
.wihtm
|
1224
|
+
.wp
|
1225
|
+
.wps
|
1226
|
+
.wri
|
1227
|
+
.wsc
|
1228
|
+
.www
|
1229
|
+
.xsp
|
1230
|
+
.xsql
|
1231
|
+
.zip,
|
1232
|
+
.zml
|
1233
|
+
.ztml
|