-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist_passwords_by_frequency.txt
42036 lines (42036 loc) · 397 KB
/
list_passwords_by_frequency.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
admin
123456
1234
password
root
12345
default
xc3511
vizxv
user
123
support
888888
1111
54321
7ujMko0admin
guest
pass
xmhdipc
admin123
1234567890
admin1234
juantech
666666
test
ubnt
telnetadmin
aquario
anko
admintelecom
Zte521
5up
hi3518
smcadmin
cisco
S2fGqNFs
e8telnet
ttnet
Win1doW$
service
klv123
1001chin
7ujMko0vizxv
toor
tsgoingon
jvbzd
e8ehome
GM8182
system
zlxx.
1
OxhlwSG8
antslq
tlJwpbo6
qwerty
12345678
ubuntu
root123
0
klv1234
zyad1234
123123
cat1029
123456789
dreambox
Raspberry
test123
realtek
ipcam_rt5350
1111111
00000000
oelinux123
founder88
111111
supervisor
tech
alpine
zhongxing
meinsm
fucker
ivdev
5nWt3P-fF4WosQm5O
ikwb
vertex25ektks123
hunt5759
friend
1234qwer
qazxsw
1qaz2wsx
zsun1188
J5cmmu=Kyf0-br8CsW
1988
oelinux1234
telnet
administrator
1admin!
abc123
Xpon@Olt9417#
test1
adminHW
admin1
P@ssw0rd
pi
merlin
daemon
gpon
AdmiN*123
icatch99
admin123!@#
hello
inflection
root1234
admin@123
solokey
4321
admin12345
oracle
changeme
taZz@23495859
router
telecom
Advertisements
1234567
nagios
piranha
ftp
t0talc0ntr0l4!
www.usr.cn
root1
hexakisoctahedron
1q2w3e4r
1qaz@WSX
admin123456
passw0rd
usr
ripcode!
abc123456
123qwe
video
BrAhMoS@15
qweasdzxc
redhat
Fireitup
20080826
ubnt1
Pon521
zte
password1
hikvision
GeNeXiS@19
Aa123456
test1234
20150602
a1sev5y7c39k
ubntubnt
huigu309
qwe123
123321
Zxic521
password123
hg2x0
eve
lJwpbo6
epicrouter
super
ubnt123
000000
tluafed
zhone
123qwe!@#
pfsense
adminpass
xirtam
synnet
ubuntu1234
Chameleon
1qazXSW@
88888888
44.%4
1cDuLJ7c
P@55w0rd
root621
adminadmin
qwertyuiop
nobody
root@123
xc12345
sp-admin
pass1234
/*6.=_ja
q1w2e3r4
qwerty123
P@ssw0rd!
anonymous
!QAZ@WSX
unisheen
PhrQjGzk
tomcat
operator
qwerty123456
2601hx
1234horses
windows
r00t
sFTPUser
fuckyou
hkipc2016
159357
supportadmin
7ujMko0
Focushns
5201314
telecomadmin
usuario
e8ehomeasb
1314520
manager
taZz@23
zlxx
samsung
1q2w3e
root123456
broadguam1
bin
rootroot
xJ4pCYeW
qazxswedc
a
141388
Pa$$w0rd
ABCabc123
pAssWORd!
password@123
wabjtam
woaini
CUAdmin
ab123456
P@ssw0rd!!
8888888
abc12345
devry
vadmin
qwa123
070admin
!QAZ2wsx
derok010101
nE7jA%5m
asdf1234
email@email.com
taZz@01
passwd
qazxswedc`123
ftpuser
1qazxsw2
qwer1234
123qweasdzxc
@HuaweiHgw
abcd1234
1qaz!QAZ
hslwificam
P@ssw0rd123
uucp
Qq123456
centos
ec2-user
ipc71a
p@ssword
12341234
qwer1234!@#$
ho4uku6at
v2mprt
5SaP9I26
3ep5w2u
qwe123!@#
Ckdgus11
keomeo
e2008jl
CMCCAdmin
grouter
zxcvbnm
support123
e8ehome1
1qaz@WSX3edc
adtec
ruijie
CenturyL1nk
654321
test2
------fuck------
9vt@f3Vt
zyad5001
debian
abc1234
123qweasd
calvin
r@p8p0r+
qweqwe123
ibmdb2
loldongs
2010vesta
conexant
p@$$w0rd
server
1qaz2wsx3edc
abc12
abc1
2011vesta
bayandsl
secret
xuelp123
chzhdpl
11111111
plumeria0077
gw1admin
TeleCom_1234
loldongs3
1234.com
svgodie
3vlig
DLKT20060205
Huawei@123
ipcam
dropper
1q2w3e4r5t
hlL0mlNAabiR
h@32LuyD
m
QwestM0dem
Docker
adtecftp
PrOw!aN_fXp
firetide
a123456
IPCam@sw
oracle@123
useradmin123
25802580
hme12345
sysadmin
12qwaszx
ont
12
ironport
qaz123
123abc
loldongs123
apache
linux
localadmin
!QAZxsw2
kopp
Aa123456789
0000
qazwsx123
netscreen
vagrant
zaq1xsw2
zyfwp
qazwsx@123
3TFoqJk6KR1XaWhhmlRZ
www
q1w2e3
private
112233
abc@123
&
Linux123!@#
sql
6543210
annie2012
zabbix
Changeme_123
t0talc0ntr0l4
mysql
fliruser
abc123!@#
Admin@9000
1A2b3C4d
qwe123456
public
P@55w0rd!
aaa
master
indigo
Asante
root12345
1986
arcsight
aa123456!@#
314159
adminpassword
ggdaseuaimhrke
111
abcd@1234
huawei
nginx
nasadmin
zaq12wsx
abc123456789
live
qazwsx
s
Linuxp@55w0rdp@ssw0rdpass1234passw0rd
1qaz2wsx#EDC
q1w2e3r4t5
z
aaa123456
admin01
zaq!xsw@
A123456a
switch
a12345678
M3gaP33!
aA123123
321321
rootme
debug
guest123
!QAZ2wsx#EDC
ascend
libreelec
Admin@1234
vnpt
ZAQ!2wsx
user1
root12
Cuc@YHfw
a12345
vincenzo
D13HH[
aaaaaa
q
3edc@WSX!QAZ
SYS
P@ssw0rd!@#
letmein
ADTRAN
cu@Hnunicom
informix
security
Qq@123456
qwe123456789
123.com
baikal
oracle123
a123456789
123456kk
cl@123456
root123!@#
abcd12345!
9999
welcome
a147258
contador
fred
2323
g
a1234567
zaq1@WSX
desarrollo
changemenow
qwer@1234
123456a@
123456aa
qwer
hadoop
iloveyou
telephone
wh00t!
v
qweasd123
Pa55w0rd!
openvpnas
!2qwaszx
8ehomeasb
1qaz1qaz
daniel
abc123..
alien
chtsgpon
notes
dreams
nimda
openelec
1q2w3e4r5t6y
Aa@147258
test321
Zjcloud*$%6
root@
asdf
qwe123qwe
TANDBERG
iDirect
r
web
password~!@
db2fenc1
insight
vmware
fidel123
qwe123asd
748159263
peter
rootadmin
4r3e2w1q
patrol
pass@word1
user2022
mapserver
testtest
uftp
Digital@123
aspera
Qwe123!!
juliet
123456zz
9311
Aa1234
huawei123
WW123456.
sac
mxqrm123
dasdec1
root123456789
bluehorse
Ubuntu123
059AnkJ
helpme
forgot
CTLSupport12
Sachin@123
p
china@123
postgres@321
postgres
testuserpass
infoblox
nagiosxi
Ac123456
annie2013
Nr!_CapiBraksjdlfS@3111fVfg1
121212
123456abc
chtngpon
abc.123
1qaz@WSX3edc$RFV
!QAZ123456
a123
satori
facepunch
rain
testuser@123
cunmgadmin
QWEqwe123!@#
QWEasd123!@#
testuser
ucloud.cn
Windows1
prueba
kedacom
janek
Dm123456
0p3nm35h
cpy
1qaz#EDC
123!@#
qazwsxedc
Sz@123456
openmediavault
8
Azerty
123456qq
Aa12345678
qq123456789
mikrotik
12345z
teste
demo
qwer123456
anonymous@
vps
installer
root!@#
host
xx123456
gitlab-runner!
1qaz2wsx!@#
2222
$RFV4rfv
monitor
147852
nutanix/4u
ZmqVfoSIP
Aa123456@
uClinux
atlantis
111111111
testpass123
Azerty123
help
backdoor
root1234567
Aa12345
1234@abcd
zxc123
Cloud@2024
root1337
qweasdzxc123
nvidia123
node
www123
ghostuser
motorola
asdasd123
Password123!@#
hik12345+
4rfv$RFV
root12345678
bintec
football
ttcn@77CN
Web@123
aa123
Qaz123!@#
abcd.1234
x
plex
Qwe123..
media
haha123
3ascotel
wang123
qq123123
woaini123
Huawei12#$
altslq
sonar
ht123456
centreon
Aa123456.
nas4free
qwerty1234
abc-123
blender
root@2022
5
qwerty123!
p@ssword1!
!@#123qwe
netopia
root12345!
1010
asdfghjkl
asd123456
Elastic123
z123456
Postgres123
2
ikwd
Password01!
zxcvbnm123
asdasd
admin888
apc
zxc123456
masterkey
bananapi
temp
Server123!@#
lol123lol
<<< %s(un='%s') = %u
2018
linux123
Is$uper@dmin
f
qweasd
Qwerty@123
annie2015
ivan123
123456@as
!Q2w3e4r
Wangsu@2023
123@India
123qwe123
pgj-heu05HQM=bMvz
0l0ctyQh243O63uD
Aa112233
xxyyzz
tl789
QAZwsx12#
123abc...
superuser
@WSX3edc$RFV
blabla123x!
#password#
ansible
q1w2e3r4t5y6
swift
Cm1@YHfw
jenkins
7
c
config
zaq12wsxcde3
asdqwe123
Kc@123456
trustNO1
leo
wimax
gpon@Vnt00
h
---fuck_you----
b
n
k
nokia
e
zx123456
ftpuser2
QAZ!@#123
raspi
steam1
doly321
j
netoptics
admin!@#
lkjhgfdsa
1!deshine
gdcuadmin
git
a1b2c3d4e5
abc@1234
abc123ABC
l
!qaz1qaz
u
ZAQ!xsw2
annie2016
Aa111111
admin@#123
!manage
Admin111
1qa2ws3ed
abc123@
epon
Pa$$w0rd@2023
ideal
QAZ@WSX
1234!qwer
data
P4ssw0rd
mediator
password!@#
Abc123456.
bitrixpass
d
ZXCzxc
123456a?
lab123
qaz123456
11223344
zaq1XSW@
xc3551
Welcome123
as123456
danger
minecraft
sky
a12
odoo
123qweqwe
wank
deploy
123qwe!@#QWE
serverroot
weblogic
witribe
abc1234567
I
asd123asd
es
2345
Abc12345!@#
Ab12345678
trans
ec2-userpass
ftptest
Ab1234567890
1123581321
4444
nsroot
p@ssword!@#
a1234
abcd123456
sandeep@123
solomon@123
12345678a
aptx4869
cliuser
test@123
ifconfig
test123456
asdf123
princess
123456aaa
zqliu
Lai123456
qwe!@#123
qwe123123
zhzha.,
fliradmin
h2014071
steam
user123
hello123
ZAQ!@WSX
admini
Cc123456@
root@1234
nmgcuadmin
6
3
agajani123
qq112233
wago
dspace
student
abc123456!@#
dell@2024
blahblah
111222
Aa123456!
zhang123
yy123456
juyf
Ac1234567
12345678900
test123$
AAbbcc123
114514
asdfasdf
wangjing123
drcom123
sS123456
asd123!@#
vpsuser
pass1
0123456789
1qazxcvb
admin@huawei.com
unchi
1234abcd
internet
abc123...
1234.abcd
123456Aa.
123147
abc
root123456!@#
QAZ!2wsx
o
hadoop123
mapred
zxcvbnm,
QAZ123456789
A123456q
unko
9
root1234567890
Ac1234
qwerasdf
Ac
RPM
abc123.
qazwsx123.
1992
Is@dmin
3245gs5662d34
peertube
Password01
321123
elasticsearch
welcome1
qazwsx123456
mysql123
temponly
Ac12345
elastic
shopify
NISECTC5002
%TGB6yhn
123asdQWE
qazwsxedcrfv
fivem
Huawei@2023
terror
rootpass
t
zy123456
1234!@#
temppwd
webadmin
redhat123
nosoup4u
kamil
123qwe123qwe
22222
1qaz2wsx@
testing
Root1234!@#$
zzidc2024
sq!us3r
Ac1
li
win1dows
charlie
cisco123
pass123
4
sudo
db2as
snow123
zcadqe
passw0rd!@#
dev
Mtm$%889*G*S3%G
portfolio
21Vianet
adminlvjh123
dolphinscheduler
Ac123
1234567a
1231
redhat@123
Ac12
huber
monkey
kusa
qwertyuiop123
helloworld
orangepi
asdzxc
power123
ZTE@uss100
f00b@r
annie2014
oelinu
tom123
corecess
1qazxsw2!QAZXSW@
123qwe,./
ftp123
Aa@123456
abcd1234567
ys123456
matrix
y
hello@123
whoami123
123456ab
7ujMko0123456
root12345!@#
Abcd123.
vbox123
admin001
esuser
asdfgh
anni2013
1029384756
asd123
thyc@TEST
11451419194545810
centos123
apple123
yangjian
00000
ALC#FGU
nflection
abcd123456789
root12345678!@#
2wsx2wsx
e8home
xmhdpic
123789456
1qazXSW@3edc
1020304050
w
root1!@#
123123123
000
christian
P@ssw0rd1
shuijing
asdzxc123
ジェリーフィッシュ
aDm8H%MdA
1234rewq
Alpha123
7777777
ctyun@123