forked from xRtos/unixcod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.conf
24025 lines (24024 loc) · 326 KB
/
data.conf
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 root
admin admin
test test
guest guest
webmaster webmaster
mysql mysql
oracle oracle
library library
info info
shell shell
linux linux
unix unix
webadmin webadmin
ftp ftp
test test123
root root123
admin admin123
guest guest123
master master
apache apache
root webadmin
root admin
root shell
root linux
root test
root webmaster
root mysql
admin root
admin administrator
admin 12345
admin 123456
root 123456
root 12345678
test test12345
test 123456
webmaster 123456
user user
username username
username password
user password
root password
admin password
test password
root master
root apache
root unix
root redhat
danny danny
sharon sharon
aron aron
alex alex
brett brett
mike mike
alan alan
data data
www-data www-data
http http
httpd httpd
nobody nobody
root login
backup backup
info 123456
shop shop
sales sales
web web
www www
wwwrun wwwrun
adam adam
stephen stephen
richard richard
george george
michael michael
john john
david david
paul paul
news news
angel angel
games games
pgsql pgsql
pgsql pgsql123
mail mail
adm adm
ident ident
resin resin
root asdfgh
root webadmin
root 12345678910
root 0727
root r00t
root com
root id
root 1234567
root asdfghjkl
root 0246
root nevada
root router
root 0249
root 1
root 1022
root 10sne1
root 111111
root 121212
root xxx
root 1225
root 123
root 123123
root 1234
root 12345
root 1234qwer
root 123abc
root 123go
root 1313
root 131313
root 13579
root 14430
root 1701d
root 1928
root 1951
root 1a2b3c
root 1p2o3i
root 1q2w3e
root 1qw23e
root 1sanjose
root 2112
root 21122112
root 2222
root 369
root 4444
root 5252
root 54321
root 5555
root 5683
root 654321
root 6969
root 777
root 7777
root 80486
root 8675309;
root 90210
root 911
root 92072
root 007
root 0007
root 123abc
root 007007
root 10sne1
root @#$%^&
root 4runner
root 2welcome
root !@#$%^"
root !@#$%^&
root !@#$%^&*
root *
root muiemare
root tmp123
root qwerty
root administrator
root root
root rootroot
root root1
root 123456
root 1234567890
root qwerty
root administrator1
root admin
root backup
root admin1
root secure
root secret
root passwd
root password
root password123
root 1a2b3c
root 1p2o3i
root 1q2w3e
root 1sanjose
root 2welcome
root welcome
root aaaaaa
root abcdef
root abcdefg
root action
root adidas
root airhead
root alaska
root amanda
root america
root america1
admin admin
admin admin123
admin 123456
administrator administrator
administrator administrator123
administrator 123456
tads tads123
tads tads
tads tads123456
tip tip
tip tip123
tip 123456
myra myra
myra myra123
myra 123456
jack jack
jack jack123
jack 123456
sya sya
sya sya123
sya 123456
wang wang
wang wang123
wang 123456
marvin marvin
marvin marvin123
marvin 123456
andres andres
andres andres123
andres 123456
barbara barbara
barbara barbara123
barbara 123456
adine adine
adine adine123
adine 123456
test test
test test123
test 123456
guest guest
guest guest123
guest 123456
db db
db db123
db 123456
ahmed ahmed
ahmed ahmed123
ahmed 123456
alan alan
albert albert
alberto alberto
alex alex
alex alex123
alex 123456
alfred alfred
alfred alfred123
alfred 123456
ali ali
ali ali123
ali 123456
alice alice
alice alice123
alice 123456
allan allan
allan allan123
allan 123456
andi andi
andi andi123
andi 123456
andrew andrew
andrew andrew123
andrew 123456
amanda amanda
amanda amanda123
amanda 123456
angie angie
angie angie123
angie 123456
angela angela
angela angela123
angela 123456
anita anita
anita anita123
anita 123456
anna anna
anna anna123
anna 123456
arthur arthur
arthur arthur123
arthur 123456
aron aron
aron aron123
aron 123456
austin austin
austin austin123
austin 123456
magic magic
magic magic123
magic 123456
bart bart
bart bart123
bart 123456
ben ben
ben ben123
ben 123456
beny beny
beny beny123
beny 123456
bert bert
bert bert123
bert 123456
bill bill
bill bill123
bill 123456
bind bind
bind bind123
bind 123456
bob bob
bob bob123
bob 123456
bobby bobby
bobby bobby123
bobby 123456
bret bret
bret bret123
bret 123456
brian brian
brian brian123
brian 123456
bruce bruce
bruce bruce123
bruce 123456
carl carl
carl carl123
carl 123456
cesar cesar
cesar cesar123
cesar 123456
clark clark
clark clark123
clark 123456
clinton clinton
clinton clinton123
clinton 123456
corinna corinna
corinna corinna123
corinna 123456
craig craig
craig craig123
craig 123456
daniel daniel
daniel daniel123
daniel 123456
danny danny
danny danny123
danny 123456
dave dave
dave dave123
dave 123456
dexter dexter
dexter dexter123
dexter 123456
dick dick
dick dick123
dick 123456
earl earl
earl earl123
earl 123456
ed ed
ed ed123
ed 123456
eddie eddie
eddie eddie123
eddie 123456
edgar edgar
edgar edgar123
edgar 123456
ellen ellen
ellen ellen123
ellen 123456
emil emil
emil emil123
emil 123456
enzo enzo
enzo enzo123
enzo 123456
felix felix
felix felix123
felix 123456
fred fred
fred fred123
fred 123456
francis francis
francis francis123
francis 123456
harry harry
harry harry123
harry 123456
ian ian
ian ian123
ian 123456
ismail ismail
ismail ismail123
ismail 123456
mail mail
mail mail123
mail 123456
james james
james james123
james 123456
jeff jeff
jeff jeff123
jeff 123456
jesse jesse
iesse iesse123
iesse 123456
jim jim
jim jim123
jim 123456
jimmy jimmy
jimmy jimmy123
jimmy 123456
john john
john john123
john 123456
karl karl
karl karl123
karl 123456
ken ken
ken ken123
ken 123456
mysql mysql
mysql mysql123
mysql 123456
larry larry
larry larry123
larry 123456
lee lee
lee lee123
lee 123456
lisa lisa
lisa lisa123
lisa 123456
martin martin
martin martin123
martin 123456
matt matt
matt matt123
matt 123456
monica monica
monica monica123
monica 123456
nicole nicole
nicole nicole123
nicole 123456
paul paul
paul paul123
paul 123456
pete pete
pete pete123
pete 123456
peter peter
peter peter123
phil phil
phil phil123
phil 123456
philip philip
philip philip123
philip 123456
roland roland
roland roland123
roland 123456
samuel samuel
samuel samuel123
samuel 123456
sammy sammy
sammy sammy123
sammy 123456
samir samir
samir samir123
samir 123456
sean sean
sean sean123
sean 123456
shaun shaun
shaun shaun123
shaun 123456
sven sven
sven sven123
sven 123456
steve steve
steve steve123
steve 123456
steven steven
steven steven123
steven 123456
temp temp
temp temp123
temp 123456
news news
news news123
news 123456
tim tim
tim tim123
tim 123456
tom tom
tom tom123
tom 123456
tony tony
tony tony123
tony 123456
vanessa Vanessa
vanesa vanesa123
vanesa 123456
will will
will will123
will 123456
willie willie
willie willie123
wille 123456
win win
win win123
win 123456
samba samba
samba samba123
samba 123456
sshd sshd
sshd sshd123
sshd 123456
adam adam
adam adam123
adam 123456
anton anton
anton anton123
anton 123456
notused notused
notused notused123
notused 123456
mickey mickey
mickey michey123
michey 123456
jordan Jordan
Jordan jordan123
Jordan 123456
hatton hatton
hatton hatton123
hatton 123456
orange orange
orange orange123
orange 123456
beavis beavis
beavis beavis123
beavis 123456
tigger tigger
tigger tigger123
tigger 123456
zena zena
zena zena123
zena 123456
purple purple
purple purple123
purple 123456
mustang mustang
mustang mustang123
mustang 123456
ultra ultra
ultra ultra123
ultra 123456
justin justin
Justin justin123
Justin 123456
chris chris
chris chris123
Christ 123456
robert robert
Robert robert123
Robert 123456
harley harley
harley harley123
harley 123456
quincy quincy
quincy 123456
quincy quincy123
ftphome ftphome
ftphome ftphome123
ftphome 123456
buster buster
buster buster123
buster 123456
apple apple
apple apple123
apple 123456
fred fred
fred fred123
fred 123456
dakota dakota
Dakota dakota123
Dakota 123456
pascal pascal
pascal pascal123
pascal 123456
nicole nicole
Nicole nicole123
Nicole 123456
joshua joshua
Joshua joshua123
Joshua 123456
friends friends
friends friends123
friends 123456
master master
master master123
master 123456
apples apples
apples apples123
apples 123456
apple apple
apple apple123
apple 123456
xxx xxx
xxx xxx123
xxx 123456
miller miller
miller miller123
miller 123456
chicago chicago
Chicago chicago123
Chicago 123456
chipmast chipmast
chipmast chipmast123
chipmast 123456
tweety tweety
tweety tweety123
tweety 123456
snoopy snoopy1
snoopy snoopy
snoopy snoopy123
snoopy 123456
ashley ashley1
ashley ashley123
ashley 123456
ashley ashley
bandit bandit1
bandit bandit
bandit 123456
bandit bandit123
madison madison
madison madison123
madison 123456
princess princess
princess princess123
princess 123456
viper viper
viper viper123
viper 123456
billy billy
billy billy123
billy 123456
skkb skkb
skkb skkb123
skkb 123456
faridah faridah
faridah faridah123
faridah 123456
fauzi fauzi123
fauzi fauzi
fauzi 123456
ginger ginger
ginger ginger123
ginger 123456
cassie cassie
cassie cassie123
cassie 123456
joeflores joeflores
joeflores joeflores123
joeflores 123456
anthony anthony
anthony anthony123
anthony 123456
jeffrey jeffrey
jeffrey jeffrey123
jeffrey 123456
superman superman
superman superman123
superman 123456
francis francis
francis francis123
francis 123456
francois francois
francois francois123
francois 123456
franklin franklin
franklin franklin123
franklin 123456
mortimer mortimer
mortimer mortimer123
mortimer 123456
lloyd lloyd
lloyd lloyd123
lloyd 123456
guinness guinness
guinness guinness123
guinness 123456
godzilla godzilla
godzilla 123456
godzilla godzilla123
charlott charlott
charlott charlott123
charlott 123456
apple1 apple1
apple apple123
apple 123456
netadmin netadmin
netadmin netadmin123
netadmin 123456
scan scan
scan scan123
scan 123456
admin administrator
admin 123456
admin admin
admin test
admin root
admin user
admin guest
user 123456
user user123
user user
user root
user test
user admin
user guest
guest guest123
guest root
guest admin
guest test
guest 123456
guest user
cvs cvs
cvs cvs123
cvs 123456
ioana ioana
ioana ioana123
ioana 123456
gemma gemma
gemma 123456
gemma gemma123
alin alin123
alin 123456
alin alin
tino tino
tino tino123
tino 123456
theo theo
theo 123456
theo theo123
carol carol
carol 123456
carol carol123
cesar cesar
cesar cesar1234
cesar 123456
clark clark
clark clark123
clark 123456
clinton clinton
clinton clinton123
clinton 123456
kayla kayla
kayla kayla123
kayla 123456
russ russ
russ russ123
russ 123456
white white123
white 123456
white white
danny danny
danny danny123
danny 123456
vdi vdi
vdi vdi123
vdi 123456
filip filip
filip filip123
filip 123456
stephanie stephanie
stephanie stephanie123
stephanie 123456
wwwdata wwwdata
wwwdata 123456
wwwdata wwwdata123
george george
george george123
george 123456
michael michael
michael michael123
michael 123456
matilda matilda
matilda matilda123
matilda 123456
kevin kevin
kevin kevin123
kevin 123456
hacker hacker
hacker hacker123
hacker 123456
david david
david david123
david 123456
nathan nathan
nathan 123456
nathan nathan123
mihai mihai
mihai mihai123
mihai 123456
jupiter jupiter
jupiter jupiter123
jupiter 123456
internet internet
internet internet123
internet 123456
doming doming
doming doming123
doming 123456
wwwrun wwwrun
wwwrun wwwrun
wwwrun 123456
www www
www www123
www 123456
apache apache
apache apache123
apache 123456
oracle oracle
oracle oracle123
oracle 123456
mirc mirc
mirc mirc123
mirc 123456
shell shell
shell shell123
shell 123456
shell 123456789Ã
thaiset thaiset
thaiset thaiset123
thaiset 123456
mia mia
mia mia123
mia 123456
boon boon
boon boon123
boon 123456
dexter dexter
dexter dexter123
dexter 123456
viper viper
viper viper123
viper 123456
eric eric
eric eric123
eric 123456
bryan bryan
bryan bryan123
bryan 123456
adam adam
adam adam123
adam 123456
spider spider
spider spider123
spider 123456
arbaiah arbaiah
arbaiah arbaiah123
arbaiah 123456
control control
control control123
control 123456
backup backup
backup backup123
backup 123456
shop shop
shop shop123
shop 123456
sll sll
sll sll123
sll 123456
webmaster webmaster
webmaster webmaster123
webmaster 123456
http http
http http123
http 123456
jerry jerry
jerry jerry123
jerry 123456
simon simon
simon simon123
simon 123456
simon 12345678
system system
system system123
system 123456
scorpion scorpion
scorpion scorpion123
scorpion 123456
venom venom
venom venom123
venom 123456
rock rock
rock rock123
rock 123456
hack hack
hack hack123
hack 1234567
angel angel
angel angel123
angel 123456
girl girl
girl girl123
girl 123456
ronald ronald
ronald ronald123
ronald 123456
dujoey dujoey
dujoey dujoey123
dujoey 123456
paul paul
paul paul123
paul 123456
eva eva
eva eva123
eva 123456
rosa rosa
rosa rosa123
rosa 123456
maria maria
maria maria123
maria 123456
matt matt
matt matt123
matt 123456
rolo rolo
rolo rolo123
rolo 123456
patrick patrick
patrick patrick123
patrick 123456
nobody nobody
nobody nobody123
nobody 123456
dust dust
dust dust123
dust 123456
mike mike
mike mike123
mike 123456
webpop webpop
webpop webpop123
webpop 123456
black black
black black123
black 123456
alex alex
alex alex123
alex 123456
mouse mouse
mouse mouse123
mouse 123456
thomas thomas
thomas thomas123
thomas 123456
cyp cyp
cyp cyp123
cyp 123456
adrian adrian
adrian adrian123
adrian 123456
andy andy
andy andy123
andy 123456
matthew matthew
matthew matthew123
matthew 123456
cyrus cyrus
cyrus cyrus123
cyrus 123456
frank frank
frank 123456
frank frank123
adam adam
adam adam123
adam 123456
adi adi
adi adi123
adi 123456
elena elena
elena elena123
elena 123456
andrei andrei
andrei andrei123
andrei 123456
andrei 12345678
sandra sandra
sandra sandra123
sandra 123456
xtra xtra
xtra xtra123
xtra 123456
walter walter
walter walter123
walter 123456
walter 12345678