-
-
Notifications
You must be signed in to change notification settings - Fork 481
/
Copy pathonelistforallmicro.txt
28529 lines (28527 loc) · 411 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
test/bdd/fixtures/did-rest/.env
sploit
_scripts
webmaster.php
login_handler.php
login.srf
modelsearch/admin.js
phpMyAdmin
qql
www-data/.env
cardea/backend/.env
full
adm/admloginuser.cgi
.zshrc
tibco
mailscanner
logs.sh
var/log/old
pixel
shopadmin1
bowes
occ/v2/d2OzBcy
wso2.php
uninst.sql
config/user.xml
.rbtp
4.php
rss.xml
country.sql
pgsql_db_install.sql
phpslash
mit
figwheel_server.log
mkimage-arch.sh
.fishsrv.pl
web.config-
benjamin
debug/schemaz
fastlink
gxine
valgrind.sh
backup_0.sql.bz2
fcadmin
aspdotnetstorefront
examples/servlets/servlet/cookieexample
1w2w_end2
.elixir_ls
.csv
e-admin
_privados
engine/classes/swfupload//swfupload_f9.swf
m.php
jobadmin
~httpd
path_implies_body/100a1_end
api/v1/playground
blojsom
gelinas
old.zip
api/package_search/v4/documentation
pc/lang/index.html
classic.jsonp
scansoft
charlton
shop.old
company.web.api.dll
phpRedisAdmin
htdocs/.htaccess
meijianxue.php
point
~logs
solr/admin/info/system?wt=json
popup
proxy/pac
ccleague
views
wsman
manager.asp
file_upload.asp
error.html
web-inf/spring-config/application-context.xml
libs/.env
.pwd
dms/vvx500/000000000000.cfg
api/save_enabled
login/administrator
nsw/
export.php
wp-config.phps
caches
.env.config
index.jsp
demo-analogy.sh
cauhinh
runfile.exe.config
properties
cvv2
modules/admin
hebditch
guanli
web-console/sysproperties.jsp
phpbb-es
proftpdpasswd
phpMyAdmin-3.0.0/
ecartis
socket
.htaccessold2
e-board
mkuboot.sh
conexware
Orion/Login.aspx
test2
update-codegen.sh
libris
page.php?page_id=11
bitrix/.settings.php
config/packages/doctrine_migrations.yaml
flagship
static/data/gamedatas.js
procd.sh
upload_fck.pl
meeting/
phpgedview
admin-op
generate-object-position-svg-tests.sh
manager/status/all
config/db.inc
adminED
status/..;
gnofract
import.sql
webboa
project.lock.json
plugins/tinymce
webservice
bitvise
app.zip
sr_central
admin_save.asp
advsearch
comment-admin.php
test/fcgi/test.fcgi
llc
cuc
.sass-cache
hackl
silverplatter
picasa.ini
support.php
truyen
WEB-INF/geronimo-web.xml
admin-old
.sh
scriptsez
admin-authz.xml
public/home/js/fukuang.js
editor/FCKeditor
d.txt
.buildpath
_LPHPMYADMIN/
statusz
txnmall.sh
perf-archive.sh
macrovision
netadmin.jsp
txt
adminlicense
admin/manage.asp
plus/sitemap.html
api/cask/graphql-playground
.rubocop.yml
wp-config.php.java
xh.php
localsettings.php.swp
editor-4.7.0-en.php
admin_prune.php
admin/webadmin.php
php_error_log
editor-4.6.1.php
registrar
webdav.password
pbmadmin
msadc/samples/selector/showcode
moderator/admin.aspx
quadcomm
sldstart/secure
loginsuper.asp
dbadmin.tar.bz2
iplanet
1admin
reportserver
p-news
maxthon
admin-antigo
bb-admin/admin.php
scriptsolutions
axoverzicht
bitrix/php_interface/dbconn.php.bak
admin/auth.inc
_admin.php
admin-odkazy
admin/admin_login.asp
admin/logs/error_log
WebReport/ReportServer
test.chm
multi
iopus
floaw.php
config.inc.php.php-bak
cmsadmin
ccc.php
boatnet.sql
cylant
v7
cap.js?version=82908
adminexec.php
utopia
fuckyou
kj1123/config.js
health
assets/application.css
wp-config_backup
.xml.old
config/packages/prod/routing.php
hello.sh
wp-config.org
applicationprofilesample/docs
cgi-admin
install.asp
dynfx
wp-content/.env
logon/LogonPoint/index.html
kubernetes.tf
cron.sh
newattachment.php
admin.py
js../.git/config
apidocs
evidian
vb.php
alcatel
_layouts/settings.htm
dom.php
fck_about.html
dump1.sql
firewall
papaya
sawbridge
WEB-INF/config/webflow-config.xml
000000000000.cfg
helloworld
!images
nuxeo/login.jsp/pwn${31333333330+7}.xhtml
remote
admin../admin
terminal
2022-backup.zip
vod_installer/.env
tadmin
wp-config.aws
root.dat
plugins/sfswfuploadplugin/web/sfswfuploadplugin/swf/swfupload.swf
kcfinder
verify-cli-conventions.sh
php/dev/
inc/mysql.php
synaesthesia
remote/login
kke
spellchecker.cfm
userlogin.php
403.jsp
way
adminsite/
db/index.php
foxrum
swagger/ui
demo/wp-includes/wlwmanifest.xml
ppmi
admin/login.html
oauth/token
nodate
checklogin.html
.src
admin/admin-login.html
tmui/login.jsp/..;/tmui/locallb/workspace/fileread.jsp?filename=/etc/f5
pre-commit.sh
apis/ceph.rook.io/v1/namespaces/default/clusters/my-cluster
apache/logs/error_log
/api/swagger-ui
farsi
var/lib/cloud/instance/cloud-config.txt
vpop3d
sites/all/themes/readme.txt
tool/view/phpinfo.view.php
tests
session.jsp
editors
styles/.env
phpfm-1.6.1/
filemanager
var.1.json
.capistrano/metrics
.git.json
learn/ruubikcms/ruubikcms/tiny_mce/plugins/tinybrowser/error.log
2001
aaa/app/kjapi/controller/caipiaotimescontroller.class.php
_proxy
var/sessions
backups/dbdump.sql
WEB-INF/spring-config/management-config.xml
appbase/accessibilitymessages.inc.jsp
fcgi-bin/echo
common.js
sysinfo
_vti_bin/Authentication.asmx?op=Mode
humans.txt
apps
web.release.confiп
cdn-cgi/trace
msql/
cccsoftware
pages/header/bottom.jsp
bannerwheel
jobmanager
tonic
.idea0
123.txt
modules.order
tmp/upload.php
wp-content/backups/mysql.sql
grems-api/.env
ssleay
packagesdata.sql
kruyt
mono
back_office.php
portal/favicon.ico
ni-conf.json
.src/server.js
.s3.yaml
und
divx
sql.inc
soapdocs
accessibility
application/logs/access.log
qiaso.sql
config/imageprocessor/cache.config
web.config.zip
2017.tar.gz
cnet
deny
docker/examples/compose/.env
public/wchat/css/index.css
sim
ultrix
zp
profile.sql
illumine
resources/config/services.yml
prod2local.sh
2ndex.php
dirigent
test/unit/.gitkeep
webspheresamples/yourco/main.html
forum.tar.gz
mb
oldadmin
messagedrivenbeans/docsservlet
admin-dev
cimjobpostadmin
2022.tgz
smartadmin
meta-inf/weblogic-application.xml
cescripts
heap-profiler_unittest.sh
seh
dug
www_admin/login.asp
aborior
ejabberd
generate-d6-content.sh
SourceArt/
test_user_copy.sh
app/config/packages/twig.yaml
encode_explorer-3.4/
admin/web/
debug/queryz
config/config.ini
installation.htm
confluence/plugins/servlet/oauth/view-consumer-info
netsurf
fastlane/Preview.html
apache-default/phpmyadmin/scripts/setup.php
admincooptel/phpmyadmin/scripts/setup.php
var.php
mmr/mmr/mmrui.html
catalog_admin.php
web-console/webmodule.jsp
old.tar.bz2
back.sql.zip
front/.env
console/
sys/pprof
dbase.tar.gz
old/wp-content/plugins/wp-file-manager/readme.txt
admin2/login.asp
modelsearch/index.php
admin_report.php
run-all.sh
answers/error_log
cluster
phpinfo.php3
bitrix/modules/serverfilelog-0.dat
instant
shanzhi.php
nytprof.out
progra~1
wp-config.phpd
containers
tasks.db
dbdump.sql.sql
api/v1/namespaces
junkbuster
wizmysqladmin
sess-bin/login_session.cgi
indiatimes
phpmyadmin/changelog.php
joerg
.tugboat
story
myazadmin
siteadmin/login
basic_stored_procedure.sql
path/.env
dotproject
novell
deviceupdatefiles_ext/
volano
var/lib/cloud/instance/vendor-data.txt
adminedit.html
application/cache/
solr/admin
seth
phpmyadmin2015/
sh3ll.php
acceptance_config.yml
wp-config.php.disabled
logger
cpanel_file
pages/forgotpassword/forgotpassword.jsp
db.sql.tar.gz
ravenous
.release.json
admin_04
tokenlite.zip
auth/admin
2-to-3.sql
findbugs/
adminer-4.8.0-en.php
.htaccess.save
phpmyAdmin/
web.configoriginal
htdocs/.gitignore
public/.env
.styleci.yml
sql_backup.tar
phpunit.xml
com~tc~lm~webadmin~httpprovider~web
elegance
exchange/logon
helpadmin
revogames
softnews
admin_img
.landscape.yml
phpmyadmin4.8.5/index.php
sonar
commands
bkp
log/exception.log
tourtillott
edocument
nsw
ipmenu
mischler
.csi
impressions
admin_controller.rb
ivtservlet
data/logs/
exchange/
depcomp
test123.php
shopdb/index.php
salesforce.schema
quick
webmedia
codeavalanche
emulive
.php.bak
war/WEB-INF/classes/
repair
data.php
mindjet
wp-content/plugins/adminer/inc/editor/index.php
assets/logs/fullz.txt
doctrine/schema/tmx.yml
docker/app/.env
doow
shareware
management/configprops
css/index.css
xamlsyntax.config
adminer-4.7.7-mysql-en.php
wp-content/uploads
spaw/dialogs/dialog.php
ihtml
soti
log/error.log
wp-login/
speedproject
db/_design/test/_view/testview
comments
office/graph.php#xxe
ncoverexplorer.exe.config
bitbucket-pipelines.yml
js/elfinder.min.js
.templates
admin_awards.php
acrowave
!ut
build
deactivate
sysadm.html
magpie_debug.php
WEB-INF/spring-mvc.xml
eula.txt
submit.sh
master/
vtund.conf
phpmyadmin-2.11.8.1-all-languages
camunda/app/welcome/default/#!/login
dl
2020.tgz
smartisoft
tinyfilemanager
conf/push_ssh_keys_remote.yml
.fixtures.yml
admin_ug_auth.php
settings.php~
administrateur.php
matthias
invocactf.php
mysqladminconfig/scripts/setup.php
cloud-config.txt
admin/index.html
root11.php
admin_newspost
privacy.html
adminv
wp-content/plugins/master-slider/public/assets/css/masterslider.main.css?ver=2.9.8
proc/self/environ
bitrix
js/fckeditor
wwwroot.zip
duncan
adminer-4.7.3-en.php
afgb
merak
activemq/
.controls
supporttickets
autogen.sh
__sql
monster
unclassified
.serverless
config/bundles.php
php.error.log
administracao.php
mysql.sql.tgz
rss
sys_admin
typo3conf/ext/crawler/ext_tables.sql
fckdialog.html
debugger.php
gen/
moderator/
centreon/
gemini
phpMyAdmin-3.3.2/
samples/activitysessions
config/packages/test/framework.php
sqltrace
api/v1/label/job/values
crt_db.sql
join
data_18.sql
stadmin
mantis/verify.php?id=1&confirm_hash=
services/messagebroker/amf
config/packages/dev/monolog.yaml
philboard
dual
admineea169ac/login.php
usr-bin
downloads/dom.php
.zfs/
ruslan
php-cs-fixer.phar
joseph
bradmark
my.php
8.txt
http
require_tool.sh
administratsiya
content_admin
gb
bn.php
madden
vendor/plugins
log/.gitkeep
collectd
marcreed
config.inc.php.local
onfig.seen
v1.bak
yonetim.htm
web.config.xml
vserver
scripts/tools/newdsn.exe
tomcat/axis/
lokwa
a/.git/config
creator
system-administration
.meta
sites/all/modules/readme.txt
gems
debug.log
werner
_data
adminer-4.2.5.php
openbsd
adminer-4.0.0-mysql-en.php
revista
vorod
install/.env
website.tar
login.seam
admin.installer.php
adminb
099.php
popup.html
image-line
customavatars
ui/.env
iradmin
shopcustadmin
.mailrc
all4www
composer.lock
librepag.log
unu
installation.old
navigation.html
bernhard
admin_member.php
phpmyadmin-3.1.5
api/swagger/ui/index
interwoven
web/bundles
pages/login.htm
phone
freestats
.vscode/sftp.json~
bookreview
web.sql.gz
blogs
git/.git/config
ingester
ids/admin/login.jsp
pma-old/index.php
shop/.git/config
phpwsbb
admincontroller.php
inquiries/new
admin_left.php
onfig.source
appadmin
language
l-admin
korweblog
test.asp.bak
uber/phpMyAdmin
.eslintignore
myaccount.php
static%2e%2e%3B
.arcconfig
app/config/packages/twig.php
survey
exercise.frontend/train/.env
WEB-INF/glassfish-web.xml
silver
trlinux
index.php?s=/index/\\think\\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=hellothinkphp
admin_imgmod
phpmyadmin.php
dswsbobje/services/listservices
phpthumb.php
zabbix/zabbix.php
sharp
index.php/index/register.html
table_02.sql
datapower
_yardoc/
macadmin
.ini.bak
dump.inc.old
ecw-cart
plugins/servlet/oauth/users/icon
skin/main/onload.js
WEB-INF/local.xml
builderror.log
icm
admin/pMA/
phpinfi.php
lite
/api/v3/documentation
board.php.bak
CONTRIBUTING.md
.xauthority
mueth
corbeau
InstalledFiles
apc
_Pvt_Extensions
s/index.php
lanren/css/global.css
ibmwebas
web-inf/conf/mime.types
objc-test.sh
cms/wp-includes/wlwmanifest.xml
selenium/
cntstems.pl
admin3
siteserver/publishing/viewcode.asp
adminarea/login
telcondex
dump.tar.bzip2
admina582ed68/login.php
aithent
admincp
executive
templates_admin
pe.php
web.config-o
admin_navigation
clarkconnect
kplaylist
adm.cgi
autodiscover.tmp
broadcom.sh
inktomi
oauth/login
backup/xampp/showcode.php
install_os_dependencies.sh
admintheme.php
.readthedocs.yml
v2.0
bac.rar
.circleci/circle.yml
database.txt
els
api/v/index/queryofficepage
thunderstone
app-service.yaml
frontend/vue/.env
wp-config.php.lst
yu.php
wallet.json
zimbra/
processor/.env
indax.php
webadmin/login.cgi
phpmyadmin/scripts/setup.php/index.php
site.sql.zip
phpthumb
wp-config.php.us
1-to-2.sql
easyweb
.env_1
index.000
bookContent.swf
conf~
showlogin
www.sql.tar.bzip2
FAQ
.identcache
inculdes.bak
log_in/
circle
sym404
new_license.php
sqlmigrate.php
en.conf
navisys
wp-config.save.1
discuz!
linuxprinting
albinator
logon/logon.shtml
backup.sql.zip
.nb-gradle
bitchx
forum.php
ubisoft
admin/setup
mirabilis
bar
service.grp
example/.env
ad_admin.php
.temp/
_logs
borderware
var/logs/
names.nsf?opendatabase
WEB-INF/web.xml
seti
2020.dump.sql
tkmail
wp-content/upgrade/
express-graphql
javascripts
jamie
nolia
api/v1/health
polyvision
data.sql.bz2
junit
arbeiter
version-gen.sh
invoker/readonly/JMXInvokerServlet
sitecore/service/nolayout.aspx
service.asmx
admin2.old/
wp-config.php_original
aspxspy.aspx
jankowski
adrian
osticket/
.vuepress/dist
list.php
generate-changelog.sh
ugoq
dbase.sql.tar
9.txt
clipcomm
Remote-Administrator
disipoll
v2/altair
rpcwithcert/
phprecipebook
phpadmin/
sitemap_index.xml
sub-login/
cmakefiles
backup.sql.xz
/loki/api/v1/label
1st
.powenv
.cookiecutterrc
rsconnect
admin/_logs/error.log
meeting
incognito
adminer-4.7.9-mysql.php
jk/
.exit.log
tsep
authorization.config
default.html.old
valle
mariovaldez
imwheel
webjeff
utility_login/
m.txt
wp-json/wp/v2/users
album.sql
servlet/webspheresamples.configuration.config
wp-config.0
astrodog
build-push-containers.sh
musicsource8.sql
data/adminer.php
.mtj.tmp
e-blah
WEB-INF/jetty-env.xml
auth.py
ocomon
cnt
jenkins/
ext/ltmain.sh
tests/default_settings/v8.0/.env
ucwa/
errorreporter
siteserver/admin/knowledge/dsmgr/default.asp
WEB-INF/tjc-web.xml
footer.php.bak
tetrasix
rest/api/latest/groupuserpicker?query=1&maxResults=50000&showAvatar=true
prikryl
phpm
update.sh
cambridge
backup.sql.tar
dev-push-hyperkube.sh
examples_frame.html
contributing.md
show_na.sql
mail/smtp/admin/smadv
server/laravel/.env
c99.php
ext_phone.sql
wq_stranjf.js
_WEB_INF/
secure_admin
simple
web-inf/conf/caches.properties
dz1.php
emailbox
authoria
thesitewizard
l0gs.txt
ncipher
tests/_data/dump.sql
bb-admin/admin.asp
gojlh
props
Cheffile
xmethods
wwwstat
web.config%20copy
gallery_admin
ltd.
web.config-original
.cproject
e/admin/index.php
development.log
spans
neostats
WEB-INF/jboss-web.xml
.well-known/jwks_uri
achive
.appveyor.yml
fml-junk-earlystartup.log
ef064fddbf0fe62c879b07244ec18236.php
local2prod.sh
wwwlog
wp-config.good
htmlb/samples.html
intemp.sh
conf/solano.yml
.install
sqlitemanager/main.php
.web.env
var/resource_config.json
nobreak
admins/log.txt
smilies
department.sql
admin_guestbook.php
x.php
associates
h1.php
db.sql.tar.bzip2
copernicus
checkstyle/
app/config/packages/sensio_framework_extra.yml
graphiql.min.js
clocktower
config/packages/test/security.yml
config.inc.php.9
sllolx.php
last.sql
bolintech
images/1.php
aura
login.js
common-inc.pot
tasks/main.yml
aep
app/unschedule.bat
ambicom
gitlab/