-
-
Notifications
You must be signed in to change notification settings - Fork 469
/
onelistforallmicro.txt
26470 lines (26469 loc) · 383 KB
/
onelistforallmicro.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1w2w_end2
admin2007
cpanel.php
ettercap
model.sql
ff/css/cssy.css
addcategory.sql
luso.php
db-central
autoload.sh
nant
amule
sized
arj
accounts/clientsign_up
typo3conf/ext/static_info_tables/ext_tables_static+adt-orig.sql
.db.xml
elements
read%20me.txt
wp-includes/css/css.php
basic.tf
sys.php
timegate
api/v3/playground
.github/workflows/build.yml
mysql.log
plugins/system/debug/debug.xml
dbdump.7z
uploaded
config.inc.php.2
old.htaccess
global.inc.php.bak
readme.php
ganglia/
moinmail
imoel
vincent-leclercq
proxy/pac/proxy.pac
mutuba.php
offene
touch
2006
config/database.yml~
logout.aspx
dumb
app/config/packages/dev/web_profiler.xml
wp-login.js
v2/members
sites
krupinski
sql/phpmyadmin2/index.php
.fixtures.yml
actuator/heapdump
archimede
kj2018/config.js
.rbenv-version
inl
wp-content/uploads/wp-cl-plugin.php
blogs
mw-config
incoming
moadmin
bitrix/php_interface/dbconn.1
general.php
local2prod.sh
jkmanager-auth
sierra
isi
occ/item
eticket
choco
micro
index.php/user/password
config/packages/dev/monolog.yml
tests/default_settings/v9.0/.env
admin_index.tpl
ibill
contenite
groupexpansion
WEB-INF/jetty-web.xml
jeuce
ab/docs
api/.git/config
greenhouseejb/services/greenhousefront/wsdl
dat.sql
portal/images/MyVue/MyVueHelp.png
crystal
WEB-INF/config/web-core.xml
.json
flexbb
web-inf/spring-dispatcher-servlet.xml
smartforce
web-inf/jax-ws-catalog.xml
errorlog
admin_admin.asp
meta.xml
dimension
mxchange
.next
pi.php5
anaconda/.env
web-inf/restlet-servlet.xml
drepper
SystemOut.log
tpvgames
wp-content/plugins/master-slider/public/assets/css/masterslider.main.css?ver=2.9.8
lawrence
manage.inc
qa/.git/config
templates
postinfo.html
phnntp
authadmin.htm
*
a2e2gp2r2/x.jsp
.idea/dictionaries
aw_wifi.sql
supervise/login.aspx
api/device/service
hinton
blocks.php
.subversion
get.sh
jaxbelement
admin_author.php
counterblockd/.env
wordpress.zip
willem.sql
.wp-config.php.swn
bea_wls_internal/httpclntsend
website_sale_stock_product_availability.xml
admin/runtime/tree
config.inc.php~
haserl
ilmscli_sync.log.1
wp-content/plugins/adminer/inc/editor/index.php
..;/manager/html
local/.git/index
admin_sync.php
.idea/runConfigurations.xml
leksbot
guardfile
easyblog/entry/uncategorized
.target
addadmin.php
admin/southidceditor/dialog/dialog.js
mailreader
webalizer.php
admin_modules.php
signin
users/.pac
windows/tests/9.2.x/.env
payment.log
WEB-INF/spring-configuration/filters.xml
js/ajax_x.js
adminer/.env
e92_manual.pdf
peregrine
.projections.json
onlinetools
liece
test-patch.sh
common.js
txmla
config/settings.inc
appinstallstatusservlet
bak.txt.gz
tmp/sessions
nuke
sslmgr
jackknife
manage.py
examples/index.html
sql.tgz
supervise/login.html
etc.1.json
cms/wp-includes/wlwmanifest.xml
cvs/root
admin_area/login.aspx
content../.git/config
panel.rar
aspect
addrbook.inc
wp-includes/modules/wp-login.php
hedwig.cgi
includes/swfupload/swfupload.swf
plugins
api/last
dirty
admin/workareaheader.jsp
cs.php
admin/manage/admin.asp
money
old_phpinfo.php
.dbshell
cren
services/graylog/.env
iplogger
test.sql.tar.gz
yao.php
autoconfig.old
stockquote/services/xmltoday-delayed-quotes/wsdl
kj/kaijiang/config.js
flexdropdown.js
administrator.py
axis2
config/packages/dev/debug.yml
backups/dump.sql
docs/html/admin/index.html
buluya.php
export.sh
docs/install.txt
inhouse
sitemap_1.xml.gz
.github/workflows/ci-push.yml
quadcomm
lyncweb
lynuxworks
actuator/trace
sanity.sh
fred
.babelrc.cjs
mack
testdata.sql
.buildkite/pipeline.yaml
desksoft
credentials.xml
.rebar3
learn/cubemail/dump.php
account_history
web.sql.bz2
wp-config.php.inc
smarts
WEB-INF/jrun-web.xml
supportsoft
db_config.php.bak
.config/yarn/global/yarn.lock
techniques/servlets/index.html
symbian
club-nuke
adapterframework/version/version.jsp
examples/with-relay-modern/.env
archive.tar.gz
config.inc.php_old2017
webservice/autocomplete.amx
wp-admins.php
farm
ids/admin/login.jsp
log/mobile.log
wp-config.sublime-workspace
.well-known/keybase.txt
ctools.drush.sh
admin/release
adminarea/login.php
docs/html/admin/ch03s07.html
m/.git/config
customer_login
testtbl.sql
test/bdd/fixtures/did-rest/.env
data_16.sql
guestbox
db.sql.bz2
.project
.tar.bz2
montgomery
.semaphore/semaphore.yaml
.jslintrc
g
dialog
abc776.php
web-labs
adming
almondsoft
duplicate_finder.sql
admin_view.php
apm
goold.sql
wvdial.conf
wp-config.php_old2015
grimm
jsonfromjaxb/application.wadl
1234.php
pdflib
logs_backup
spaminator
plus/heightsearch.php
member.7z
2015.tar.bz2
planetdns
kaphotoservice
evolutionx
northern
consulting
ckfinder/install.txt
getmail
e-post
bitrix/php_interface/dbconn.old
WEB-INF/classes/hibernate.cfg.xml
servlet/dmsdump
dphp-template.properties
searchreplacedb2cli.php
uber/phpMemcachedAdmin
admin-footer.php
bitrix/php_interface/dbconn.php.dist
greymatter
secure1.php
login_user.html
admingen
settings/profile
etcd-events.log
mount.sh
healthcheck.php
assets/logs/fullz.txt
adv.php
api/admin/user
api../server-status
estoque_sqlite.sql
ractive
CHANGELOG.log
WEB-INF/logback.xml
.well-known/ni
autonomous
metamail
ti
dong.php
user.asp
mindjet
app/config/packages/html_sanitizer.yaml
admin-pictures
app_config/connectionstrings.config
print_logs.sh
admin/adminlogin.cgi
room/script/face.js
migrate.sh
test.txt
cgi-bin/login.aspx
classpath
engine/classes/swfupload//swfupload.swf
scrum.zip
app/config/services.php
administrator/login.php
8.txt
a1a013190e45c263c029ae5e27edcdb7.js
site/common.xml
indexa.php
eims3/assets/bundle/commons.js
_all_dbs
hello.sh
ol_test.sql
album
aspbite
.fontconfig
nomura
monolith
.transients_purge.log
templates/jsn_glass_pro/ext/hikashop/jsn_ext_hikashop.css
config/routes.yml
validateuser.sql
letmein.asp
addon.php
app/composer.json
extent
damp.sql
frm_settings.php
caf
database.rar
cron.sh
admin/heapdump
mdweb
dev-build-and-up.sh
sambar
update-generated-runtime.sh
wp-config.bac
.svn/pristine
.config/filezilla/filezilla.xml
1.sql
soft
build/buildinfo.properties
cmdjsp.jsp
crash.php
data.tsv
global-protect/login.esp
memberadmin.cfm
phpmyadmin-2.10.0
dev/.git/config
seoadmin
swagger.sh
adminitem.php
cancel
cmsadmin.asp
unpublish.sh
admin_links
adview
dcadmin.cgi
core/persistence/.env
.env.travis
update-generated-swagger-docs.sh
phpnyadmin/index.php
play/272/video.m3u8
axis
.hsdoc
actuate
admingh
metadata
phpmyadmin.old/index.php
cryo_project/.env
web-inf/rexip-web.xml
tech-source
gulp-azure-sync-assets.js
petstore
login.py
var/lib/cloud/instance/vendor-data.txt
www.xz
myserver
global.asax.bak
psol/psolmanager.htm
test/bdd/fixtures/vc-rest/.env
build-all.sh
dhcp.sh
.idea/caches/build_file_checksums.ser
cao/admincenter/index.index.do
adminmassmail.php
adminb
pagebuilder.backup
grmgheartbeat
META-INF/ironjacamar.xml
brt
iii
train.sh
_css
backoffice.php
opcache-status/opcache.php
wasd
basic_function_with_ariables.sql
war
jaxb
config/bundles.php
admin-op
.catalog
login.php3
mysql.sql.tar.bzip2
everyone
test.sqlite
muller
gencerts.sh
logfiles
xi.php
wp-config.original
bagger
tmui/login.jsp/..;/tmui/locallb/workspace/fileread.jsp?filename=/etc/f5
the
expandable
.appledesktop
rst.php
configurations.xml
fastraq
always-as-root.sh
.idea/misc.xml
goat
public/storage
pre-push-hook.sh
qboard
account/register
elron
dbsql/scripts/setup.php
.hsenv
customer
mysql.tar.gz
warehouse
platz_login
adm/style/admin.css
admin_media
python.sh
c/portal/login
WEB-INF/struts-config.xml
.jazzy.yaml
adminpowers_.sql
wp-config.php.original
docker-compose-dev.yml
incutio
bodington
nextcloud/index.php/login
cluster
actuator/dump
api/jsonws/invoke
.env.old
config/routes/dev/framework.xml
Vagrantfile
usage/usage
.buckconfig
config.php.bkp
admin_adduser.php
ca.pem
www/vendor/phpunit/phpunit/src/util/php/eval-stdin.php
htaccess_for_page_not_found_redirects.htaccess
web.config.data
admin_tdet.php
config/solano.yml
jiankong.htm
scriptsez
siteserver
erviceaccount.crt
master/portquotes_new/admin.log
_mem_bin/formslogin
account.php
c-h.v2.php
seunghyun
mgmt/tm/sys/management
green.zip
sypex.php
proxy.pac.bak
includes/fckeditor/editor/filemanager/browser/default/connectors/asp/connector.asp
vn
bigwebmaster
sql/sqladmin
revision.txt
_logs/error_log
wp-config.php=
shadows
phppma/index.php
public/500.html
getuserinfo.sql
max-templates/classic/styles/app.css
admin.ex
adminpanel.js
web-inf/liferay-display.xml
blacklist.conf
dxfscope
adovbs.inc
uocnguyen
chung-kie
config/db.inc
stake
admin_bedit
temporal
alan
a-key.pem
greasemonkey
panel-administracion/login.html
kodeit
etcd-apiserver-server.key
manage/heapdump
astats
alap
.semver
acm
trubetskoy
home.feed.xml
http_access.log
torrenttrader
nelogic
bin.1.xml
app/etc/local.xml.localRemote
phpmy/index.php
wojtczuk
.vscode/ftp-sync.json
api/user/ismustmobile
.php-version
g-shout
ycc.php
backoffice/v1/ui
_db_updates
iu
conf/context.xml
db_backup.7z
foing
config.bin
configuration.xml
root
pages/account/company_userinfo.jsp
.hgsubstate
eldav
super-admin
actuator/shutdown
ipc$
formmail-clone
config/parameters_test.yaml
stag
notifications
box
requested.html
var/log/prod.log
libmikmod
multimedia
phpcodegenie
convert_infopages_to_ezpages.sql
docebolms
_wpeprivate
chatty
palm
yamaguchi
admin_cron.tpl
pages/forgotpassword/forgotpassword.jsp
back_office.php
upload.aspx
calamp
.bash_history.php
seagate
techno
sysadmin.htm
newspost
simpleproxy
glt
config/packages/validator.yaml
yaml.log
tttadmin
formfields
graphite
gratisoft
vamp
doc
debug.rar
ueditor/php/getRemoteImage.php
asmon
servlet/aphtpassword
qazwsxedc
iNotes/Forms9.nsf
api.goover.city/release/composer/vendor/phpunit/phpunit/src/util/php
wp-json/wp/v2/users
xy_%e5%bc%80%e5%a5%96%e5%99%a8/config.js
admindede/login.php
ectools
cimjobpostadmin
uddigui
web-inf/conf/editors.properties
config/environments/development.rb
phpmyadmin_/scripts/setup.php
asynchbeans/docs
tochuc
accessplatform/auth/clientscripts
executed.sh
admin_batch.asp
smiley
wp-config_good
admin_assist3
thuvien
.idea/naveditor.xml
install.mysql.txt
v2/graphiql.css
nunit-x86.exe.config
jersey-autowired
checkkconfigsymbols.sh
admin.sql.tar.gz
.codacy.yml
admin_data
cron.php.bak
cf_upload.cfm
xoops_version.php
telligent
adminarea/login.html
.nuget/nuget/nuget.config
tools
marc
accounts.aspx
phpmyadmin-2.6.4
mysql.sh
babel-plugin-dotenv/test/fixtures/override-value/.env
managers
myadmin
beenthere
2015.zip
!.htaccess
graphql/v1
zebra.conf
v3/graphiql.php
neomodus
audio
config/packages/validator.xml
v3/graphiql.min.css
ecombase/paymentinfo.inc.jsp
v1.bak
build_tarball.sh
mysql/pma
phpix
auditing
estoque_my.sql
news-admin
v2/graphiql
web.sql.tar.bzip2
for
lib/flex/uploader/.settings
.gitlab-ci.off.yml
claudio
netsarang
admin/admin_login.cfm
.travis.yml.swp
conn.asp
title
pacific
bacula
phpma/index.php
lcrabapapi
app/config/packages/cache.yml
h.txt
heroes_game.sql
.w3m
xt.sql
stevens
url_1.sql
mkits.sh
web/var/www/public_html/wp-config.php
controlpanel.cgi
template/js/comm/confrim.js
stalker_portal/c/version.js
wp1/wp-login.php
view-source
settings.php.save
eryq
phpmyadminold/index.php
sean.php
bb-admin/login.asp
dg
awsecommerceservice.wsdl
list-arch.sh
dadaimc
nl
logou.php
timer/1s
crash.log
adminitems.aspx
portailphp
signin.jsp
admin/includes/configure.php~
plus
images_upload.php
kyfrm_utf8.sql
users.sql.tgz
sniffit
.credentials
heartphp.sql
adminshout
lanyecn.php
webdata
cropimage
db/webdb
site.sql.gz
kanosue
spaw/dialogs/dialog.php
jobmanager/logs
c-news
admin_forums
adminarea/index.js
producetype.sql
wp-config.php-backup
adminmember.php
phpsimplicity
xiaoyu.php
administrator/login.html
admin_neu
logon/LogonPoint/custom.html
computer
app/member/show/json/baseball.php?leaguename=1
maxwebportal
admin.sql
home.sql.gz
index.php/login
d/.env
update.php
sql/webadmin
angel.php
var/cache
ansilove
thumb
changelog.txt
pdftohtml
setup2005.sql
php-coolfile
smoorenburg
techonologies
version.php
config/backofficetours/getting-started.json
apiserver.key
admin/config.json
ecmsmod.php
website.zip
flask_test_uploads/.env
.faultreadkernel.log
web-inf/spring-configuration/filters.xml
juniper
admin_top
arbortex
rails/info
acweb
mysql/mysqlmanager
graphql/graphql
app/controllers/application_controller.rb
forum/index.php
wp-config.php.csproj
fckeditor.cfm
option.inc
byte/400
laffer
rlcqq
john
teleadmin
industries
packagesdata_zh_tw_utf-8.sql
madmin
backup/wordpress.sql
gadu-gadu
zram.sh
asksam
_async/asyncresponseservicesoap12https
logo.inc
relogin.asp
config/db.php
mesync/httpgrmgtest.html
.bash_history
.php_cs
dirb_random.cgi
.sensiolabs.yml
stub-status
tmp/error.log
config/routes/dev/web_profiler.yaml
cc-log.txt
confluence/spaces/importmbox.action
javascript/.env
000000000000
epnadmin
siteadmin/login.cgi
module/tinymce
ppmi
invoker/JMXInvokerServlet
config-build.sh
maxdev
.config/pip/pip.conf
dispatch.fcgi
logs/errors.log
padmin
wordpress.sql.tar.gz
inquiries/new
.github/workflows/blank.yml
threadrate.php
api/v1/status/metadata
app/config/packages/prod/doctrine.yaml
api/v1/swagger
queryhit.htm
includes/batch.inc
siteadmin/login.cfm
secring.bak
loki
overview
schulze
demo
spamlog.log
setting
_web_inf
sigma
reamday
neoboard
adminfolder
sitemap1.xml.gz
tsweb/default.htm
whmcs
accounts/login.php
cgi-bin/nagios3/status.cgi
v3/explorer
zabbix/zabbix.php
members.py
nwp-content/plugins/disqus-comment-system/disqus.php
cron_sku.log
config/packages/test/monolog.php
policy
geheimnis
.idea/jslibrarymappings.xml
robomongo.json
ifusion
custom
kitchen.log
build/reference/web-api/explore
e2e/.env
admin_sigimage
pkg
.templates
webdav/servlet/webdav
trans
qql
forums.bak
phpmyforum
dbdump.sql.tar
access.html
web/robots.txt
agnitum
var/lib/phpmyadmin/config.inc.php
pad
release_notes.txt
.idea
invocactf.php
jitterbug
contens
admine
yonetici
nettica
b-net
super_login.htm
planitia
website.sql.tar.gz
perl-reverse-shell.pl
wp-admin/admin.php
passwords
api/v2
page_admin.php
count_lines.pl
sysklogd
config/application.ini
qdig
inflections.rb
contentserv
schudar
shopadmin1
fileadmin.aspx
apiserver.pem
integrator.js
files.rar
babel-plugin-dotenv/test/fixtures/dev-env/.env
virtual
bigworld.sql
tekno.portal
typo3/phpmyadmin
Cgishell.pl
api/content_bottom
mailman/listinfo
antelope
customavatars
spec/dummy/config/secrets.yml
site.tar.bz2
symbol
aux.aspx
pegasi
.perltidyrc
backup.sql.zip
.well-known/uma2-configuration
.thunderbird
.rvmrc
.wfuzz
tradesoft
api/action
abcd1234
invoker/readonly/jmxinvokerservlet
adobedocumentservices/config?wsdl
2003
tarantella
symphony/apps/frontend/config/databases.yml
.sh_history
tiki/doc/stable.version
sql/dump.sql
auth/realms/master/.well-known/openid-configuration
site.old
umbraco/assets
before_script.sh
wp-config.php_old2004
demo.rar
tftpboot
phproxy
sapse/startsld
old.htpasswd
map.inc
joomla.7z
fabric.properties
configuration.swp
adminXP
.idea/mongosettings.xml
faq
backups.inc
bitrix/php_interface/dbconn.php
cfg/y000000000000.cfg
jarle
layton
admin/login
v3/graphql-explorer
.npm
wp-config.php_1
phpmyadmin2017/index.php
sysindex.config
colog.php
cgi-bin/login.php
yonetici.php
lbc.log
model.py
.exe
topcmm
fileopen
.capistrano/metrics
leae.sql
.babelrc.js
build-iphoneos
orientdb-client/.env
test_weekofyear.sh
ghisler
p4db
eskimo"
index.js
debug.tpl.svn-base
api/v2.0/users
bitrix/php_interface/dbconn.php2
app/controllers
solucija
kaffeine
phpmyadmin2020
jamit