forked from six2dez/OneListForAll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathonelistforallmicro.txt
25696 lines (25696 loc) · 368 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
isp
php/scripts/setup.php
prepare_permissioncheck.sh
wp-config.php.bak
AdminProps
wp-config.php_old2006
something
contributor
asante
gubernator.sh
.pdkignore
admin/errors.log
admon
start-all.sh
module/tinymce
db2fenc1
fml-client-2.log
ext/modules
sanchez
gatos
rest/v1/swagger
1/index.php
kubelet-checker.sh
.addressbook
database.inc
add2.asp
frisk
chinery
dump.tar.bz2
admin_sync.php
log-in.asp
repository
wp-config.azure
order.log
.git/refs/heads/master
update.7z
debug.tar.gz
data.sqlite
artmedic
webtalk.log
eskuel
list_emails
flyway
hammurapi
bfcommand
auth.zip
ckeditor/ckfinder/core/connector/php/connector.php
nuoxi.php
media/downloadable
deletegate
testwork_json/.env
.mono
cvv2
sql_dumps
help/en/h_authenticate.html
cimmetry
login_admin.aspx
wp-content/debug.log
chamas
regprod.sql
123.php
phpmyadmin.old/scripts/setup.php
admin_faq.php
.wp-config.php.swn
chimera
blog/.env
cerbère
web.configold
12345.php
spyke-online
backup_0.sql.bz2
web.sql.tar.bz2
docs/html/developer/ch03s15.html
weaver/bsh.servlet.bshservlet
guder
trackback
tachyondecay
test/integration/.gitkeep
diet
.rbenv-gemsets
old.php
database/structure.sql
web-inf/liferay-plugin-package.xml
apps/admin/_static/image/login_box_bg.png
en/admin
vanessa
webadmin/index.html
.shtml
.mr.developer.cfg
_private
frogss
_funciones
vocaltec
0cf8d7f0fbbc45d53070a559b5a0eba2.php
mysql.sql.tar.gz
blocksadmin.php
author
tcd-apiserver-client.crt
pedestal
admin1.php
settings.html
venv.bak
daniel
routes.ini
backups.inc.old
member/login.rb
init.php
webcart
app_dev.php/_profiler
js/preload/example.txt
dumb
.eslintrc
url
faststone
musicsource6.sql
graphql-explorer
phpfm.php
admincp.php
office/graph.php
import.sh
install_backend.sh
servant
faq
config.inc.php-work
update_logger_admin.sql
.mvn/timing.properties
.browserslistrc
gladius/readme.txt
on
fnord
.github/workflows/ci.yml
vqmod/vqcache
dalnet
newsletter-admin
prom_init_check.sh
bxcp
elido
siteadmin/index.asp
2.tar
admin_update.php
earlyimpact
mysql.sql.tar.bzip2
backdoor.php
printing
megacomputing
express-web
website.sql.tar.gz
.import
faq_admin.php
db_net2.sql
saas/.env
bookstore
ad_manage
app/config/packages/assets.xml
members.rb
identd
pinball
.env~
.nodemonignore
admin-admin
web.config_good
libraries
META-INF/jboss-client.xml
neulinger
phpmyadmin-2.5.7-pl1
base_common.xml
sra_{ba195980-cd49-458b-9e23-c84ee0adcd75}
.wgetrc
apis/apps/v1/namespaces/default/deployments
smartadmin
vendor/autoload.php
upstream_conf
db.zip
db_data.sql
admin_deletecat.php
app/config/parameters.ini
app/testing
my.ini
streamcast
secureol
multitech
latest-mysql-en.php
train.sh
2018.tar.gz
irssi
bitrix/logs
guardednet
action/default/webloginbase.class.php
nuxeo/login.jsp/pwn${31333333330+7}.xhtml
helmetjs/.env
mediahouse
sedre.loria.fr
check_lang.sh
app/config/packages/test/webpack_encore.yaml
xiaomo.php
group.bak
plugins/fckeditor
vendor/assets/javascripts/.gitkeep
myblog
lyris
smelov
juji.php
protector
moosegallery
lowagie
smbcms
global.bak
spearhead
editor.php
digitalwebshop
template/1/bluewise/_files/jspxcms.css
amnhac
phpmyadmin-2.5.6
helix
gondola-run-tasks
save
clamwin
views/home/home.js
named.conf
albert
userservice.wsdl
partners
devels
guai.php
docs
freezingcold
images/login/eyoumail.gif
focalmedia
tux
imlib
jakefile
orderprocessorejb
trangchu
contenite
tomcat/axis
admin/auth.inc
identityguardselfservice/images/favicon.ico
streaming/gmfvowcqkg.php
_scriptlibrary
addressbookj2we/services/addressbook/wsdl
sipfoundry
users.sql.bz2
python
.virtualenvs
of
.all-contributorsrc
ivt
dev/login
hystrix
db_backup.sql.zip
tridia
vast-empty.xml
images/jsspwneed.php
log.html
.htusers
bitrix/modules/serverfilelog-1.dat
webticket/webticketservice.svcabs
wp-includes/js/wp-emoji-release.min.js?ver=4.7.13
includes/fckeditor/editor/filemanager/browser/default/connectors/asp/connector.asp
api/contracts
ptools
admin_expired
manager/html
adminpassw.php
create_db.sql
app/config/packages/dev/swiftmailer.xml
new%20folder%20(2)
always-as-root.sh
ccbill.log
microsys
log_errors.txt
tests/todo-react/.env
employee.sql
whturk/.env
build.sh
index.orig
ezaspsite
backup/site.sql
userlogin.htm
upload/1.php
netadmin.htm
ascenvision
api/swagger.json
_vti_pvt/authors.pwd
unalz
carline
adm.cfm
run_gluster.sh
prod.7z
app_config/connectionstrings.config
phpmyadmin-2.5.5-rc2
caladmin.php
helloportletapp/helloportlet
orders.log
ftpsync.settings~
spring/spring-aop/subresource
escripts
vbb2
create.sh
cybozu
saturn
whir_system/login.aspx
CMakeLists.txt
alessandro
messages
fantastic
wsrptest/jsp/wsrptest2.jsp
linx
backend.sql.zip
cosmicperl
mysql/mysqlmanager/index.php
tmp/changeall.php
adminarea/login.cgi
1qaz2wsx
gv_admin_dhtml.php
jfl
sapse/startsld
admin/error.txt
dacode
db_backup.sql.tar.bz2
dbase.rar
.coveralls.yml
desaunay
darren
egroupware
lia.cache
.arclint
api/v1
427bb
controller/config
local/composer.phar
wp-config.err
ratemypic
labware
gs-common
admin_imob_2
httpd.ini
generated.conf
todbo
public/.git/config
datapower
application.sql
lbc.log
domaincontact.wsdl
mad
mod_cplusplus
mvcnphp
script/performance
.env.test
start.html
reportserver/pages/reportviewer.aspx
inetstore
gen-changelog.sh
cal
admin_viewok.asp
joshua
logon/logonservlet
ifusion
megacz
mapinfo
indexnotstandalone.jsp
special.bak
invocactf.php
avt
scoop
diendan1
phpnuke
educators
checkout
function.inc.php
apple-touch-icon.png
extent
mymail
logstash
yu
windows.sh
krankikom
admin_area/login.html
data/autosuggest
cf_io.cfm
config.inc.php-sample.php~
bbs.sql
typo3conf/ext/yag_themepack_jquery/ext_tables.sql
wp-config.php=
authors
wp-config.c
dasbhoard
skin
wp-content/uploads/master-slider/custom.css?ver=5.7
server.key
contact_us.php
xing.php
.gitmodules
toys
ramp
administrator/components/com_joommyadmin/phpmyadmin
alshare
tool
dbdump.sql.tar.bz2
adminforce
.git/hooks/pre-push
adapterframework/version/version.jsp
mozilla
lucent
1ts.php
stylesheets/bundles
seyeon
lindberg
ou2.php
admin/base.html
mysql/admin
images_upload
mysql.sql.zip
app/config/packages/security.yml
360safe/caches_webscan/thumbs.php
administrator/.env
performanceprovierroot
scripts/cgimail.exe
.helm/values.yaml
_char.sql
.git/logs/refs/remotes/origin
administator
.gemtest
triornis
members.sqlite
admin/knowledge/dsmgr/users/groupmanager.asp
env.js
stage_create_service_dev.sh
hitachi
persianblog
.git/refs/tags
raiden
alexander
tty.php
eagle.epf
config/packages/dev/swiftmailer.yml
site.sql.bz2
funkboard
cfg/cpp
aelbrecht
shebs
robots.txt.dist
tatham
edmobbs
categories.sql
style
web.sql.zip
bribble
affiliate_admin
root.sh
settings.save
admin_copyright.asp
index.php/user/sign_up
works
duckrails/mocks
includes/xmlrpc.inc
images/stories/filemga.php
debug.xml
dbtables.sql
max-admin
adminer-4.1.0.php
startserver.log
grigorov
srchadm
admin/js/tinymce
an
joomla.sql
.exit.log
ibmwebas
.org-id-locations
heroine
big
jiros
concatus
_res
xcart.bak
_js
administrator/admin
download/index.php
template/css/login.css
.tool-versions
web.config.3
cc
bintec
site-log
stage_deploy_dev.sh
.env_sample
new%20folder
orasso
nwadmin
.stylelintrc.json
dependency-reduced-pom.xml
data.tar.gz
kinko's
bespin
.gitattributes
win1.php
admin/cp.cgi
wp-config.php.ini
php.php
master.sh
mongodb
config/apc.php
alshanetsky
test_gen.caches
publicadminer.php
conf.swp
bmforum
lottasophie
dong.php
var/log/payment_paypal_express.log
2013.tar.gz
professional
user/admin.html
cgi-bin/bb-rep.sh
~user4
merrill
ccms_utf8.sql
gibraltar
jersey-ejb
sql.bz2
phperrors.log
anomic
wp-content/plugins/photo-gallery/js/jquery.fullscreen-0.4.1.js?ver=0.4.1
pixel
assets/file
sftp-config-alt.json.save
openmosix
cluster
m4/ltversion.m4
extman/default/images/logo.gif
.sunw
cmsadmin.asp
groups.sql
lib/flex/uploader/.actionscriptproperties
dump2.sql
photokorn
yj.php
stager32
crawford
allinta
accessdenied.php
api/command/ping
sachat.sql
_tracks
shavlik
assets../.git/config
checkadmin.aspx
dbadmin.php
.dbshell
ubuntu-juju.sh
config/packages/swiftmailer.yml
sitefinity/authenticate/swt
.golangci.yml
license.md
appindex
orville-write
crackalaka
php_cli_errors.log
_admincp
packages/api/.env
.idea/workspace(6).xml
webdev
bes-cms
learn/ruubikcms/ruubikcms/cms/includes/snippetmenu.php
bantin
oskin
.jobs
hd.php
cgi-bin/login.php
levels
operations
db_backup.sql.gz
metrics.json
sdfingerd
.filezilla/sitemanager.xml.xml
legato
re-boot
examples/readonly.html
getver.sh
intruder
inktomi
crack
includes/fckeditor/editor/filemanager/connectors/asp/connector.asp
_config
links.php
sanctum
phpmynews
stalker_portal/c
home.tar.gz
r
occ/item/content/0
supervisor_watcher.sh
sitemanager.xml~
.testbss.log
forgot
widgets
flushcms
administrator.cfm
view
phothong
ssh
adminbeta
script/performance/request
guardfile
meta/main.yml
sign_in.html
popup_image.php
bloghoster
admin_assist.php
hentai
unix
siteserver/admin/commerce/foundation/dsn.asp
vars.sh
lisa
popup_songs
regi.sql
cpu
app/config/packages/test/swiftmailer.yaml
serial
shishir
upgrade_to_1.2.sql
1.sql.tgz
config.inc.php.staging
htfr.php
freely
viewvc
helper.php
guides
.vscode
bitrix_server_test.log
newspost
bemoore
cron.php
test5.php
cpanelphpmyadmin/scripts/setup.php
plus/tou.php
voice
api/v1/graphql
app/config/packages/sensio_framework_extra.php
v8.log
.flowconfig
moine
rootlogin.asp.old
update-storage-objects.sh
jmssender
taxonomy.admin.inc
beanbug
loginsuper.asp
xhote_utf.sql
wp-content/themes/blaskan/assets/css/font-awesome.min.css?ver=4.7.12
old/wp-content/plugins/wp-file-manager/readme.txt
demo/.env
.qmake.cache
web-inf/logback.xml
bb-admin/admin.js
etc
404.jpg
coursemanagement.sql
ncm
libtensorflow_cpu.sh
yonetim.php
requested.html
h-sphere
thankyou.php
download/filesets
kreditmotor.sql
adminbecas
verify-bazel.sh
arx
.github/workflows/docker.yml
aps
grabnar
wp-config.html
aboutus
custom
.wmv
welsh
cakephp
sapid
cacti.sql
appbase/genericsearch.jsp
brunhoff
cmakecache.txt
upload.sql.tar.gz
q1w2e3r4
nodezilla
baker
webjeff
freesshd
cgi-club
config/packages/test/dama_doctrine_test_bundle.xml
walla
hadoop-env.sh
rhino
averett
oxebiz_admin
grimm
extra
installer.php
explore/repos
zram.sh
pg_hba.conf
grayscale
admin_ads.php
sidekiq_monitor
foto
readfile
store/app/etc/local.xml
.jslintrc
schoolalumni
swagger.json
app/controllers/application.rb
db.sql.tar.gz
citrix/accessplatform/auth/clientscripts
index.action
admin_board
rsa
bea_wls_internal/getior
content.childrenlist.json
openssl
git.sh
settings.sql
qun.sql
modern.jsonp
adminb
.mdb
ilmscli_sync.log.1
api/configuration
addons
pop3lite
auditing
tmp/access.log
app/config/packages/framework.xml
app/etc/local.additional
texinfo.tex
repo/.env
images../.git/config
forum/admin
creates
wp%e2%80%94admin/admin%e2%80%94ajax.php
sap/xml
phim
~firewall
boaform/admin/formlogin
mbeanreg
api/admin/role/status
.playground
behan
WEB-INF/cas-servlet.xml
images/login/login_01.jpg
fullwebsite.sql
.vooruit
astaware
asset..
v.txt
php-backdoor.php
jennings
ccadmin
admin2/index
merit
jiran
buildnumber.properties
api/v1/swagger.yaml
virusblokada
.well-known/webfinger
tmui/login.jsp/..;/tmui/locallb/workspace/fileread.jsp?filename=/etc/f5
Trace.axd
install.helloworld.sql
pgosd
user.js
kayako
revision
jcdi-beans-webapp/jcdibean/singleton
microsoft
sybex
www.tmp
proxy/pac
show_image_npadvsecondaryright.php?cache=false&cat=1&filename=
iissamples/exair/howitworks/codebrws.asp
!.htaccess
sample
app/config/adminconf.json
.magentointel-cache
application/web
add2it
remote-administrator
manage/login.asp
WEB-INF/liferay-portlet.xml
derby.log
mcs814x.sh
moderator/admin
loginsuper.php
geotarget
karma-completion.sh
apiserver.key
u.sql
perception
filehandler
%e5%bc%80%e5%a5%96%e5%99%a8/kaijiang/config.js
oliver
komodo
vagrant
preprocess.sh
joomla.rar
.irbrc
00_end
admin-login.js
import
admin/web
api/swagger.yml
jemweb
app/config/packages/prod/monolog.yaml
update-codecgen.sh
installinstall
oprocmgr-status
qwertyuiop
apps.properties
phpmyadmin-2.10.1
v1
oauth/clients
COadmin
maximus
uin0
d02442fffd93e1fa5fa313583dd6e5f8.php
vicomsoft
startup.cfg
app/config/packages/test/security.yml
wp-config.php.dist
kim
admin/fckeditor/editor/filemanager/browser/default/connectors/asp/connector.asp
nra.cache
config/packages/test/security.xml
.eslintrc.yaml
blog/wp-login
server_with_db/.env
AdminCaptureRootCA
db_backup.sql.sql
app/config/packages/test/security.php
user/profile
superstat
cgi-bin/index.html
addphoto.sql
atom.xml
piece
akiva
piserver-client.crt
stone.xz
yum.log
sourceworkshop
openstack
admin_area/index.cgi
examples/with-cookie-auth-fauna/.env
contributor.php
sapio
100.php
cookie
newsfetch
api/_swagger_
n-13
piserver-client.key
stripe
phpmyadmin2021/index.php
apache/logs/error_log
oprocmgr-service
web.config.maj
sciences
payments.php
webadmin/scripts/setup.php
.clang_complete
dune
cgi-sys/realsignup.cgi
testenv.sh
routes/.env
lesson_admin
api/search
admin.gallery.php
file::extattr
fonts
appbase/closewindow.jsp
vitualpath
csdp.cache
raymond
web-inf/webapp.properties
meta.xml
.gitconfig
verify-gofmt.sh
ithouse
.gif
ehmig
profile.php
admindb
dasusr1
phpcounter.sql
wp-config.php.stage
admin.passwd
.hsenv
sales
linhtinh
mysql.tar.gzip
guiseppe
invoker/restricted/jmxinvokerservlet
api/dw/dwplugin/templatemanage/login_site.htm
wp-content/plugins/reflex-gallery/admin/scripts/fileuploader/php.php
.exercism
sites.ini
wp-config.php.2
app/config/packages/doctrine.yaml
micros~1
adminfooter.php
app/config/database.yml
adminnews
viewcvs
web-inf/classes/languages.xml
administrator.php
upload
v2/.env
counters
webdb
admin_secure
ext/.deps
web-inf/cas-servlet.xml
turner
tourtillott
login_out.php
mysqldump.sql
xsd.sql
dansie
webster
test_large_file.sh
phpmyadmin-2.6.0-pl2
Admin/knowledge/dsmgr/users/UserManager.asp
magic
dkscript
aonix
admin/logs/error_log
phpmyadmin4
language.inc
shareaza
core/mode/lite/database.class.php
admin_pcc
jscripts/tiny_mce
myabracadaweb
html/js/misc/swfupload/swfupload_f9.swf
wsconnector/config?wsdl
dvbbs
yuyang.php
api/product/toprank
initial-setup.sh
w-channel
statics/js/api.js
phpmyadmin_111/index.php
test.old
.well-known/genid
shiro.sql
web-inf/cfg/cic/workplaces.xml
api/command/recover
funcion
script/generate
gerald
packages/client/.env
gen_rpi_sdcard_img.sh
phpbb1
app.js
phpin.php
qdadmin
polar
phpprojekt
psionic
accounts/login.jsp
access.log
abuse
v1/graphiql
iconsg
lifetype
plugins/tiny_mce
billing/killer.php
new.tar.gz
etcd-apiserver-client.key
.s3backupstatus
anweb
final_project/airflow_dag/.env
site/systemthemes/7917a0869761b5458281e407ae0090f5/images/isbanner58px.jpg
zuoss.php
i
admin_postings.asp
security/login
c-news
sites/all/modules/readme.txt
rafal
phpini.bak
datastream
selena
administracao.php
liferay
verify-godep-licenses.sh
ag
netpliance
aecab5fc5d0bdcca959ce9784713aefe.php
boozt!