-
Notifications
You must be signed in to change notification settings - Fork 9
/
SSH爆破字典
3156 lines (3156 loc) · 43.8 KB
/
SSH爆破字典
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
root 111111
pi raspberry
root root@123
root qwerty
root password
root admin123456
root Passw0rd
root Pa$$w0rd
root Ab123456
root 888888
root 1qaz@WSX
root 1qaz!QAZ
root 123456789
root 12345678
root 123123
root 123
root !QAZ2wsx
pi raspberryraspberry993311
root zaq1@WSX
root root
root password1!
root pass@word1
root admin123!@#
root admin123
root abcd@1234
root abcd-1234
root abcABC123
root Password123
root Password1
root P@ssw0rd123
root P@ssw0rd
root Abcd1234
root Abc123456
root Aa123456
root @WSX1qaz
root 1qazxsw@
root 123qwe!@#QWE
root 123@qwe
root 1234abcd
root 12345
root 123!@#qwe
root 11111111
root 0
root !qaz2wsx
root !QAZxsw2
root !QAZ2wsx#EDC4rfv
postgres postgres
postgres 123456
jenkins jenkins
guest guest
guest 123456
ftpuser 123456
admin admin
www www123
www www
www 123456
user1 user1
ubuntu ubuntu
ubuntu 123456
test test
test abc123
steam steam123
steam steam
sonar 123456
root test
root root
root redhat
root qwer4321
root qwer1234
root qwe@123
root qwe123!@#
root qwe123!
root qwe123
root qwe!@#123
root q1w2e3r4t5
root password@123
root password@#
root password
root passw0rd
root p@ssw0rd
root nopass
root monkey
root master
root manager
root cisco123
root cisco
root asdf1234
root asd@123
root admin@123456
root admin@1234
root admin@123
root admin1
root admin.123
root admin
root admin
root abcd1234
root abc@123
root abc123@
root abc123321
root abc123!@#
root abc123!
root abc123
root abc.123
root abc-123
root abc!@#123
root a@1
root a1s2d3f4g5
root Windows2008
root Win2008
root Test123
root Server2008
root Server123
root Qwer1234
root Q1w2e3r4
root Password@123
root Pass@word1
root Pass1234
root P@$$w0rd
root Huawei@123
root Dell123
root Admin@1234
root Admin@123
root Admin2016
root Admin12345
root Admin1234
root Admin123!
root Admin123
root Abc123
root Aa123
root ABCabc123
root ABC@123
root A1b2c3
root @admin123
root 2wsxcde3
root 1qazxsw2
root 1qazXSW@
root 1qaz@wsx
root 1qaz@WSX3edc
root 1qaz2WSX
root 1q2w3e4r5t
root 1q2w3e4r
root 1q2w3e
root 1QAZ2wsx
root 159753
root 147258
root 123qweasd
root 123qweQWE
root 123qweASD
root 123qwe!@#
root 123qwe
root 123abcABC
root 123@abc
root 1234qwer
root 1234567890
root 1234567
root 12345
root 1234.com
root 123321
root 123.com
root 123.abc
root 123!@#abc
root 121212
root 11111
root !passw0rd
root !Q2w3e4r
root !@#QWEasd
ranger ranger
public
pi 1234
oscar oscar
oscar 123456
oracle oracle
oracle 123qwe
operator password
operator 22
netman
mongodb mongodb
helpdesk 12345
guest guest123
gitlab-runner gitlab-runner
git git123
ftpuser ftpuser
ftpuser <No Pass>
ftpuser 12345678
es es
es 123
elsearch elsearch
elasticsearch 123456
elastic elastic123
dev dev123
dev 123456
bot bot
appuser appuser
administrator admin
administrator 12345
admin1 <No Pass>
admin1
admin 123456
adm
111111 123
111111 111111
!root
zabbix zabbix
zabbix zabbix
yarn yarn
worker worker123
worker worker123
worker worker
worker worker
weblogic weblogic
weblogic weblogic
wang wang123
wang wang
vagrant vagrant
user user
user user
user ljm12013
user Robert121#6057
user 123456
user 123
uftp uftp123
uftp uftp
uftp 123456
ubnt ubnt
tools tools
tomcat tomcat123
tomcat tomcat
tomcat 123456
tom tom123
tom tom
testuser testuser
test test123
test 123456
svnuser svnuser
steam 123456
sonar sonar123
sonar sonar
root zzzzxxxx
root zzzz1111
root zzz123!@#
root zzz!@#123
root zzxxccvvbbnn
root zzxxccvvbb
root zzxxccvv
root zxczxc!@#
root zxczxc
root zxcvbnml
root zxcvbnm123456
root zxcvbnm0
root zxcvbnm
root zxcvb123
root zxcv123456
root zxcv!@#$
root zxcccc#@!
root zxcccc!@#
root zxcasdzxc
root zxc321
root zxc.123
root zxc#@!
root zxc!@#
root zxasqw12
root zxasqw!@
root zqxwcevr
root zq123456
root zhoujielun
root zhoufeng
root zhou1234
root zhao123456
root zhangyun
root zhangyao
root zhanghan
root zhangcheng
root zhangchen
root zhangXIANG
root zhang1988
root zhang1234
root zhang123
root zero696295
root zaqxswcde
root zaq2edc
root zaq1xsw2cde3
root zaq1xsw2
root zaq12wsx
root zaq!@#
root z123123123
root z11111111
root z1111111
root z0000000
root yuan1234
root yniptv@123
root yangpeng
root yangning
root yangfeng
root y1234567
root xz123456
root xsw@#$
root xirang@123
root xiaozhang
root xiaoyong
root xiaoqing
root xiaoqian
root xiaopang
root xiaohong
root xiaobing
root xianjian
root xcsdwe@#
root xcsdwe23
root xIo3L5vU8xVE
root wx123456
root wwwswcy588
root www@@@222
root www222@@@
root www.csdn.net
root www.163.com
root www.123.com
root wushuang
root wsx@#$
root woxihuan
root wowowowo
root woshiwo123
root woshinidaye
root wodeshijie
root wodemingzi
root wodeai123
root wobuaini
root woainiaa
root woaini520
root woaini2008
root woaini00
root woaini!@#
root woaibaobao
root wltg2010
root wiscom
root whosyourdaddy
root westos@123
root westos123
root westos!@#123
root westos!@#
root westos
root wen123456
root welcome2
root weiyu371
root wd123456
root wangsheng
root wanghong
root wangfang
root wang1989
root w1e2r3
root vvccxxzz
root voyage
root vmware
root vmw@re
root vice
root user2014
root user-2014
root usa@@2015
root usa@@2014
root usa@@2013
root usa@@2012
root usa@@2011
root unicom
root ubuntu
root trustno1
root tqtwffgcc
root toortoor
root toorabc
root toor123
root tianyuan
root test1234
root test123
root test!@#
root tblkspthkr
root t123456789
root sysadmin
root sysadmin
root sxg007007
root suzhou@562718
root superuser
root superman
root sunsunsun
root sssssssss
root sniper!@#
root sjdf2ghjt
root shenzhen
root shenshen
root sh123456
root server
root scan
root sb987654321
root ruijie
root rreewwqq
root rootzxin10
root rootroot
root rootlinux
root roothuawei
root rootadmin
root root_123
root root@admin
root root@abc
root root@Admin
root root@2019
root root@12345
root root@123
root root@111
root root@!@#
root root789123
root root456123
root root2015
root root2014
root root2013
root root2012
root root123789
root root123456
root root1234
root root123!@#
root root123
root root123
root root112233
root root111
root root1
root root!@#123
root root!@#
root redhat123
root realtek
root raspberry
root r00t0neio
root qzwxecrv
root qwerzxcv
root qwertyuiop
root qwertyabc
root qwerty99
root qwerty98
root qwerty97
root qwerty789
root qwerty456
root qwerty234
root qwerty135
root qwerty123456
root qwerty123
root qwert333
root qwert222
root qwert12345
root qwert123
root qwert111
root qwert!@#
root qwert
root qwerrr#@!
root qwerrr!@#
root qwerrewq
root qwerfdsa
root qwerasdf
root qwer12345
root qwer,.1234,.asdf
root qwer!@#123
root qwer!@#$
root qwer!@#
root qweqwe@@@
root qweqwe###
root qweqwe!@#
root qweqwe!!!
root qweqwe
root qweewq@@@
root qweewq123
root qweewq#@!
root qweewq###
root qweewq!@#
root qweewq!!!
root qweeee#@!
root qweeee!@#
root qweee!@#
root qweasdzxc
root qweasd123
root qweasd#@!
root qweasd!@#
root qweasd
root qwe321#@!
root qwe321!@#
root qwe321
root qwe1q2w3e
root qwe1asd2
root qwe123zx
root qwe123qwe123
root qwe123qwe
root qwe123asd
root qwe12345
root qwe123#@!
root qwe123!@#
root qwe123!@
root qwe.123
root qwe#@!
root qwe!@#$
root qwe!@#
root qwaszx123
root qwaszx12
root qwaszx
root qunimade
root qqwweerrttyy
root qqwweerrtt
root qqwweerr
root qqwwee112233
root qqwwee#@!
root qqwwee!@#
root qqwwaasszzxx
root qqwwaasszz
root qqwwaass
root qqwwaa
root qqqwwweee
root qqqq1234
root qqqaaazzz
root qqq1www2eee3
root qqq123!@#
root qqq111!!!
root qqq!@#123
root qqq!!!111
root qqaazzxxssww
root qqaazzwwssxx
root qqaazzwsxe
root qq7758258
root qq1ww2ee3#@!
root qq1ww2ee3!@#
root qq1ww2ee3
root qq11ww22ee33
root qq11ww22
root qq0000000
root qq!ww@ee#
root qinqinbaobei
root qingtian
root qiangqiang
root qazxswedc
root qazwsxedc
root qazwsx123456
root qazwsx123!@#
root qazwsx!@#
root qazwsx
root qazqaz123
root qaz123456
root qaz123
root qaz!@#
root qawsedrf
root q1w2e3r4
root q1w2e3/.,
root q1w2e3,./
root q1w2e3!!@@##
root q1w2e3
root q1e3t5
root q123456q
root q00000000
root q
root pwd@12345
root pup87Nog$
root public
root print2000
root power
root poscard
root plcmspip
root pi
root pfsense
root permit
root password@1
root password123
root password!
root passwd123
root passwd
root passw0rd01!
root pass@123
root pass
root p@ssword1
root p@ssword!
root p@ssword
root p@ssw0rd01!
root p@ssw0rd!
root p@$$w0rd
root p
root oracle123
root oracle
root operator
root openelec
root ololo
root ok
root oelinux123
root nnnnmmmm
root ninja
root nimda
root nihaonihao
root nihaoma123
root nevergiveup
root nagios
root my123456
root msconfig
root mrf11277215
root meiyoumima
root massey
root maomao520
root maomao123
root manager123
root makelove
root ma123456
root m12345678
root lx123456
root lu123456
root lr1028829
root lp123456
root lovejing
root lmj12345
root live
root liuliuliu
root liu5201314
root linxing7778
root linuxwan
root linuxroot
root linux520
root linux13579
root linux123
root lingfeng
root liangwei
root li7xi9bgn
root letmein
root letacla
root laowang123
root kxtn888cn
root klv1234
root kloplijk2005
root kk413200
root kingdee
root k1234567
root jylk1314
root jx56781234
root jvbzd
root julian1
root juantech
root jkljkljkl
root jiushini
root jin123456
root jiangfeng
root jianfeng
root jia123456
root jfjscy8767
root javajava
root jassonsoft_mas08
root jasajasa
root j2mv9jyyq6
root j123456789
root intel
root inspur
root iloveyou123
root ilovethisgame
root ilovechina
root ikwd
root ikwb
root huyunqiao
root huawei@123
root huawei123
root huawei
root huanjue321
root huangyan
root huangxin
root huangtao
root huanghui
root huaihuai
root huahuahua
root ht123456
root homer
root hj123456
root hik12345+
root hi3518
root hello1234
root hathaway
root happyhappy
root hao123.com
root han123456
root haha1234
root hadoop
root guo123456
root guest
root goodluck
root gmcc1234!@#$
root gmcc1234!@#
root gmcc123!@#
root gmcc!@#123
root gjxhsgjxhs
root gertydrj
root frenzy673954
root freebsd
root football
root fivranne
root firewall
root ffddssaa
root ff123456
root feng19831
root feng123456
root feitong!@#
root feifei123
root fangyuan
root f123456789
root f12345678
root ewq321#@!
root ewq123
root ewq!@#
root eewwqq112233
root eee333###
root eee###333
root edc#$%
root dsaewq312
root dsa123
root dsa!@#
root dreambox
root dragon
root dfdfdfdf
root df000000
root detective
root dell_123
root dell123
root dell-123
root default
root david123
root d1k0Braz
root cxzdsaewq
root cxz123
root cxz!@#
root cvdfer34
root cvdfer#$
root ctthb.idc
root csdnmima
root csdn2010
root create
root counter
root confidence
root commsoft
root comeonbaby
root cms500
root client
root chinanet123
root chinanet
root chinacache
root china2008
root chenyong
root chenxiao
root chenpeng
root chenglong
root chengang
root cheng123
root chencheng
root changjiang
root changeme!@#
root changeme
root chaceidc
root centos
root cdnadmin
root cdexswzaq
root cde#$%
root casa
root calvin
root c12345678
root c120696363520
root buzhidao
root button
root boshigangchang
root blender
root beacon
root baobei521
root bananas
root baishikele
root backup
root b123456789
root azxcvbnm
root avonline
root athens
root ast97m9y
root ashley
root asdzxc123
root asdzxc
root asdqweasd
root asdqwe!@#
root asdqwe
root asdfghjkl
root asdf4321
root asdf!@#$
root asdewq#@!
root asdewq!@#
root asdddd#@!
root asdddd!@#
root asdasd!@#
root asdasd
root asd321
root asd123asd123
root asd123456
root asd123321
root asd123
root asd.123
root asd#@!
root asd!@#
root aq1sw2de3
root aq1de3gt5
root aq!sw@de#
root anypass
root anko
root anchnet@123
root anainima
root alpine
root admintus
root admintest
root adminpassword
root administrator
root adminadmin
root admin@huawei@123
root admin@huawei1234
root [email protected]
root admin@Huawei@123
root admin@Huawei1234
root [email protected]
root admin@321
root admin@123
root admin888
root admin520
root admin312#@!
root admin12345
root admin1234
root admin123#
root admin123!
root admin01
root admin#@!321
root admin!@#123
root admin!@#$%
root admin!@#
root adm
root ad123456
root accident
root access
root abcroot
root abcqwerty
root abcpassword
root abclinux
root abcdlinux
root abcdef123456
root abcde123
root abcd_12345
root abcd_1234
root abcd_123
root abcd12345
root abcd123
root abcd.1234
root abcadmin
root abc_123
root abc@123456
root abc147258
root abc123ABC
root abc123456
root abc123456
root abc12345
root abc1234
root abc123123
root abc123
root abc112233
root abc!@#$%
root abc!@#$
root abc!@#
root aassddffgghh
root aassddffgg
root aassddff
root aaabcabc
root aaaaaa11
root aaaaaa
root aaa123!@#
root aaa!@#123
root aaa
root a88888888
root a520520aa
root a1314521
root a123b123
root a123a123
root a123456789
root a12345678
root a1234567
root a123456.
root a123456.
root a123456!
root a123456
root a123456
root a12345
root a123123a
root a
root ````````
root `1234567
root ZAQ!XSW@
root ZAQ!2wsx
root XK(025)uma
root Welkom9
root Welkom8
root Welkom7
root Welkom6
root Welkom5
root Welkom4
root Welkom3
root Welkom2
root Welkom10
root Welkom1
root Welkom0Welkom0
root Welkom09
root Welkom08
root Welkom07
root Welkom06
root Welkom05
root Welkom04
root Welkom03
root Welkom02
root Welkom01
root Welkom0
root Welcome123!@#
root Welcome123
root Welcome!@#
root Welcome
root WOSHINIMA
root WANGXING
root Unicom123456
root Unicom12345
root Unicom1234
root Unicom123!@#
root Unicom123
root Unicom12
root Unicom1
root Unicom!@#123
root Unicom
root USER2014
root USER-2014
root Qwe12345
root Qq123456789
root Qq123456
root QWE12345
root QWE!@#qwe
root QAZ123456789
root Q!W@E#R$
root Q!W@E#
root Q!E#T%
root Poscard
root Password01!
root PassWord
root Pa55w0rd
root PASSWORD
root P@ssword01!
root P@ssword
root P@ssw0rd.
root P@ssw0rd!
root P@ssw0rd
root P@ssW0rd
root OOOO0000
root NISECTC5002
root Meiyoumima
root Mau'dib
root Manager
root MOTOROLA
root Love2008
root LOVEFOREVER
root LAOWANG123
root Huawei123
root Holland9
root Holland8
root Holland7
root Holland6
root Holland5
root Holland4
root Holland3
root Holland2
root Holland10
root Holland1
root HY123456
root HW++98765
root Gmcc123!@#
root Gmcc!@#123
root Debian
root DINGDANG
root Company
root Chinese123
root Chinese
root Chinanetcom
root Chinacacom
root ChinaUnicom
root Changeme123
root CentOS
root CactiEZ
root CHINAIDC
root C@rnoCrola610
root Blueit_s_$
root BMWG&$sg82%*H$*89
root BBaaRRtt11!!
root Asdf13579#
root Asdf1234
root Admin@huawei@123
root Admin@huawei1234
root [email protected]
root Admin@Huawei@123
root Admin@Huawei1234
root [email protected]
root Admin!@#123!@#123
root Abcroot
root Abcpassword
root Abclinux
root Abcdlinux
root Abcd123456