forked from mishakorzik/AdminHack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wordlist2.txt
10509 lines (10509 loc) · 178 KB
/
wordlist2.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
webadmin/index.asp
webadmin/index.html
webadmin/index.php
webadmin/login.asp
webadmin/login.html
webadmin/login.php
webadmin.php
webmaster/
websvn/
wizmysqladmin/
wp-admin/
wp-login/
wplogin/
wp-login.php
xlogin/
yonetici.asp
yonetici.html
yonetim.php
yonetim.asp
yonetim.html
yonetim.php
wp-content/uploads/2018/03/mini.php
wp-content/uploads/2018/03/c99.php
wp-content/uploads/2018/03/b37k.php
wp-content/uploads/2018/03/ok.php
wp-content/uploads/2018/03/upup.php
wp-content/uploads/2018/03/vuln.php
wp-content/uploads/2018/03/succes.php
wp-content/uploads/2018/03/acces.php
wp-content/uploads/2018/03/sukses.php
wp-content/uploads/2018/03/akses.php
wp-content/uploads/2018/03/backdoor.php
wp-content/uploads/2018/03/jembut.php
wp-content/uploads/2018/03/r00t.php
wp-content/uploads/2018/03/indrajith.php
wp-content/uploads/2018/03/Indrajith.php
wp-content/uploads/2018/03/Indrajith_v1.php
wp-content/uploads/2018/03/Indrajith_v2.php
wp-content/uploads/2018/03/bol.php
wp-content/uploads/2018/03/shellku.php
wp-content/uploads/2018/04/shell.php
wp-content/uploads/2018/04/Shell.php
wp-content/uploads/2018/04/cok.php
wp-content/uploads/2018/04/up.php
upload.php
wp-content/uploads/2018/04/mini.php
wp-content/uploads/2018/04/backdor.php
wp-content/uploads/2018/04/myshell.php
wp-content/uploads/2018/04/c99.php
wp-content/uploads/2018/04/dark.php
wp-content/uploads/2018/04/root.php
wp-content/uploads/2018/04/jembut.php
wp-content/uploads/2018/04/kontol.php
wp-content/uploads/2018/04/ok.php
wp-content/uploads/2018/04/upup.php
wp-content/uploads/2018/04/IndoXploit.php
wp-content/uploads/2018/04/indoxploit.php
wp-content/uploads/2018/04/IndoXploit_v1.php
wp-content/uploads/2018/04/IndoXploit_v2.php
wp-content/uploads/2018/04/IndoXploit_v3.php
wp-content/uploads/2018/04/b37k.php
wp-content/uploads/2018/05/shell.php
wp-content/uploads/2018/06/shell.php
wp-content/uploads/2018/07/namashellLu.php
wp-content/uploads/2018/08/shell.php
wp-content/uploads/2018/09/shell.php
wp-content/uploads/2018/10/shell.php
wp-content/uploads/2018/11/shell.php
wp-content/uploads/2018/12/shell.php
wp-content/plugins/wp-symposium/server/php/Shell.php
wp-content/plugins/wp-symposium/server/php/Sh3ll.php
wp-content/plugins/wp-symposium/server/php/b37k.php
wp-content/plugins/wp-symposium/server/php/up.php
wp-content/plugins/wp-symposium/server/php/c99.php
wp-content/plugins/wp-symposium/server/php/wp.php
wp-content/plugins/wp-symposium/server/php/sym.php
wp-content/plugins/wp-symposium/server/php/upload.php
wp-content/plugins/wp-symposium/server/php/succes.php
wp-content/plugins/wp-symposium/server/php/php.php
wp-content/plugins/wp-symposium/server/php/IndoXploit.php
wp-content/plugins/wp-symposium/server/php/Indrajith.php
wp-content/plugins/wp-symposium/server/php/indrajith.php
wp-content/plugins/wp-symposium/server/php/berhasil.php
wp-content/plugins/wp-symposium/server/php/yup.php
wp-content/plugins/wp-symposium/server/php/myshell.php
wp-content/plugins/wp-symposium/server/php/shell.php
wp-content/plugins/wp-symposium/server/php/symposium.php
wp-content/plugins/wp-symposium/server/php/_func.php
wp-content/plugins/wp-symposium/server/php/shellgua.php
/wp-content/plugins/wp-symposium/server/php/shellgue.php
wp-content/plugins/wp-symposium/server/php/server.php
wp-content/plugins/wp-symposium/server/php/admin.php
wp-content/plugins/wp-symposium/server/php/oke.php
wp-content/plugins/wp-symposium/server/php/ok.php
wp-content/plugins/wp-symposium/server/php/mini.php
wp-content/plugins/wp-symposium/server/php/Mini.php
wp-content/plugins/wp-symposium/server/php/min.php
wp-content/plugins/wp-symposium/server/php/1n73ction.php
wp.zip
wp-content/plugins/disqus-comment-system/WSO.php
images/root.php
wp-content/plugins/disqus-comment-system/Sym.php
wp-content/plugins/disqus-comment-system/c22.php
wp-content/plugins/disqus-comment-system/c100.php
wp-content/plugins/disqus-comment-system/configuration.php
wp-content/plugins/disqus-comment-system/g.php
wp-content/plugins/disqus-comment-system/xx.pl
wp-content/plugins/disqus-comment-system/ls.php
wp-content/plugins/disqus-comment-system/Cpanel.php
wp-content/plugins/disqus-comment-system/k.php
wp-content/plugins/disqus-comment-system/zone-h.php
wp-content/plugins/disqus-comment-system/tmp/user.php
wp-content/plugins/disqus-comment-system/tmp/Sym.php
wp-content/plugins/disqus-comment-system/cp.php
wp-content/plugins/disqus-comment-system/tmp/madspotshell.php
wp-content/plugins/disqus-comment-system/tmp/root.php
wp-content/plugins/disqus-comment-system/tmp/whmcs.php
wp-content/plugins/disqus-comment-system/tmp/index.php
wp-content/plugins/disqus-comment-system/tmp/2.php
wp-content/plugins/disqus-comment-system/tmp/dz.php
wp-content/plugins/disqus-comment-system/tmp/cpn.php
wp-content/plugins/disqus-comment-system/tmp/changeall.php
wp-content/plugins/disqus-comment-system/tmp/Cgishell.pl
wp-content/plugins/disqus-comment-system/tmp/sql.php
wp-content/plugins/disqus-comment-system/0day.php
wp-content/plugins/disqus-comment-system/tmp/admin.php
wp-content/plugins/disqus-comment-system/L3b.php
wp-content/plugins/disqus-comment-system/d.php
wp-content/plugins/disqus-comment-system/tmp/d.php
wp-content/plugins/disqus-comment-system/tmp/L3b.php
wp-content/plugins/disqus-comment-system/sado.php
wp-content/plugins/disqus-comment-system/admin1.php
wp-content/plugins/akismet/WSO.php
wp-content/plugins/akismet/dz.php
wp-content/plugins/akismet/DZ.php
wp-content/plugins/akismet/cpanel.php
wp-content/plugins/akismet/cpn.php
wp-content/plugins/akismet/sos.php
wp-content/plugins/akismet/term.php
wp-content/plugins/akismet/Sec-War.php
wp-content/plugins/akismet/sql.php
wp-content/plugins/akismet/ssl.php
filemanager/dialog.php
wp-content/plugins/akismet/info.php
wp-content/plugins/akismet/egyshell.php
wp-content/plugins/akismet/Sym.php
wp-content/plugins/akismet/c22.php
wp-content/plugins/akismet/c100.php
wp-content/plugins/akismet/configuration.php
wp-content/plugins/akismet/g.php
wp-content/plugins/akismet/xx.pl
wp-content/plugins/akismet/ls.php
wp-content/plugins/akismet/Cpanel.php
wp-content/plugins/akismet/k.php
wp-content/plugins/akismet/zone-h.php
wp-content/plugins/akismet/tmp/user.php
wp-content/plugins/akismet/tmp/Sym.php
wp-content/plugins/akismet/cp.php
wp-content/plugins/akismet/tmp/madspotshell.php
wp-content/plugins/akismet/tmp/root.php
wp-content/plugins/akismet/tmp/whmcs.php
wp-content/plugins/akismet/tmp/index.php
wp-content/plugins/akismet/tmp/2.php
wp-content/plugins/akismet/tmp/dz.php
wp-content/plugins/akismet/tmp/cpn.php
wp-content/plugins/akismet/tmp/changeall.php
wp-content/plugins/akismet/tmp/Cgishell.pl
wp-content/plugins/akismet/tmp/sql.php
wp-content/plugins/akismet/0day.php
wp-content/plugins/akismet/tmp/admin.php
wp-content/plugins/akismet/L3b.php
wp-content/plugins/akismet/d.php
wp-content/plugins/akismet/tmp/d.php
wp-content/plugins/akismet/tmp/L3b.php
wp-content/plugins/akismet/sado.php
wp-content/plugins/akismet/admin1.php
wp-content/plugins/akismet/upload.php
wp-content/plugins/akismet/up.php
wp-content/plugins/akismet/vb.zip
wp-content/plugins/akismet/vb.rar
wp-content/plugins/akismet/admin2.asp
wp-content/plugins/akismet/uploads.php
wp-content/plugins/akismet/sa.php
wp-content/plugins/akismet/sysadmins/
wp-content/plugins/akismet/admin1/
wp-content/plugins/akismet/sniper.php
wp-content/plugins/akismet//ftp.txt
wp-content/plugins/akismet//user.txt
wp-content/plugins/akismet//site.txt
wp-content/plugins/akismet//error_log
wp-content/plugins/akismet//error
wp-content/plugins/akismet//cpanel
wp-content/plugins/akismet//awstats
wp-content/plugins/akismet//site.sql
wp-content/plugins/akismet//vb.sql
wp-content/plugins/akismet//forum.sql
wp-content/plugins/akismet/r00t-s3c.php
wp-content/plugins/akismet/c.php
wp-content/plugins/akismet//backup.sql
wp-content/plugins/akismet//back.sql
wp-content/plugins/akismet//data.sql
wp-content/plugins/akismet/wp.rar/
wp-content/plugins/akismet/asp.aspx
wp-content/plugins/akismet/tmp/vaga.php
wp-content/plugins/akismet/tmp/killer.php
wp-content/plugins/akismet/whmcs.php
wp-content/plugins/akismet/abuhlail.php
wp-content/plugins/akismet/tmp/killer.php
wp-content/plugins/akismet/tmp/domaine.pl
wp-content/plugins/akismet/tmp/domaine.php
wp-content/plugins/akismet/useradmin/
wp-content/plugins/akismet/tmp/d0maine.php
wp-content/plugins/akismet/d0maine.php
wp-content/plugins/akismet/tmp/sql.php
wp-content/plugins/akismet/X.php
wp-content/plugins/akismet/123.php
wp-content/plugins/akismet/m.php
wp-content/plugins/akismet/b.php
wp-content/plugins/akismet/up.php
wp-content/plugins/akismet/tmp/dz1.php
wp-content/plugins/akismet/dz1.php
wp-content/plugins/akismet/forum.zip
wp-content/plugins/akismet/Symlink.php
wp-content/plugins/akismet/Symlink.pl
wp-content/plugins/akismet/forum.rar
wp-content/plugins/akismet/joomla.zip
wp-content/plugins/akismet/joomla.rar
wp-content/plugins/akismet/wp.php
wp-content/plugins/akismet/buck.sql
wp-content/plugins/akismet/sysadmin.php
wp-content/plugins/akismet/images/c99.php
wp-content/plugins/akismet/xd.php
wp-content/plugins/akismet/c100.php
wp-content/plugins/akismet/spy.aspx
wp-content/plugins/akismet/xd.php
wp-content/plugins/akismet/tmp/xd.php
wp-content/plugins/akismet/sym/root/home/
wp-content/plugins/akismet/billing/killer.php
wp-content/plugins/akismet/tmp/upload.php
wp-content/plugins/akismet/tmp/admin.php
wp-content/plugins/akismet/Server.php
wp-content/plugins/akismet/tmp/uploads.php
wp-content/plugins/akismet/tmp/up.php
wp-content/plugins/akismet/Server/
wp-content/plugins/akismet/wp-admin/c99.php
wp-content/plugins/akismet/tmp/priv8.php
wp-content/plugins/akismet/priv8.php
wp-content/plugins/akismet/cgi.pl/
wp-content/plugins/akismet/tmp/cgi.pl
wp-content/plugins/akismet/downloads/dom.php
wp-content/plugins/akismet/webadmin.html
wp-content/plugins/akismet/admins.php
wp-content/plugins/akismet/bluff.php
wp-content/plugins/akismet/king.jeen
wp-content/plugins/akismet/admins/
wp-content/plugins/akismet/admins.asp
wp-content/plugins/akismet/admins.php
wp-content/plugins/akismet/wp.zip
wp-content/plugins/akismet/disqus.php
wp-content/plugins/google-sitemap-generator//cpanel
wp-content/plugins/google-sitemap-generator//awstats
wp-content/plugins/google-sitemap-generator//site.sql
wp-content/plugins/google-sitemap-generator//vb.sql
wp-content/plugins/google-sitemap-generator//forum.sql
wp-content/plugins/google-sitemap-generator/r00t-s3c.php
wp-content/plugins/google-sitemap-generator/c.php
wp-content/plugins/google-sitemap-generator//backup.sql
wp-content/plugins/google-sitemap-generator//back.sql
wp-content/plugins/google-sitemap-generator//data.sql
wp-content/plugins/google-sitemap-generator/wp.rar/
wp-content/plugins/google-sitemap-generator/asp.aspx
wp-content/plugins/google-sitemap-generator/tmp/xd.php
wp-content/plugins/google-sitemap-generator/sym/root/home/
wp-content/plugins/google-sitemap-generator/billing/killer.php
wp-content/plugins/google-sitemap-generator/tmp/upload.php
wp-content/plugins/google-sitemap-generator/tmp/admin.php
wp-content/plugins/google-sitemap-generator/Server.php
wp-content/plugins/google-sitemap-generator/tmp/uploads.php
wp-content/plugins/google-sitemap-generator/tmp/up.php
wp-content/plugins/google-sitemap-generator/Server/
wp-content/plugins/google-sitemap-generator/wp-admin/c99.phpwp-content/plugins/google-sitemap-generator/tmp/priv8.php
wp-content/plugins/google-sitemap-generator/priv8.php
wp-content/plugins/google-sitemap-generator/cgi.pl/
wp-content/plugins/google-sitemap-generator/tmp/cgi.pl
wp-content/plugins/google-sitemap-generator/downloads/dom.php
wp-content/plugins/google-sitemap-generator/webadmin.html
wp-content/plugins/google-sitemap-generator/admins.php
wp-content/plugins/google-sitemap-generator/bluff.php
wp-content/plugins/google-sitemap-generator/king.jeen
wp-content/plugins/google-sitemap-generator/admins/
wp-content/plugins/google-sitemap-generator/admins.asp
wp-content/plugins/google-sitemap-generator/admins.php
wp-content/plugins/google-sitemap-generator/wp.zip
wp-content/plugins/google-sitemap-generator/sitemap-core.php/templates/beez/WSO.php
wp-content/plugins/wp-symposium/server/php/ngentod.php
wp-content/plugins/wp-symposium/server/php/vuln.php
magon.php
wp-content/themes/NativeChurch/download/download.php?file=../../../../wp-config.php
themes/NativeChurch/shell.php
themes/NativeChurch/up.php
themes/NativeChurch/succes.php
themes/NativeChurch/upload.php
themes/NativeChurch/acces.php
themes/NativeChurch/good.php
themes/NativeChurch/god.php
themes/NativeChurch/load.php
themes/NativeChurch/c99.php
themes/NativeChurch/IndoXploit.php
themes/NativeChurch/mini.php
themes/NativeChurch/dih.php
themes/NativeChurch/kontol.php
themes/NativeChurch/jembud.php
themes/NativeChurch/ups.php
themes/NativeChurch/go.php
themes/NativeChurch/wp.php
themes/linenity/up.php
themes/linenity/succes.php
themes/linenity/c99.php
themes/linenity/1n73ction.php
themes/linenity/IndoXploit.php
themes/linenity/acces.php
themes/linenity/shell.php
themes/linenity/ok.php
themes/linenity/vuln.php
themes/linenity/index.php
themes/linenity/sukses.php
themes/linenity/upup.php
themes/linenity/dapet.php
themes/linenity/mini.php
themes/linenity/minishell.php
themes/linenity/b37k.php
themes/linenity/derayganteng.php
themes/linenity/LOoLzeC.php
themes/linenity/gogo.php
themes/linenity/go.php
themes/lote27/shell.php
themes/lote27/up.php
themes/lote27/god.php
themes/lote27/shell.php
themes/lote27/wp.php
themes/lote27/acces.php
themes/lote27/ok.php
themes/lote27/c99.php
themes/lote27/indrajith.php
themes/lote27/mini.php
themes/lote27/minishell.php
themes/lote27/deray.php
themes/lote27/upload.php
themes/lote27/vuln.php
themes/churchope/succes.php
themes/churchope/sukses.php
themes/churchope/b37k.php
themes/churchope/c99.php
themes/churchope/local.php
themes/churchope/root.php
themes/churchope/index.php
themes/churchope/myshell.php
themes/churchope/vuln.php
themes/churchope/up.php
themes/churchope/akses.php
themes/churchope/acces.php
themes/churchope/good.php
themes/churchope/jembut.php
themes/churchope/kontol.php
themes/churchope/bangsad.php
themes/churchope/dih.php
themes/churchope/anjing.php
themes/churchope/maqlosalto.php
themes/churchope/uplpad.php
themes/authentic/shell.php
themes/authentic/up.php
themes/authentic/upload.php
themes/authentic/succes.php
themes/authentic/acces.php
themes/authentic/mini.php
themes/authentic/root.php
themes/authentic/found.php
themes/authentic/upup.php
themes/authentic/upload.php
themes/authentic/indrajith.php
themes/authentic/shell.php
themes/authentic/jembut.php
themes/authentic/akses.php
themes/authentic/c99.php
themes/authentic/god.php
themes/authentic/good.php
themes/authentic/gud.php/themes/antioch/shell.php
themes/antioch/acces.php
themes/antioch/good.php
themes/antioch/up.php/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php
wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php
wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php
wp-content/plugins/php-event-calendar/server/classes/uploadify.php
wp-content/plugins/php-event-calendar/server/classes/gay.php
wp-content/plugins/php-event-calendar/server/classes/up.php/index.php?option=com_cckjseblod&task=download&file=configuration.php
wp-content/themes/nuance/functions/jwpanel/scripts/valums_uploader/php.php
functions/jwpanel/scripts/valums_uploader/php.php
wp-content/themes/lightspeed/framework/_scripts/valums_uploader/php.php
framework/_scripts/valums_uploader/php.php
wp-content/themes/saico/framework/_scripts/valums_uploader/php.php
wp-content/themes/eptonic/
wp-content/themes/eptonic/functions/jwpanel/scripts/valums_uploader/php.php
wp-content/themes/skinizer/framework/_scripts/valums_uploader/php.php
wp-content/themes/area53/framework/_scripts/valums_uploader/php.php
wp-content/themes/blinc/framework/_scripts/valums_uploader/php.php
cmd/adm.html
cmd/adm.php
user-admin/
admin-user/
usuarios/
usuario/
hacker/
hack/
special/
administrator/
administartor/console.php
administartor/console.asp
administartor/console.html
pages/webadmin.php
pages/webadmin.html
pages/webadmin.asp
pages/moderator.asp
pages/moderator.html
pages/moderator.php
moderator/
webadmin/
adminarea/
bb-admin/
adminLogin/
admin_area/
super-admin/
panel-administracion/
instadmin/
memberadmin/
console/
moderatorconsole/
administratorlogin/
adm/
mda/
123456789/
111/
123/
132/
hack/console.php
hack/console.html
hack/console.asp
op.php
op.asp
op.html
setting/admin.asp
setting/admin.php
setting/admin.html
setting/
setting.html
settin.php
web/setting.php
web/setting.html
setting/web.php
setting/web.html
user/admin.html
user/admin.php
brute/
brute/admin.php
brute/admin.html
admin/account.php
admin/index.php
admin/login.php
admin/admin.php
admin/account.php
admin/console.php
super/admin.php
super/admin.html
site/login.html
.bash_history
.bashrc
.cache
.config
.cvs
.cvsignore
.forward
.git
.git-rewrite
.git/HEAD
.git/config
.git/index
.git/logs/
.git_release
.gitattributes
.gitconfig
.gitignore
.gitk
.gitkeep
.gitmodules
.gitreview
.history
.hta
.htaccess
.htpasswd
.listing
.listings
.mysql_history
.passwd
.perf
.profile
.rhosts
.sh_history
.ssh
.subversion
.svn
.svn/entries
.svnignore
.swf
.web
.well-known/acme-challenge
.well-known/apple-app-site-association
.well-known/apple-developer-merchantid-domain-association
.well-known/ashrae
.well-known/assetlinks.json
.well-known/autoconfig/mail
.well-known/browserid
.well-known/caldav
.well-known/carddav
.well-known/change-password
.well-known/coap
.well-known/core
.well-known/csvm
.well-known/dnt
.well-known/dnt-policy.txt
.well-known/dots
.well-known/ecips
.well-known/enterprise-transport-security
.well-known/est
.well-known/genid
.well-known/hoba
.well-known/host-meta
.well-known/host-meta.json
.well-known/http-opportunistic
.well-known/idp-proxy
.well-known/jmap
.well-known/jwks.json
.well-known/keybase.txt
.well-known/looking-glass
.well-known/matrix
.well-known/mercure
.well-known/mta-sts.txt
.well-known/mud
.well-known/nfv-oauth-server-configuration
.well-known/ni
.well-known/nodeinfo
.well-known/oauth-authorization-server
.well-known/openid-configuration
.well-known/openorg
.well-known/openpgpkey
.well-known/pki-validation
.well-known/posh
.well-known/pvd
.well-known/reload-config
.well-known/repute-template
.well-known/resourcesync
.well-known/security.txt
.well-known/stun-key
.well-known/thread
.well-known/time
.well-known/timezone
.well-known/uma2-configuration
.well-known/void
.well-known/webfinger
administrator/console.php
admin/console.html
administartor/console.html
admin/admin.html
admin_area/admin.php
admin_area/login.php
siteadmin/login.php
siteadmin/index.php
siteadmin/login.html
admin/account.html
admin/account.php
admin/index.html
admin/login.html
admin/admin.html
123456789/
qwerty/
admin_area/index.php
bb-admin/index.php
bb-admin/login.php
bb-admin/admin.php
bb-admin/console.php
admin/home.php
admin/qwerty.php
admin/qwerty.html
qwerty/qwerty.php
qwerty/qwerty.html
admin/security.html
admin/security.php
admin_area/login.html
adminchik/
adminchik/login.html
admin_area/index.html
admin/controlpanel.php
admin.php
cp/
admin.html
admincp/index.asp
admincp/login.asp
admincp/index.html
admin/account.html
adminpanel.html
webadmin.html
webqwerty/index.html
webqwerty/login.html
webqwerty/home.html
webadmin/index.html
webadmin/admin.html
webadmin/login.html
admin/admin_login.html
admin_login.html
panel-administracion/login.html
admin/cp.php
cp.php
administrator/index.php
administrator/login.php
nsw/admin/login.php
webadmin/login.php
admin/admin_login.php
admin_login.php
administrator/account.php
administrator.php
admin_area/admin.html
pages/admin/admin-login.php
admin/admin-login.php
admin-login.php
bb-admin/index.html
bb-admin/login.html
acceso.php
bb-admin/admin.html
admin/home.html
login.php
modelsearch/login.php
moderator.php
moderator/login.php
moderator/admin.php
account.php
admin/account.php
admin/account.html
pages/administartor.php
pages/admin.ph
ppages/administartor.html
pages/admin.html
pages/user.php
pages/user.html
pages/index.php
pages/index.html
pages/admin/admin-login.html
admin/admin-login.html
admin-login.html
pages/cp.php
pages/cp.html
controlpanel.php
control/panel.php
control/panel.html
admincontrol.php
admin/adminLogin.html
adminLogin.html
admin/adminLogin.html
home.html
rcjakar/admin/login.php
adminarea/index.html
adminarea/admin.html
webadmin.php
webadmin/index.php
webadmin/admin.php
admin/controlpanel.html
admin.html
admin/cp.html
cp.html
admin/panel.php
admin/panel.html
adminpanel.php
moderator.html
administrator/index.html
administrator/login.html
user.html
administrator/account.html
administrator.html
login.html
qwerty/index.html
qwerty/index.php
modelsearch/login.html
moderator/login.html
adminarea/login.html
panel-administracion/index.html
panel-administracion/admin.html
special/admin.html
admin/special.html
modelsearch/index.html
modelsearch/admin.html
admincontrol/login.html
adm/index.html
adm.html
pages/adm.php
pages/adm.html
moderator/admin.html
user.php
hacked.phtml
sea.phtml
web.phtml
root.phtml
r00t.phtml
idx.phtml
indoxploit.phtml
wp-config.phtml
wp.phtml
1.phtml
2.phtml
3.phtml
4.phtml
5.phtml
6.phtml
7.phtml
8.phtml
9.phtml
10.phtml
11.phtml
12.phtml
13.phtml
14.phtml
15.phtml
16.phtml
17.phtml
kontol.phtml
memek.phtml
peju.phtml
onion.phtml
malay.phtml
69.phtml
crack.phtml
hindi.phtml
indo.phtml
1945.phtml
Sym.phtml
lax.phtml
00.phtml
938383828272.phtml
ngentod.phtml
y0y0.phtml
galau.phtml
pc.phtml
pacman.phtml
45.phtml
09999888.phtml
crotz.phtml
kagetguababi.phtml
indonesia.phtml
terserah.phtml
wp-user.phtml
robots.phtml
ez.phtml
info.phtml
php.phtml
.-phtml
-_-.phtml
r.phtml
babi.phtml
data.phtml
ies.phtml
m3m3k.phtml
anon.phtml
anonghost.phtml
anonymous.phtml
anon.phtml
k2ll33d.phtml
k2ll.phtml
Uploader.phtml
up
up.phtml
upload.phtml
upload
WSO.phtml
dz.phtml
DZ.phtml
cpanel.phtml
cpn.phtml
sos.phtml
term.phtml
Sec-War.phtml
sql.phtml
b374.phtml
ssl.phtml
mysql.phtml
WolF.phtml
madspot.phtml
Cgishell.phtml
killer.phtml
changeall.phtml
2.phtml
Sh3ll.phtml
dz0.phtml
XAttacker.php
Xattacker.php
XAttacker.phtml
Xattacker.phtml
dam.phtml
user.phtml
dom.phtml
mini.phtml
whmcs.phtml
badcode.phtml
b374k.phtml
r00t.phtml
r57.phtml
berandal.phtml
alpashell.phtml
alpa.phtml
alfa.phtml
cyber.phtml
cybershell.phtml
sement.phtml
semen.phtml
gans.phtml
ganz.phtml
wa.phtml
root.phtml
cpanel.phtml
crack.phtml
network.phtml
ghost.phtml
hgt.phtml
hiddenuploader.phtml
team.phtml
nub.phtml
linux.phtml
memekbau.phtml
tembem.phtml
miabi.phtml
mia.phtml
shells.phtml
hidden.phtml
uploader.phtml
tikung.phtml
xxx.phtml
sex.phtml
seks.phtml
download.phtml
downloadbokep.phtml
bokep.phtml
999.phtml
b.phtml
a.phtml
c.phtml
d.phtml
e.phtml
d.phtml
f.phtml
g.phtml
h.phtml
i.phtml
list.phtml
bcd.phtml
bct.phtml
act.phtml
anoncyber.phtml
war.phtml
tools.phtml
tool.phtml
finder.phtml
scan.phtml
anjink.phtml
heker.phtml
hasben.phtml
0t0n9.phtml
exploiter.phtml
xploitz.phtml
xploiter.phtml
online.phtml
124.phtml
123.phtml
door.phtml
wifi.phtml
maniac.phtml
savage.phtml
acil.phtml
crot.phtml
ah.phtml
besar.phtml
kecil.phtml
acx.phtml
heked.phtml
hacked.phtml
andro.phtml
androsec.phtml
1337.phtml
android.phtml
asus.phtml
n7.phtml
404.phtml
tnt.phtml
find.phtml
adm0n.phtml
c99.phtml
gaza.phtml
1.phtml
madspotshell.phtml
info.phtml
egyshell.phtml
Sym.phtml
c22.phtml
c100.phtml
configuration.phtml
g.phtml
ls.phtml
Cpanel.phtml
k.phtml
zone-h.phtml
images/user.phtml
images/Sym.phtml
cp.phtml
images/madspotshell.phtml
images/root.phtml
images/whmcs.phtml
images/index.phtml
images/2.phtml
images/dz.phtml
images/cpn.phtml
images/changeall.phtml
images/Cgishell.phtml
images/sql.phtml
0day.phtml
images/admin.phtml
h4xor.phtml
dz.phtml
L3b.phtml
d.phtml
images/d.phtml
images/L3b.phtml
sado.phtml
admin1.phtml
upload.phtml
up.phtml
admin2.phtml
uploads.phtml
sa.phtml
sysadmins/
admin1/
sniper.phtml
Sym.phtml
images/phtml
r57.phtml
sql-new.phtml
shell.phtml
sa.phtml
admin.phtml
sa2.phtml
2.phtml
hmei7.phtml
home.phtml
bac0d.phtml
badc0de.phtml
bacod.phtml
tolol.phtml
xt.phtml
xoxo.phtml
kontolkejepit.phtml
save_gallery.phtml
saves.phtml
save_video.phtml
wp-config.phtml
configuration.phtml
c0de.phtml
sh3ll.phtml
gaza.phtml
up.phtml
sh33l.phtml
adminer.phtml
Adminer.phtml
darkshell.phtml
..phtml
.phtml
system.phtml
error.phtml
inside.phtml
ewe.phtml
eue.phtml
kimak.phtml
ak47.phtml
sg.phtml
xianjing.phtml
upload.phtml
uploads.phtml
jembut.phtml
shell.phtml
amad.phtml
t00.phtml
dz.phtml
Black.phtml
r00t-s3c.phtml
c.phtml
vaga.phtml
killer.phtml
whmcs.phtml