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