forked from six2dez/OneListForAll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
onelistforallmicro.txt
25333 lines (25333 loc) · 359 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
aastra.cfg
snoop2
config/banned_words.txt
client_secrets.json
_cat/health
adm/scripts/setup.php
.zsh
access.sql
webpage
archive.rar
environment.rb
publish.sh
.credentials
languages
may
storyteller
resolute.php?img=config.php
.terraform.d/checkpoint_cache
phpmyadmin-2.2.6
phothong
sitecore/service
test2
user/admin
kaphotoservice
app/config/routes.yml
forgot_pass
.pep8
config.dat
telekorn
cch
api/v1/swagger.json
collins
wubi.sql
lonerunner
bolthole
opt
raybase
api/v2/users
admin_awards.php
app/config/parameters_test.yml
estoque_pg.sql
accounts/create
meijianxue.php
andreas
zeroclipboard.swf
jhjgubbels.nl
wp-admin/admin.php
admin_cat_edit.php
pcc/vendor/phpunit/phpunit/src/util/php
fck_about.html
orbitscripts
.svn/props
.git2/config
fsu
users.bz2
back-end/app/.env
psuser
lol
webclient/login.xhtml
c99shell.php
adsl
evil%e3%80%82com
includes/tiny_mce
desinsecta.sql
evil.com
login/img/nyyh/chkjs.js
pma2021/index.php
content.tidy.-1.blubber.json
src/__tests__/__fixtures__/typescriptvisualizeproject/.env
sbkc.php
sites/knowledge/membership/inspiredtutorial/viewcode.asp
muhstiks.php
.cpanm
abe
sysadmin.html
wingdomain.sql
versatilebulletinboard
xh.php
_db.sql
flicks
nsw/admin/login.cgi
swagger/static/index.html
admin.rb
cms/wp-content/plugins/wp-file-manager/readme.txt
assets/home.js
matu
config/packages/test/dama_doctrine_test_bundle.yaml
adminfunction
shopaffadmin.php
sistina
static_prod/.env
oci-after-fixtures.sql
_build
adminadminer.php
adminphp
passwd_files
spaiz-nuke
mitel
reach/sip.svc
actuator/health
admini.php
admin.template.php
enderunix
cancel
cpphpmyadmin/scripts/setup.php
security
sample
aardvark
adminer-3.4.0-mysql.php
wp-config.php-
pub
.ht_wsr.txt
cardea/backend/.env
nghenhac
.gitk
.gradle
warehouseejb
phpquiz
tea.sql
packagesdata_zh_cn_utf-8.sql
war/web-inf/classes
user/login
phpmmorpg.sql
projects
update-gh-pages.sh
barrett
firewall.sh
readme.
admin_view.asp
esoft
fckeditor.js
.lgtm.yam
skillsoft
pom.xml.next
mapix/mapix/doc/en/changes.html
tech-noel
lx.php
sim/config/testdata.jsp
.raw
configuration_general
blankol
psp
admin_rules.php
form/colours
panel/vendor/phpunit/phpunit/src/util/php/eval-stdin.php
kth
cgi-bin/.env
logo
public/about.html
auth.ini
.lein-deps-sum
e2eportalproject/login.portal
actuators/dump
bin.feed.xml
secure/managefilters.jspa?
web-app/web-inf/classes
venture
operator
countries.sql
layout/.env
appel
app/config/packages/twig.yaml
broadcom.sh
sql-ledger
st-js-be-2020-movies-two/.env
phpmyadmin-3.3.4
.rdstempfiles
wp-config.php.sav
graylog
sym
41.sql
admin_badword
efone
spring-autowired
xmltype
.sync.yml
spread.php
2015.tgz
migrate_mambo4523_to_joomla_100.sql
database.sh
cgi.cgi/bb-hist.sh
phpunit.phar
error_log.txt
web.config.htm
0.php
erver.cert
admin_alldel
tdavid
moderator/login.htm
private/.env
peaceworks
rum
ccms
skins.php
adminstration
cvs
sitebuilder
database/phpmyadmin
myadminscripts/setup.php
admin_zhidu.asp
test.zip
fckeditor/editor/filemanager/connectors/aspx/upload.aspx
fileserver
intermediate
xianyu/index/setp1.html
phpmyadmin0/index.php
smarticketapp/index.html
media
cron_sku.log
smc
config/monkcheckout.ini
admin/workarea.jsp
custom/.env
koch
leipi_qrcode.sql
site.txt
robot.txt
openid/connect/jwks.json
?xxnew2018_url2=2
sphinx
index.tmp
mobai.php
sean.php
pen
login_admin.php
imaging
.well-known/openorg
view/all/builds
config/packages/test/web_profiler.yml
godep-restore.sh
id/:id
advanced_search
admin/editor/dialogs/dialog.php?module=spawfm&dialog=spawfm&theme=spaw2lite&type=imagesundefined
acidcat
includeg
backups.zip
update_team.sql
siteman
xphperrors.log
ozzywork
gefeg
ruzmetov
maw~
www/phpmyadmin
createauthdb.sql
secure/managefilters.jspa?filter=popular&filterview=popular
teca
nethack
teamcal
sys-admin
php.zip
duncan
dark
public/system
content.1.json
iconico
dbdump.sql.tgz
home.json
api/device/online
config/packages/swiftmailer.yaml
default/images/logo.gif
data.sql.tgz
install_postgresql.sh
btt
adam
run_all_tests.sh
notify.sql
mimica
admincenter
popup_songs
2012.zip
swfupload
eastman
tracker-module.pot
.arcrc
.cookiecutterrc
plus/tou.php
qqq.php
whoami.php.php
affcommerce
technico.txt
ts/prime/.env
archipel/.env
addstudentpro.sql
bitrix/import
w-channel
jwt
login-gulp.js
admin_xmglzn.asp
avt
app.sql.zip
opensqlmonitors
terminal
.cargo
all.sql
memberadmin.php
.well-known/browserid
avantbrowser
accounts.sql
eshare
docbook-to-man
password_change.cgi
admin.ex
phpmyadmin-2.6.0-rc1
cbx-portal
admin/default.asp
phpmyreport
joshua
install_backend.sh
admin0002c623/login.php
n24.php
armagetron
phpliteadmin
config/packages/prod/webpack_encore.yaml
tft
application.sql.zip
mon.sh
thumbnail
seo-board
realchat
punctweb
doc/play
l7.php
adminui
sql.sql.rar
net
script.predeployment.sql
admin_sys/login.asp
schillix
dbase.rar
upload.py
aenovo
phpmyadmin-www072510/scripts/setup.php
wyatt
eastinit.sh
chamas
i_admin
muieblackcat
app/config/packages/test/validator.yml
config/initializers/backtrace_silencers.rb
fiwin
amp
products.old
websoft
hndunblock.cgi
includes/batch.queue.inc
settings.php.txt
interact
filehandler
final_project/airflow_dag/.env
sysbackup
holland
mkall.sh
.env.sample
update.php
siteadmin/login
phpunit/util/php/eval-stdin.php
app/config/schema.yml
webspheresamples.configuration.config
dbdump.sql.gz
pass.txt
tux
flying
imagination
autologin.html
gpr.xml
ecware
search-replace-db-master
static/api/swagger.yaml
ansible/push_ssh_keys_remote.yml
_vti_bin/_vti_aut/fp30reg.dll?1234=x
wp-config.phpn
client.sql
phpmyadmin4.8.5/index.php
photos
base/.env
sypex.php
sap/wdisp/admin
dbase.zip
sct
http.ini
ar-lib
1st
2020_dump.sql
ades
pdflib
asic_auth.csv
member/js/lang_zh_cn.js
db/mongoid.yml
public/hot
mssql.sql.tar.gz
errors/local.xml
npm-debug.log
wssproc/plain
dbadmin.tar.bz2
environment.sh
icat
theworldsend
pgadmin.log
webteacher
file.php.bak
boonex
loginerror
weblog
production.tar.gz
link-vmlinux.sh
wp-config.phpb
variables.php
docs/maintenance.txt
wp-content/uploads/2018/01/raiz0__cjadm.php
config/packages/routing.xml
administracio
metric
core.zip
.clcbio
duckrails/mocks
error.php
orville-write
s_brief.htm
.git/hooks/pre-rebase
bak.zip
v.aspx
store/app/etc/local.xml
install.log
apis/certificates.k8s.io
administr8.asp
api/incidents
xamlsyntax.config
signin.php?ret=
site.zip
my/scripts/setup.php
.well-known/openid-configuration/jwks
.config.php
cp/.env
aelbrecht
qdecoder
sysinfo.txt
codenames-frontend/.env
deploy.env
wp/wp-content/plugins/plugins/greengo.php
otscms
content.feed.html
w3m
modeller/index.html
noibo
users.pac
phpfm-1.7.3
tmp/uploads.php
fil
churchinfo
test2.zip
wp-login.cfm
kondara
lycos
metadata
log/old
wp-config.php.disabled
dream.sql
css../.git/config
a-squared
linde
server/config.json
sqlweb/scripts/setup.php
car
.aws/credentials
admin/controlpanel.html
bitrix/modules/updater.log
plugins/spaw2/dialogs/dialog.php
.gz
wish.sql
common.sh
web-inf/spring-config/authorization-config.xml
create_db.sql
web-inf/classes/app-config.xml
top_admin.asp
accounts/logon
get-kube-binaries.sh
archive.sql
min.php
hogan
admin.cpanel.php
myadm
designs
buffalo
ivan
grayscale
vignette
autodesk
simpleservlet/resources/start
fdgq.php
culeadora.txt
backup/dbdump.sql
kucundata.sql
install.tpl
flash
systeme
administrators.html
sql.php
static/common/js/global.js
gproftpd
phpbluedragon
version.sh
wp-content/upgrade
exchange/root
app/config/routes.xml
client_password=
staging/wp-includes/wlwmanifest.xml
classadmin.php
bitrix/.settings.php.bak
cgi-bin/readfile.cgi?query=adminid
demosc.sql
aboutus
supermanager.aspx
~office
1.zip
var/package
administrator/account.aspx
phpmyadmin-2.11.5
new.7z
sys/pprof
public/admin/ueditor/dialogs/internal.js
phpmyadmin-2.11.7.1-all-languages
old_site
pr
webscriptworld
front/fctpage/start.aspx
apiserver.sh
fepublicinfo
local.sh
home.cgi
coolforum
admin_album
idm
add.asp
teknoportal/readme.txt
holdings
adminsys
stat.jsp?cmd=chcp+437+%7c+dir
xoops_version.php
webalbum
index.shtml
secret-admin-portal
conf/catalina.properties
admincontrol.htm
.agignore
app/config/packages/test/security.yml
phpstat
qq5262.php
.ini
all.log
datamanager.sql
.modman
iishelp
acme-challenge/.env
admin%20
api/currency/quotation_new
uninet
mw-config
gists/laravel
formsadmin
bencandy.php
basic_function.sql
heffner
apche
exchange/root.php
dbadmin.sql
py2play
wwwboard/passwd.txt
cerberusweb
.xsession
phpoutsourcing
admin_backup.php
docker/.env
arkoon
wp-config.php_old2020
accounts/clientregister
mysql/index.php
exotrope
1.sql.tar.bz2
users_controller.rb
cwadmin
tinyserver
ftp.txt
personal.mdb
of
amir
usuarios
spectrum
jbpm
e-post
modern.json
.composer
saltstack
jquery/1.2.6/all/jquery.tools.min.js
bid
admin_awards
mod_access_referer
thrivegame.css
.rhost
v3chat
admin.functions.php
log/errors.log
wp-content/_input_3_raiz0.php5
blank
akeeba.backend.log
angus
members.tar.gz
ranson
sql.tgz
webspheresamples/singlesamples/increment/increment.html
minikube.sh
.config.inc.php.bck
advsearch.php
api/index.html
rss_cache.inc
webdisk.old
shibboleth/.env
management.aspx
.version
facileforms
config/packages/sensio_framework_extra.yaml
theme/.env
thoughtworks
.eslintignore
upload/2.php
filezilla
jukka
lib/ueditor/dialogs/internal.js
acnews
blursoft
sitefinity/authenticate/swt
web-inf/faces-config.xml
make-flash8.sh
apis/admissionregistration.k8s.io/v1beta1
phpci.yml
image
spi1.sh
memberadmin
phpmyadmin3/index.php
.nakignore
adminc
includes/common.inc
adminlist.php
sql.tar
query_debug_console
mindroute
pages/catalog/finditems.jsp
csdp.cache
.jsdoc.json
.capistrano
gen.sh
biz
taocishun.php
dbbackup
auth/login.jsp
cgi?2
admin2/login.cgi
bb-admin/index
akarru
scorched
dynamic.xml
admn/scripts/setup.php
hncms.sql
app1-static/.env
phpmy-admin/index.php
gmbh
adminm.php
mimicboard2
phppass
behat.yml
symphony/config/app.yml
src/__tests__/__fixtures__/typescriptproject/.env
schudar
crosswind
admin1.php
exchange/logon
api/last
virtualbox.sh
.inc
admin/default
windtest.sh
env/template/.env
academic
.spyproject
ace
2021.sql.zip
cognos
fileadmin.asp
2021.tar.bz2
ur-admin.htm
admingallery.php
super_login.php
wp-includes/js/jquery/jquery.js?ver=1.12.4
sql.sql.tar
gdam
admin-ajax
config.inc.php.bk
wp-config.phpa
drupal
wp-content/uploads/2017/06/cropped-15-180x180.jpeg
dominik
images/default/post_bt.gif
content/../libs/foundation/components/text/text.jsp
harris
admin/editor
doika
greenhouseweb
adminglobal.php
xsql
joomla.rar
9.txt
connection.tf
psol
bitcoind/.env
.htpasswd
aztek
fcgi-bin/echo.exe
~shutdown
.git
index.tar.bz2
asteriskguru
christoph
uploadgbin
public/css/_pk10.css
app/config/routing.yml
mortiforo
admin4_account
datastore/990_user_account.js?index=0&pagesize=10
css
lodel
config/packages/test/monolog.yaml
clanlib
hongcms.sql
authenticate.htm
2013.zip
app.zip
list-arch.sh
setup.py
dbase.sql.tgz
containerregistry/.env
asset_img/.env
admin_assist
web_windows.config
boullis
wp-content/uploads/db.sql
save-it
.ftp
build/build.properties
citrix/pnagent/config.xml
db-full.mysql
index/api/config
archangel
sql/sql-admin/index.php
ping
hinton
phplister
userdata.sh
dev/wp-includes/wlwmanifest.xml
ze.php
web-inf/classes/application.yml
karrigell
mandelbrot
scripts/root.exe?/c+dir
admin.
authorizenet.log
manage.py
mozilla
netgear
databases.yml
jason
app/config/packages/webpack_encore.xml
config/parameters_test.yaml
core/core.services.yml
ramp
mip
nxkj2015/config.js
fpsample
webtrends
customerrors.sql
openradius
wssamples
phppgads
adminitem.php
snap
adminedit.html
debug.7z
.userid.pwd
.idea/datasources.xml
build-go.sh
dbase.sql.bz2
tutti
html.zip
sql.tar.bzip2
makefile
~user2
.wp-config.swo
admininterface
admin_log.php
facebook/callback
.config.php.swp
solutions
jftpgw
textes
brightmail/servlet/com.ve.kavachart.servlet.chartstream?sn=../../web
installation.old
subscribe
.gvimrc
clone.sh
suse
nbproject/project.xml
nihuo
frontcode
alentum
phptest
admin123/login.asp
admin_area/admin
phpmyadmin_/index.php
orasso
subproto
palmo
config/parameters_prod.yml
backup2
uni-vert
wqcms59.sql
pwdutils
user/2
tmpfiles
rcjakar/admin/login.cfm
okena
perl-httpd
phpliteadmin.php
xiu.php
mentor
605.php
pelesoft
.zfs
~mail
web.config.backup.txt
columns
developments
.hg/undo.dirstate
cfg.swp
avast.php
notjustbrowsing
config/packages/prod/routing.yml
login.jsf
modelsearch/login.js
phpping
adelix
login1.htm
local.xml.template
outputs/.env
.debug.php.marks
extent
ncipher
api/v1/user/all
wq_stranjf.js
shop
safetp
mcs814x.sh
__tests__/test-become/.env
swapnut
sarton
admin123/login.php
bbs/admin/login
pj
mutant
images/stories/filemga.php?ssp=rfvbhu
credentials
~fwuser
hacker.php
phpmyadmin-2.6.2-pl1
pbserver/pbserver.dll
site.7z
executive
dci-designs
cyq_manual.pdf
0bef
quantrisite
admin8aaaf1c0/login.php
messagebroker/amf
bea_wls_internal
test3.php
kselftest_install.sh
blogger
yonetici
webconfig.txt.php
admin_web.asp
models.py
u.sql
persits
shana
.iceauthority
pop_profile
composer/composer.php
bdredmercadeo.sql
sql.sql.tar.gz
config.swp
includes/configure.php~
dotwidget
aestiva
usercp.php
opentsdb
lethal
cheffile
minihttp
.gtkrc
wp-content/plugins/revslider/temp/update_extract/raiz0__cjadm.php
news.sql
kietu
betaboard
911admin
upguard
adminteb
ajax-spell
houtai/admincenter/index.index.do
timesheet
aspnet_files
mailinabox/.env
bingophp
nand.sh
sanchez
phpyellow
cuser.sql
config/database.yml.pgsql
plugins/tiny_mce
wiz
_config
latest.log
dataviz
wp-config.aws
otc
mellon
wp-config.bkp
app/config/packages/validator.xml
tiny_mce/plugins/imagemanager/pages/im/index.html
_layouts
phpmyadmin-2.6.2-beta1
openi-cms
userpro.sql
osx.sh
config.local.php_old
sybergen
haproxy_stats1
admin.sections.php
moo_forms.sql
user/soapcaller.bs
controllerservlet
sap_java
debug.sql
new%20folder%20(2)
config/routes/annotations.yaml
config.inc.php_old2019
superuser.php
aliacom
modelsearch/index.cgi
play/272/video.m3u8
id.sql
index.html?findcli=-1
usolved
mx.php
bigbanggravity
siteadmin/index
nygreen
.well-known/dots
wma
.ssh/pi_rsa.pub
php.core
my.rar
transsoft
psol/psolmanager.htm
lysias
debug.zip
createtables.sql
bcb
mock
configcheck.sh
hamilton
servletimages
admin_policy.php
helper.sh
accounts.html
patch.sql
scripts/wgate
api../server-status
shipu.php
phpmyadmin-2.6.0-beta1
ultracms
accounts.cgi
pgsql.start.dump
authentication
taolao
review.php
eftclient/account/login.htm
admin_english.php
pip-delete-this-directory.txt
chimera
browserconfig.xml
vtund.conf
var/log/exception.log