forked from ExpLangcn/HoneypotDic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Top1000.txt
1000 lines (1000 loc) · 8.63 KB
/
Top1000.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
root
123456
1
raspberry
admin
password
raspberryraspberry993311
123456789
111111
P@ssw0rd
12345678
12345
anonymous@
1qaz@WSX
admin123
test
aisadmin
123
user
123123
1234
1qaz!QAZ
p@ssw0rd
1qaz2wsx
abc123
1234567890
Admin@123
Aa123456
1qaz@WSX3edc
111
root@123
root123
Passw0rd
1q2w3e4r
ABCabc123
1qazXSW@
ftp
1qaz2wsx3edc
1234567
!QAZ2wsx
admin@123
Admin123
Huawei@123
ftpuser
abc@123
1qazxsw2
0
ubnt
Abc123
112233
qwe123!@#
123@abcd
abcd@1234
guest
qwerty
qwe123
123qwe!@#
123qwe
P@$$w0rd
Password1
postgres
abc.123
P@ssw0rd123
888888
password@123
abc123!@#
ubuntu
centos
abcd1234
1234abcd
123456a
qwer1234!@#$
password1!
admin123!@#
Admin123!
Abc123456
asd123
123!@#qwe
1qaz@wsx
123qweasd
root1234
tomcat
159753
!QAZxsw2
pass@word1
Qwer1234
123qwe!@#QWE
password1
0l0ctyQh243O63uD
Admin123456
123@qwe
123321
redhat
Password123
666666
Password
admin123456
qwe@123
123.com
passwd
a123456
1234Qwer
abc123@
654321
123456a!
oracle
qwe!@#123
12345qwert
12qwaszx
123qweQWE
123@abc
12
11111111
!@
qwer1234
Abcd1234
1q2w3e
123456Aa
test123
qazwsx
asd@123
admin1234
987654321
qwertyuiop
default
1qaz@WSX3edc$RFV
qwe123456
passw0rd
pass
Welcome123
Pass1234
123qweasdzxc
123abc!@#
git
abcd-1234
Passw0rd!
1q2w3e4R
123qaz
123QWEasd
bosco
toor
q1w2e3r4
admin@1234
abc@123456
qwe123!
alpine
Pa$$w0rd
asdf1234
321
1234@abcd
1234.com
hadoop
qq123456
q1w2e3
password123
abc-123
Huawei12#$
Changeme_123
Admin@1234
1qaz
123654
qwerty123
master
asdfghjkl
Ab123456
1qaz2wsx#EDC
1QAZ2wsx
123.abc
zaq1@WSX
rootroot
password@#
admin@123456
admin!@#123
abc123!
aaa111
456123
1qaz2WSX
jenkins
qazwsx123
abc!@#123
88888888
147258
!QAZ@WSX
QWEqwe123
Pass@word1
@
12345qwert!@#$%
123456a?
1111111
abcd1234!
Root1234
Admin1234
7654321
!qaz@wsx
ftpuser123
welc0me
qwe1234
linux
administrator
admin1
a
Root123456
Asdf1234
Admin
1qaz!QAZ2wsx@WSX
1q2w3e4r5t
-
upload
qazwsxedc
abc_123
aaa123
Password@123
P@ssword123
1q2w3e!@#
1234rewq
1!deshine
calvin
asdf123
abc
Abc1234
54321
1q2w3e4r5t6y
!Q2w3e4r
!@#QWEasd
qweqwe
qweasdzxc
password123!
changeme
Q1w2e3r4
Aa12345678
1qaz1qaz
123qweASD
testuser
support
qwe123qwe
caonima
apache
abcABC123
Test123
Server123
P@ssword
Admin12345
Abcd@1234
87654321
123456qwerty
1111
redhat123
qweasd123
qaz123!@#
asdasd
AAAaaa111
1qa2ws3ed
159357
$chP8x0717
!qaz2wsx
!QAZ2wsx#EDC4rfv
zabbix
localhost
admin!@#
abc123456@
abc123456
abc1234
aaaaaa
Win2008
Dell123
Abc@123
1Qaz2Wsx3Edc
123456a@
123!@#
%null%
es
iloveyou
admin.123
Qwe123
Admin2016
Aa123
1qazxsw@
123abc
1234qwer!@#$
1234qwer
123454321
1234!@#$
123123123
121212
nagios
ubnt123
root123456
qwerty123456
q1w2e3r4t5y6
openelec
linux123
a@1
@WSX1qaz
123abcABC
123456abc
1.23123E+11
54e172662
root@123456
pass123
pa55w0rd
l3tm31n
cisco123
asd123!@#
admin123.
Abc12345
A1b2c3
123qwe@
123qaz!@#
......
!passw0rd
!QAZ2wsx#EDC
mysql
qwerty1234
qaz123
huawei@123
Server2008
P@ssw0rd1234
Aa1
ABC@123
7777777
520520
1z2x3c4v
root@1234
qwer
p@$$w0rd
oracle123
huawei123
asdqwe
abcd@123
QAZwsx123
Pa$$word
Aa123123
ABcd1234
ABC123!
@admin123
2010
1qaz2wsX
123!@#abc
!@#123qwe
deploy
steam
root12
qweasdzxc123!@#
hik12345+
azerty
asdfgh
asd123456
admin888
admin12345
abc123ABC
abc#123
Windows2008
Wangsu@123
Admin2008
Admin123.
12qw!@QW
!Q@W3e4r
!Q@W#E
!@#123
monitor
zxcvbnm
root1
qwertyu
q1w2e3r4t5
passw0rd@123
pass1234
dreambox
abc12345
aa123123
a@123456
Test1234
Server2012
P@ssw0rd!
Changeme@123
Admin@2016
1qaz#EDC
1q2w3e$R%T^Y
123@asd
123456!@#$%^
11223344
user1
qwerty12345
qwer123
qazxswedc
power123
poiuytrewq
p@ssword
p@ssw0rd123
hello123
asdf
asd12345
adminroot
adminadmin
abc!@#
aaron
Drcom@123
Abc@123456
Abc123456789
8ik,9ol.0p;
2wsx3edc
123qazwsx
123@a
123456qwe
nvidia
test1234
qwertyui
qwert12345
qwe12345
qazwsx123!@#
password1234
p@ssword1
manager
login
eve
dragon
daniel
asdzxc
asd1234
abcd123456
abc@1234
8ik,*IK<
3edc#EDC
1a2s3d
123qwe123
111222
qwerty1
qazxsw
michael
idc123
debian
computer
cisco
asd
admin001
adam
abc123321
ab123456
aa123456
@B0g0r12
4rfv$RFV
4321
222222
21vianet
1q2w3e*
123456789a
12345654321
12345!@#$%
12341234
!@#$QWER
weblogic
qwerasdf
qwaszx12
pass@123
monkey
google
asd123asd
aptx4869
alex
abcd1234!@#$
a123456789
a1234567
Qwert12345
21
1q@w3e4r5t6y
1q2w
123asdasd
123456!@#
123000
!@#$%^&*()
anonymous
secret
r00t
please
p4ssword
live
letmein
l1nux
idc2010
hello
firewall
asdasd123
ZAQ!2wsx
666
321123
1q2w3e4r!
123test
123qwer
102030
!qAz@wSx
mos
welcome
random
qwer12345
qwe!@#456
plex
nihao123!
minecraft
fuckyou
asdqwe123
Qq123456
Password123!
Password01!
9876543210
8888
1qa2ws3ed4rf
1a2s3d4f5g6h
123456aa
1234%^&*
123#@!
11111
........
%username%
zaq12wsx
testtest
test@123
rajesh123
qwert123
qaz!@#123
q123456
player
pi
password123456
passwd1234
love123
lkjhgfdsa
hello1234
digital
db2inst1
caonima123
apple
abcde12345
abc123123
Qwe123456
Password1234
P@ssW0rd
P@55w0rd
5201314
245.4765432!
1z2x3c
1qazse4
123qwe!@
123asd
123456789qq
123456.com
101010
1010
tom
vagrant
rootadmin
qweasd
qwe123qwe123
qwaszx123
p0o9i8u7
oracle@123
november
driver
db2fenc1
asdf!@#$
admin!@#$%
abcd12345
aaaaaaaa
a123456!
Huawei@1234
Abc123...
794613
3edcVFR$
321321
1qazxsw23edc
1qazxdr5
123789
123456qwer
111aaa
100200
dev
www
system
server
rootpass
root123!@#
qweasdzxc123
qweasd!@#
qwe!@#
qq123.com
qaz123456
public
prueba
pass12345
informix
idc123!@#
david123
chang3m3
baseball
asdfg
asdf1234%^
asd123123
anthony123
admin321
abcd
a1b2c3d4
P@ssw0rd@123
P@ssw0rd123!
Admin@9000
963852
789789
741852
336699
142536
13579
1234567a
12344321
.
!QAZ2wsx3edc
es123
elasticsearch
voyage
trustno1
superman
root@...
root01
qwert
qq123123
qaz
passwd123
p4ssw0rd
null
mypassword
mercedes
joshua
ftp123
download
chinacache
backup
asdasdasd
as123456
admin@321
admin!@#456
abcd123
abc@12345
Server@123
Password12
Passw0rd123
PASSWORD
999999
987654
789456
778899
1qaz3edc
123ewq
123a
1234qwerasdf
112358
111222333
11112222
1111111111
lsfadmin
app
ansible
user123
teamspeak
zxcv1234
xxxxxx
welcome@123
vmware
ubuntu123
root12345
redmine
redhat12
rasplex
r00tr00t
qwerqwer
qwe321
qwe123123
qqqqqq
qqaazz
qazwsx123456
power
pass12
pass1
pa$$w0rd
p455w0rd
netgear1
mima123
mike
madrid
lol
jessica
cyrus
cocacola
changeme123
bin
asdfasdf
abc123456!
abc!@#456
aaa
a123123
Qwerty123
QWER4321
Passw0rd1234
P@55w0rd!
Aa1234567890
Aa111111
369369
23wesdxc
1qazxsw23edcvfr4
1qa2ws
1q2w#E$R
1a2b3c4d
1Q2W3E4R
123wqa
123szx
123sazx
123qwerty
123qwa
123aqw
1236
1234qazwsx
12345678910
1212
1122
0okm9ijn8uhb
nexus
zxcvbn
zxc123456
sunshine
service
qwer!@#$
qwaszx
qw123456
qazwsxedcrfv
privatew
password321
p@55w0rd
operator
nopassword
network
miorinicetry
master123
lenovo
idcidc
hacker
einstein
demo
dasusr1
dahouzi110
centos6svm
balance
backuppc
asdfghjk
asdf@123
asdf123456
asdf1234%^&*
anthony
administrator1
access
abcdefg
a1b2c3
a123456a
a12345
a123
Welcome@123
Huawei123
HK123COM
GBHalso98
D13HH[
@HuaweiHgw
555555
2wsx#EDC
235689
1qaz2wsx!QAZ@WSX
1q2a3z4w5s6x
1a2b3c
147369
134679
124578
123456asd
1234567899
1.23456E+11
1234.abcd
123.qwe
110120
!@#$qwerASDF
!@#$qwer1234
nginx
mongodb
git123
yarn
welcome123
toto
samsung
qazwsx12
purple
plxx@#13915417585
passpass
pass123456
palosanto
p@ssw0rd!
music
mail123
love
liu123456
internet
install
huawei
galaxy
football
fai
debug
dave
cvs
client
christian
blank
bbbbbb
avonline
asdfzxcv
asdf12345
admins
admin@888
abcabc
aaaa
a1s2d3f4
a12345678
Pass@1234
Pa55word
PASSW0RD
P@ssw0rd2021
P4ssw0rd
Asd123123
3333
232323
1q2a3z
1a2s3d4f
1314520
12qazwsx
123root
123qazwsxedc
123567
123123aa
1122334455
727527122
!@#$%12345
postgres123
odoo
hadoop123
gpadmin
sonar
zaxscdvf
z
woaini123
web
vyos
shadow
rootme
root@2022
rich
rajesh
r00t123
qwerty12
qwerty!@#$%^
qwert1234
qwer123.com
qweqwe123
q
password12345
password!@#
p@ssw0rd1
nopass
newroot
music123
msconfig
mnbvcxz
michelle
metallica
mandrake
manager1
mail
liverpool
libreelec
jerome
hao123
games
g
future
fuck
forever
foobar
fedora
explorer
email
develop
database
data
crystal
counter
carlos
buzhidao
bill
ashley
apple123
angie
admin@123$%^
admin!123
abc12345!
Password123!@#
Apple@123
8675309
852456
6504710shuazuan
5up
5tgb6yhn7ujm8ik,
5555
456852
2wsx1qaz
2wsx
2ca597c5e7e234b08fc6616a01a437de
21122112
1qazXSW@3edc
1qaz#EDC5tgb
12qazw
123zsx
123wqas
123aaa
123654789
1234aaaa
12345678a
123123abc
122
!@#qweASDzxc
hive
gitlab
dmdba
demo123
chenz
bot
ts3
tomcat123
zxcvbnm123
zxcvbnm,
zxcv123
xiaoyili
terminal
synopass
root@2021
root123456789
root.2021
redhat@2021
redhat1
redhat.2021
rainbow
qwert123456
qwerasdfzxcv
qweqweqwe
qweasdqwe123
qqq111
qq@123456
qaz1wsx2
private
princess
power123.0
porno
pfsense
oracle1
openvpnas
nproc
nokia
nihao123
netscape
maverick
loveyou
jspower123.0
huawei@12
huaiyukeji115
cookie
casper
bailey
backup123
azsxdcfv
asdfg123
asd123321
asd123$%^
as
articon
aq1sw2de3
admin12#$
abcd1234@
Samsung@123
Password!
Pa$$w0rd!
Huawei@2022
Huawei@2021
Huawei#12
FlIECHp0R3
Changeme123
Admin@123456
ABC123
95217189
8owmpiyddyo
6695zx
4444
3edc4rfv