-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathDorks.txt
14000 lines (14000 loc) · 457 KB
/
Dorks.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
inurl /bug bounty
inurl : / security
inurl:security.txt
inurl:security "reward"
inurl : /responsible disclosure
inurl : /responsible-disclosure/ reward
inurl : / responsible-disclosure/ swag
inurl : / responsible-disclosure/ bounty
inurl:'/responsible disclosure' hoodie
responsible disclosure swag r=h:com
responsible disclosure hall of fame
responsible disclosure europe
responsible disclosure white hat
white hat program
insite:"responsible disclosure" -inurl:nl
intext responsible disclosure
site eu responsible disclosure
site .nl responsible disclosure
site responsible disclosure
responsible disclosure:sites
responsible disclosure r=h:nl
responsible disclosure r=h:uk
responsible disclosure r=h:eu
responsible disclosure bounty r=h:nl
responsible disclosure bounty r=h:uk
responsible disclosure bounty r=h:eu
responsible disclosure swag r=h:nl
responsible disclosure swag r=h:uk
responsible disclosure swag r=h:eu
responsible disclosure reward r=h:nl
responsible disclosure reward r=h:uk
responsible disclosure reward r=h:eu
"powered by bugcrowd" -site:bugcrowd.com
"submit vulnerability report"
site:*.gov.* "responsible disclosure"
intext:"we take security very seriously"
site:responsibledisclosure.com
inurl:'vulnerability-disclosure-policy' reward
intext:Vulnerability Disclosure site:nl
intext:Vulnerability Disclosure site:eu
site:*.*.nl intext:security report reward
site:*.*.nl intext:responsible disclosure reward
"security vulnerability" "report"
inurl"security report"
"responsible disclosure" university
inurl:/responsible-disclosure/ university
buy bitcoins "bug bounty"
inurl:/security ext:txt "contact"
"powered by synack"
intext:responsible disclosure bounty
inurl: private bugbountyprogram
inurl:/.well-known/security ext:txt
inurl:/.well-known/security ext:txt intext:hackerone
inurl:/.well-known/security ext:txt -hackerone -bugcrowd -synack -openbugbounty
inurl:reporting-security-issues
inurl:security-policy.txt ext:txt
site:*.*.* inurl:bug inurl:bounty
site:help.*.* inurl:bounty
site:support.*.* intext:security report reward
intext:security report monetary inurl:security
intext:security report reward inurl:report
site:security.*.* inurl: bounty
site:*.*.de inurl:bug inurl:bounty
site:*.*.uk intext:security report reward
site:*.*.cn intext:security report reward
"vulnerability reporting policy"
"van de melding met een minimum van een" -site:responsibledisclosure.nl
inurl:/security ext:txt "contact"
inurl:responsible-disclosure-policy
"If you believe you've found a security vulnerability"
intext:"BugBounty" and intext:"BTC" and intext:"reward"
intext:bounty inurl:/security
inurl:"bug bounty" and intext:"€" and inurl:/security
inurl:"bug bounty" and intext:"$" and inurl:/security
inurl:"bug bounty" and intext:"INR" and inurl:/security
inurl:/security.txt "mailto*" -github.com -wikipedia.org -portswigger.net -magento
/trust/report-a-vulnerability
site:*.edu intext:security report vulnerability
"cms" bug bounty
"If you find a security issue" "reward"
"responsible disclosure" intext:"you may be eligible for monetary compensation"
inurl: "responsible disclosure", "bug bounty", "bugbounty"
responsible disclosure inurl:in
site:*.br responsible disclosure
site:*.at responsible disclosure
site:*.be responsible disclosure
site:*.au responsible disclosure
0admin/
0manager/
"/1000/system_information.asp"
"100% | 50% | 25%" "Back to gallery" inurl:"show.php?imageid="
10. google = kietu/hit_js.php, kietu/hit_js.php
11. keyword : “Powered by phpBB 2.0.6”
12. keyword : “powered by CubeCart 3.0.6”
13. keyword : “powered by paBugs 2.0 Beta 3”
14. keyword : “powered eyeOs”
14. powered by AshNews”, AshNews atau /ashnews.php
15. keyword : /phorum/login.php
15. .php?bodyfile=
16. ihm.php?p=*
16. /includes/orderSuccess.inc.php?glob=
17. forums.html
18. /default.php?page=home
© 1998 - 2010 Video Battle Script
"1999-2004 FuseTalk Inc" -site:fusetalk.com
19. /folder.php?id=
1. my_egery site:.org
"2003 DUware All Rights Reserved"
"2004-2005 ReloadCMS Team."
"2004 - 2018 iboss, Inc. All rights reserved."
"© 2004 PHPKick.de Version 0.8"
"2005 SugarCRM Inc. All Rights Reserved" "Powered By SugarCRM"
"2005 www.frank-karau.de" | "2006 www.frank-karau.de"
"2006 by www.mani-stats-reader.de.vu"
"2007 BookmarkX script"
"2007 RADIOZAZA www.radiozaza.de? istek hatti Version 2.5"
"2007 Rafal Kucharski"
"© 2008 DevWorx - devworx.somee.com"
inurl /bug bounty
inurl : / security
inurl:security.txt
inurl:security "reward"
inurl : /responsible disclosure
inurl : /responsible-disclosure/ reward
inurl : / responsible-disclosure/ swag
inurl : / responsible-disclosure/ bounty
inurl:'/responsible disclosure' hoodie
responsible disclosure swag r=h:com
responsible disclosure hall of fame
responsible disclosure europe
responsible disclosure white hat
white hat program
insite:"responsible disclosure" -inurl:nl
intext responsible disclosure
site eu responsible disclosure
site .nl responsible disclosure
site responsible disclosure
responsible disclosure:sites
responsible disclosure r=h:nl
responsible disclosure r=h:uk
responsible disclosure r=h:eu
responsible disclosure bounty r=h:nl
responsible disclosure bounty r=h:uk
responsible disclosure bounty r=h:eu
responsible disclosure swag r=h:nl
responsible disclosure swag r=h:uk
responsible disclosure swag r=h:eu
responsible disclosure reward r=h:nl
responsible disclosure reward r=h:uk
responsible disclosure reward r=h:eu
"powered by bugcrowd" -site:bugcrowd.com
"powered by hackerone" "submit vulnerability report"
"submit vulnerability report"
site:responsibledisclosure.com
inurl:'vulnerability-disclosure-policy' reward
intext:Vulnerability Disclosure site:nl
intext:Vulnerability Disclosure site:eu
site:*.*.nl intext:security report reward
site:*.*.nl intext:responsible disclosure reward
"security vulnerability" "report"
inurl"security report"
"responsible disclosure" university
inurl:/responsible-disclosure/ university
buy bitcoins "bug bounty"
inurl:/security ext:txt "contact"
"powered by synack"
intext:responsible disclosure bounty
inurl: private bugbountyprogram
inurl:/.well-known/security ext:txt
inurl:/.well-known/security ext:txt intext:hackerone
inurl:/.well-known/security ext:txt -hackerone -bugcrowd -synack -openbugbounty
inurl:reporting-security-issues
inurl:security-policy.txt ext:txt
site:*.*.* inurl:bug inurl:bounty
site:help.*.* inurl:bounty
site:support.*.* intext:security report reward
intext:security report monetary inurl:security
intext:security report reward inurl:report
site:security.*.* inurl: bounty
site:*.*.de inurl:bug inurl:bounty
site:*.*.uk intext:security report reward
site:*.*.cn intext:security report reward
"vulnerability reporting policy"
"van de melding met een minimum van een" -site:responsibledisclosure.nl
inurl:/security ext:txt "contact"
inurl:responsible-disclosure-policy
"Submission Form powered by Bugcrowd" -bugcrowd.com
"If you believe you've found a security vulnerability"
intext:"BugBounty" and intext:"BTC" and intext:"reward"
intext:bounty inurl:/security
inurl:"bug bounty" and intext:"€" and inurl:/security
inurl:"bug bounty" and intext:"$" and inurl:/security
inurl:"bug bounty" and intext:"INR" and inurl:/security
inurl:/security.txt "mailto*" -github.com -wikipedia.org -portswigger.net -magento
/trust/report-a-vulnerability
site:twitter.com bug bounty swag
site:*.edu intext:security report vulnerability
"cms" bug bounty
"If you find a security issue" "reward"
"responsible disclosure" intext:"you may be eligible for monetary compensation"
inurl: "responsible disclosure", "bug bounty", "bugbounty"
Inurl responsible disclosure $50
Inurl bug bounty $50
Inurl bounty $50
"© 2009 Azimut Technologie"
"2009 Jorp"
2009 © Satellite-X
© 2010 Powered by Subrion CMS
20. main.php?pagina=
21. Key Word: ( Nuke ET Copyright 2004 por Truzone. ) or ( *.edu.*/modules.php?name=myguests ) or ( “powered by MyGuests”)
22. application.php?base_path=
23. inurlp:hplivehelper
24. inurlp:hpnuke
25. key word : “powered by Fantastic News v2.1.2”
26. keyword: “powered by smartblog” AND ?page=login
27. /forum/
28. keyword:”Powered By FusionPHP”
29. shoutbox/expanded.php filetypep:hp
2. xgery site:.org
30. /osticket/
31. keyword : “Powered by iUser”
32. “static.php?load=”
33. keyworld : /phpcoin/login.php
34. keyworld: /phpGedview/login.php site:
35. /folder.php?id=
3. coppermine site:.org
4. 4nAlbum site:.org
"4images Administration Control Panel"
4images Administration Control Panel
5. inurlP:NphpBB2 site:.org
6. ihm.php?p=
724CMS Powered, 724CMS Version 4.59. Enterprise
737en.php?id=
7. Keyword : “powered by MyLinks”
+":8080" +":3128" +":80" filetype:txt
+":8080? +":3128? +":80? filetype:txt
+":8080″ +":3128″ +":80″ filetype:txt
8. /modules.php?name=myguests
94FBR "ADOBE PHOTOSHOP"
94FBR “ADOBE PHOTOSHOP”
9. /Popper/index.php?
© 2005-2006 Powered by eSyndiCat Directory Software
"© 2005-2006 Powered by eSyndiCat Link Exchange Script"
©2005 Ocean12 Technologies. All rights reserved
© 2007 by Lama Software - Accomm Solutions GmbH & Co. KG
aadmin/
about.asp?cartID=
aboutbook.php?id=
aboutchiangmai/details.php?id=
"About Mac OS Personal Web Sharing"
“About Mac OS Personal Web Sharing”
about.php?cartID=
aboutprinter.shtml
abouttheregions_province.php?id=
abouttheregions_village.php?id=
about_us.php?id=
"About Winamp Web Interface" intitle:"Winamp Web Interface"
abroad/page.asp?cid=
abroad/page.php?cid=
"Absolute Poll Manager XE"
accdb OR accde intitle:"index of" -pub -google -books
acceso.%XT%
access/
"access denied for user" "using password"
“access denied for user” “using password”
"Access Denied" "Powered by Incapsula" ext:php
/access/login.php?path_to_root=
access.%XT%
accinfo.asp?cartId=
accinfo.php?cartId=
acclogin.asp?cartID=
acclogin.php?cartID=
"-- Account dump" ext:sql -git
/account.php?action=
account.php?action= account.php?action=
account.php?action= iurl:”account.php?action=”
account.php?action= iurl:”.php?action=”
account.php?action= .php?action=
accounts/
/accounts.php?command=
accounts.php?command= .php?command=”
"accounts.xlsx" ext:xlsx
accounts.%XT%
acct_login/
ACID "by Roman Danyliw" filetype:php
"AcmlmBoard v1.A2"
?action=
Actionnée par smartblog
?action=pro_show and ?action=disppro
/active/components/xmlrpc/client.php?c[components]=
" ActiveKB v1.5 Copyright ©"
"Active Webcam Page" inurl:8080
"ActualAnalyzer Lite (free) 2.78"+"Copyright © 2006 ActualScripts"
ADAN (view.php ) Sql Injection Vulnerability
“add.asp?bookid=”
add.asp?bookid=
“addcart.asp?”
addcart.asp?
“add_cart.asp?num=”
add_cart.asp?num=
addcart.php?
add_cart.php?num=
addedit.php?root_dir=
Added to cart.asp?c=
addevent.inc.php?agendax_path=
"adding new user" inurl:addnewuser -"there are no domains"
“addItem.asp”
addItem.asp
addItem.php
/addmedia.php?factsfile[$********]=
addmedia.php?factsfile[$LANGUAGE]= phpGedView
add.php?bookid=
/addpost_newpoll.php?addpoll=preview&thispath=
/addpost_newpoll.php?addpoll=preview&thispath= /ubbthreads/
/addpost_newpoll.php?addpoll=preview&thispath= /ubbthreads/”
/addpost_newpoll.php?addpoll=preview&thispath= “/ubbthreads/”
/addpost_newpoll.php?addpoll=preview&thispath= “ubbthreads”
/addpost_newpoll.php?addpoll=preview&thispath= ubbthreads
“add-to-cart.asp?ID=”
add-to-cart.asp?ID=
“addToCart.asp?idProduct=”
addToCart.asp?idProduct=
add-to-cart.php?ID=
Add to Cart.php?id=
addToCart.php?idProduct=
“addtomylist.asp?ProdId=”
addtomylist.asp?ProdId=
addtomylist.php?ProdId=
adm/
adm_auth.%XT%
admin/
admin1/
admin1.htm
admin1.html
admin1.%XT%
admin2.html
admin2.%XT%
admin4_account/
admin4_colon/
admin/account.html
"admin account info" filetype:log
admin account info" filetype:log
admin/account.%XT%
admin/adminLogin.htm
admin/adminLogin.html
admin/admin-login.%XT%
admin/admin_login.%XT%
admin/adminLogin.%XT%
admin/admin.%XT%
admin_area/
adminarea/
admin_area/admin.%XT%
admin_area/login.%XT%
admin_area.%XT%
admin.asp
/admin/auth.php?xcart_dir=
admincontrol/
admin/controlpanel.htm
admin/controlpanel.html
admin/controlpanel.%XT%
admincontrol.%XT%
admincp/
/admincp/auth/checklogin.php?cfgProgDir=
admincp/login.%XT%
admin/cp.%XT%
/admin/doeditconfig.php?thispath=../includes&config[path]=
admin/doeditconfig.php?thispath=../includes&config[path]=
admin/doeditconfig.php?thispath=../includes&config[path]= “admin”
“adminEditProductFields.asp?intProdID=”
adminEditProductFields.asp?intProdID=
adminEditProductFields.php?intProdID=
adminhome.asp
admin/home.%XT%
admin.htm
admin.html
/admin/inc/change_action.php?format_menue=
/admin/include/header.php?repertoire=
admin/index.php?o=
/admin/index.php?o= admin/index.php”
/admin/index.php?o= admin/index.php”;
Admin intitle:"eZ publish administration"
administer/
administr8/
administr8.%XT%
administratie/
administration/
administration.%XT%
administrator/
administratoraccounts/
administrator/account.%XT%
/administrator/components/com_a6mambocredits/admin.a6mambocredits.php?mosConfig_live_site=
administrator/components/com_a6mambocredits/admin.a6mambocredits.php?mosConfig_live_site=
/administrator/components/com_comprofiler/plugin.class.php?mosConfig_absolute_path=
administrator/components/com_comprofiler/plugin.class.php?mosConfig_absolute_path=
administrator/components/com_comprofiler/plugin.class.php?mosConfig_absolute_path= /tools/send_reminders.php?includedir= allinurl:day.php?date=
administrator/components/com_comprofiler/plugin.class.php?mosConfig_absolute_path= /tools/send_reminders.php?includedir= day.php?date=
/administrator/components/com_cropimage/admin.cropcanvas.php?cropimagedir=
administrator/components/com_cropimage/admin.cropcanvas.php?cropimagedir=
administrator/components/com_cropimage/admin.cropcanvas.php?cropimagedir=modules/My_eGallery/index.php?basepath=
administrator/components/com_cropimage/admin.cropcanvas.php?cropimagedir=modules/My_eGery/index.php?basepath=
/administrator/components/com_jcs/jcs.function.php?mosConfig_absolute_path=
/administrator/components/com_jcs/view/register.php?mosConfig_absolute_path=
/administrator/components/com_joom12pic/admin.joom12pic.php?mosConfig_live_site=
/administrator/components/com_joomlaradiov5/admin.joomlaradiov5.php?mosConfig_live_site=
/administrator/components/com_linkdirectory/toolbar.linkdirectory.html.php?mosConfig_absolute_ path=
administrator/components/com_linkdirectory/toolbar.linkdirectory.html.php?mosConfig_absolute_path=
/administrator/components/com_mgm/help.mgm.php?mosConfig_absolute_path=
administrator/components/com_mgm/help.mgm.php?mosConfig_absolute_path=
administrator/components/com_mgm/help.mgm.php?mosConfig_absolute_path=
/administrator/components/com_peoplebook/param.peoplebook.php?mosConfig_absolute_path=
administrator/components/com_peoplebook/param.peoplebook.php?mosConfig_absolute_path=
/administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path=
administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path=
administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path= /com_remository/
administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path= “com_remository
administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path= “com_remository”
administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path= com_remository
administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path= index.php?option=com_remository
administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path= “Mambo”
administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path= Mambo
administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path= /tags.php?BBCodeFile=
/administrator/components/com_***ring/admin.***ring.docs.php?component_dir=
/administrator/components/com_serverstat/install.serverstat.php?mosConfig_absolute_path=
/administrator/components/com_serverstat/inst.serverstat.php?mosConfig_absolute_path=
/administrator/components/com_serverstat/inst.serverstat.php?mosConfig_absolute_path= “com_serverstat”
/administrator/components/com_serverstat/inst.serverstat.php?mosConfig_absolute_path= com_serverstat
/administrator/components/com_uhp/uhp_config.php?mosConfig_absolute_path=
administrator/components/com_webring/admin.webring.docs.php?component_dir=
administratorlogin/
administrator_login.asp
administratorlogin.asp
administrator/login.%XT%
administratorlogin.%XT%
administrators/
administrators.%XT%
administrator.%XT%
administrivia/
adminitem/
adminitems/
adminitems.%XT%
adminitem.%XT%
adminLogin/
admin/login.asp
admin_login.asp
adminlogin.asp
admin/login.htm
admin/login.html
admin-login.%XT%
admin/login.%XT%
admin_login.%XT%
adminlogin.%XT%
/admin_modules/admin_module_deldir.inc.php?config[path_src_include]=
adminpanel/
adminpanel.%XT%
/admin.php?cal_dir=
admin.php?cal_dir=
/admin.php?page=
admin.php?page=
adminpro/
admins/
adminsite/
admins.%XT%
AdminTools/
admin.%XT%
adm.%XT%
ADP Forum 2.0.3 is powered by VzScripts
/adp/self/service/login
"ADS-B Receiver Live Dump1090 Map "
"advanced_search_results.php?gender="
“advSearch_h.asp?idCategory=”
advSearch_h.asp?idCategory=
advSearch_h.php?idCategory=
"# AdwCleaner" ext:txt
/afb-3-beta-2007-08-28/_includes/settings.inc.php?approot=
affich.php?base=
“affiliate-agreement.cfm?storeid=”
affiliate-agreement.cfm?storeid=
“affiliate.asp?ID=”
affiliate.asp?ID=
"Affiliate Network Pro"
affiliate.php?ID=
“affiliates.asp?id=”
affiliates.asp?id=
affiliates.php?id=
affiliate.%XT%
ageid=
/agendax/addevent.inc.php?agendax_path=
agendax/addevent.inc.php?agendax_path=
age.php?file=
age.php?id=
ages.php?id=
AIM buddy lists
"air confirmation" "passenger(s)"
/akocomments.php?mosConfig_absolute_path=
akocomments.php?mosConfig_absolute_path=
aktuelles/meldungen-detail.php?id=
aktuelles/veranstaltungen/detail.php?id=
album.asp?pic= .jpg cat=
/album_portal.php?phpbb_root_path=
album_portal.php?phpbb_root_path=
alegrocart
/al_initialize.php?alpath=
al_initialize.php?alpath=
/alladdedit.php?root_dir=
/alladdevent.inc.php?agendax_path=
/alladmin.php?cal_dir=
/allaffich.php?base=
/allalbum_portal.php?phpbb_root_path=
/allcom_extended_registration
/allcontacts.php?cal_dir=
/allconvert-date.php?cal_dir=
/alldefault.php?page=
/alldefault/theme.php?THEME_DIR=
/alldisplayCategory.php?basepath=
/alleditor.php?root=
/allexibir.php?abre=
/allexibir.php?get=
/allexibir.php?lang=
/allexibir.php?p=
/allexibir.php?page=
/allexpanded.php?conf=
/all_functions.php?prefix
/all_functions.php?prefix=
/allgrademade/index.php?page=
/allheader.php?systempath=
/all/include/init.inc.php?CPG_M_DIR=
/allinclude.php?gorumDir=
/all/includes/mx_functions_ch.php?phpbb_root_path=
/allindex2.php?********=
/allindex2.php?a=
/allindex2php?aa=
/allindex2.php?acao=
/allindex2.php?b=
/allindex2.php?c=
/allindex2.php?cal=
/allindex2.php?cont=
/allindex2.php?content=
/allindex2.php?d=
/allindex2.php?directfile=
/allindex2.php?e=
/allindex2.php?f=
/allindex2.php?funcion=
/allindex2.php?g=
/allindex2.php?gorumdir=
/allindex2.php?h=
/allindex2.php?i=
/allindex2.php?j=
/allindex2.php?k=
/allindex2.php?l=
/allindex2.php?lang=
/allindex2.php?ll=
/allindex2.php?lnk=
/allindex2.php?lv1=
/allindex2.php?m=
/allindex2.php?n=
/allindex2.php?o=
/allindex2.php?p=
/allindex2.php?pag=
/allindex2.php?path=
/allindex2.php?pg=
/allindex2.php?prefix=
/allindex2.php?q=
/allindex2.php?r=
/allindex2.php?root_PATH=
/allindex2.php?s=
/allindex2.php?server=
/allindex2.php?sub=
/allindex2.php?sub2=
/allindex2.php?t=
/allindex2.php?theme=
/allindex2.php?u=
/allindex2.php?v=
/allindex2.php?x=
/allindex2.php?y=
/allindex2.php?z=
/allindex3php?aa=
/allindex5.php?********=
/allindex5.php?****=
/allindex5.php?cat=
/allindex5.php?configFile=
/allindex5.php?cont=
/allindex5.php?content=
/allindex5.php?do=
/allindex5.php?inc=
/allindex5.php?include=
/allindex5.php?lang=
/allindex5.php?lv1=
/allindex5.php?m=
/allindex5.php?main=
/allindex5.php?open=
/allindex5.php?p=
/allindex5.php?pag=
/allindex5.php?page=
/allindex5.php?pagina=
/allindex5.php?pg=
/allindex5.php?root=
/allindex5.php?site=
/allindex5.php?visualizar=
/allindex5.php?x=
/allindex.php?a=
/allindex.php?acao=
/allindex.php?action=
/allindex.php?b=
/allindex.php?c=
/allindex.php?cal=
/allindex.php?configFile=
/allindex.php?d=
/allindex.php?directfile=
/allindex.php?e=
/allindex.php?f=
/allindex.php?funcion=
/allindex.php?g=
/allindex.php?gorumdir=
/allindex.php?h=
/allindex.php?i=
/allindex.php?include=
/allindex.php?ir=
/allindex.php?j=
/allindex.php?k=
/allindex.php?l=
/allindex.php?ll=
/allindex.php?lng=../../include/main.inc&G_PATH=
/allindex.php?lnk=
/allindex.php?loc=
/allindex.php?lv1=
/allindex.php?m=
/allindex.php?meio.php=
/allindex.php?middle=
/allindex.php?n=
/allindex.php?o=
/allindex.php?open=
/allindex.php?p=
/allindex.php?page=
/allindex.php?pageurl=
/allindex.php?path=
/allindex.php?pg=
/allindex.php?prefix=
/allindex.php?q=
/allindex.php?r=
/allindex.php?root_PATH=
/allindex.php?s=
/allindex.php?secao=
/allindex.php?seite=
/allindex.php?server=
/allindex.php?sub=
/allindex.php?sub2=
/allindex.php?t=
/allindex.php?theme=
/allindex.php?u=
/allindex.php?v=
/allindex.php?visualizar=
/allindex.php?x=
/allindex.php?y=
/allindex.php?z=
/allindex_table.php?root_dir=
/allinitdb.php?absolute_path=
/allinit.inc.php?CPG_M_DIR=
/allinit.php?HTTP_POST_VARS=
allintext:"Browse Blogs by Category"
allintext:"Browse our directory of our members top sites or create your own for free!"
allintext:Copyright Smart PHP Poll. All Rights Reserved. -exploit
allintext:D.N.I filetype:xls
allintext:"fs-admin.php"
allintext:"Home Member Search Chat Room Forum Help/Support privacy policy"
allintext:'HttpFileServer 2.3k'
allintext:" If you would like to contact us, our email address is" traffic
allintext: /iissamples/default/
allintext:"Latest Pictures" Name Gender Profile Rating
allintext: "Please login to continue..." "ZTE Corporation. All rights reserved."
allintext:"Powered By Buddy Zone"
allintext:"Powered by LionMax Software" "WWW File Share"
allintext:"Powered by: TotalCalendar"
allintext: /qcodo/_devtools/codegen.php
allintext:"SuperCali Event Calendar"
allintext: "This site is powered by IndexScript"
allintext:"WebServerX Server at"
allintitle:admin.php
allintitle:aspjar.com guestbook
allintitle: Axis 2.10 OR 2.12 OR 2.30 OR 2.31 OR 2.32 OR 2.33 OR 2.34 OR 2.40 OR 2.42 OR 2.43 "Network Camera "
allintitle:Brains, Corp. camera
allintitle:"DVR login"
allintitle: EDR1600 login | Welcome
allintitle: EDR1600 login | Welcome
allintitle:Edr1680 remote viewer
allintitle: EDR400 login | Welcome
allintitle: EDR400 login | Welcome
allintitle: EverFocus | EDSR | EDSR400 Applet
allintitle:"FirstClass Login"
allintitle: "Flexi Press System"
allintitle:"Forum Post Assistant :" ext:php -site:joomla.org
allintitle: "index of/admin"
allintitle: “index of/admin”
allintitle:"Index of /Admin/Common" | allintext:"Parent Directory"
allintitle: "index of/root"
allintitle: “index of/root”
allintitle:"Index of /ThinkPHP" | inurl: "/ThinkPHP/"
allintitle: "MCgallery 0.5b"
allintitle:Netscape FastTrack Server Home Page
allintitle:"Network Camera NetworkCamera"
allintitle:”Network Camera NetworkCamera”
allintitle:*.php?filename=*
allintitle:.php?filename=
allintitle:*.php?logon=*
allintitle:.php?logon=
allintitle:*.php?page=*
allintitle:.php?page=
allintitle: powered by DeluxeBB
allintitle: restricted filetype:doc site:gov
allintitle:restricted filetype:doc site:gov
allintitle: restricted filetype :mail
allintitle: sensitive filetype:doc
allintitle:"SyncThru Web Service"
allintitle:.."Test page for Apache Installation.."
allintitle:..”Test page for Apache Installation..”
allintitle:"UniMep Station Controller"
allintitle:"Welcome to the Cyclades"
allintitle:”Welcome to the Cyclades”
allinur:com_extended_registration
allinurl: admin mdb
allinurl:admin mdb
allinurl: aid "com_xfaq"
allinurl:"article.download.php"
allinurl:asdm.jnlp
allinurl:auth_user_file.txt
allinurl:awstats.pl?config=
allinurl:awstats.pl ext:pl
allinurl:.br/index.php?loc=
allinurl:buyer/index.php?ProductID=
allinurl:casting_view.php?adnum=
allinurl:cdkey.txt
allinurl:"channel_detail.php?chid="
allinurl: cid"modules/classifieds/index.php?pa=Adsview"
allinurl:clientsignup.php "classifieds"
allinurl:"com_accombo"
allinurl: "com_actualite"
allinurl:"com_ahsshop"do=default
allinurl: "com_alberghi" detail
allinurl:"com_candle"
allinurl:"com_cinema"
allinurl: com_clasifier
allinurl:com_comprofiler
allinurl: "com_estateagent"
allinurl:"com_extcalendar"
allinurl: "com_galeria"
allinurl: com_gallery "func"
allinurl:"com_garyscookbook"
allinurl: "com_glossary"
allinurl: "com_joovideo" detail
allinurl:com_jpad
allinurl: com_mcquiz "tid"
allinurl:"com_na_content"
allinurl:"com_neogallery"
allinurl:"com_n-gallery"
allinurl: com_paxxgallery "userid"
allinurl: com_pcchess "user_id"
allinurl:com_pccookbook
allinurl: com_quiz"tid"
allinurl: "com_rapidrecipe"user_id
allinurl:"com_restaurante"
allinurl: com_ricette
allinurl:"com_simpleshop"
allinurl:control/multiview
allinurl:"detResolucion.php?tipodoc_id="
allinurl:DialogHandler.aspx
allinurl:directory.php?ax=list
allinurl: drive.google.com/open?id=
allinurl: e107_plugins/easyshop/easyshop.php
allinurl:/examples/jsp/snp/snoop.jsp
allinurl:"exchange/logon.asp"
allinurl:”exchange/logon.asp”
allinurl:flashblog.html "flashblog"
allinurl:foldercontent.html?folder=
allinurl:forcedownload.php?file=
allinurl:forum_answer.php?que_id=
allinurl:fullview.php?tempid=
allinurl: galid "index.php?p=gallerypic"
allinurl:/hide_my_wp=
allinurl:http://www.google.co.in/latitude/apps/badge/api?user=
allinurl: id "com_jooget"
allinurl:index.htm?cus?audio
allinurl:index.php?act=publ
allinurl: "index.php?area"galid
allinurl:index.php?db=information_schema
allinurl:"index.php?mod=archives"
allinurl: "index.php?mod=galerie"action=gal
allinurl: "index.php?option=com_doc"
allinurl: "index.php?p=gallerypic img_id"
allinurl: "index.php?p=poll"showresult
allinurl: "index php p shop"categ
allinurl: "index.php?showlink"links
allinurl:"index.php" "site=sglinks"
allinurl:”index.php” “site=sglinks”
allinurl:"index.php?site=" "W-Agora"
allinurl:install/install.php
allinurl:intranet admin
allinurl: In YoUr Dream Lamerz
allinurl:"jokes.php?catagorie="
allinurl:"/lildbi/"
allinurl:links.php?t=search
allinurl:"lyrics_menu/lyrics_song.php?l_id="
allinurl:/m2f_usercp.php?
allinurl:"macgurublog.php?uid="
allinurl:"/main/auth/profile.php" -github -google
allinurl:mc4wp-debug.log ext:log
allinurl:"members.asp?action"
allinurl:moadmin.php -google -github
allinurl:/modernbill/
allinurl: "modules/dictionary"
allinurl: "modules/dictionary/detail.php?id"
allinurl :"modules/eblog"
allinurl: "modules/eEmpregos/index.php"
allinurl :"modules/gallery"
allinurl: "modules/glossaires"
allinurl: "modules MyAnnonces index php pa view"
allinurl: "/modules/myTopics/"
allinurl:"modules/photo/viewcat.php?id"
allinurl: modules-php-name-Siir
allinurl: modules-php-op-modload "req view_cat"
allinurl :"modules/recipe"
allinurl :"/modules/tutorials/"
allinurl: "modules/wfdownloads/viewcat.php?cid"
allinurl:/myspeach/
allinurl: "name Sections op viewarticle artid"
allinurl:".nsconfig" -sample -howto -tutorial
allinurl:offers_buy.php?id=
allinurl:offers.php?id=
allinurl:option=com_livechat
allinurl:option=com_rsmonials
allinurl: op=viewslink&sid=
allinurl:"owa/auth/logon.aspx" -google -github
allinurl: page_id album "photo"
allinurl:/phpress/
allinurl:*.php?txtCodiInfo=
allinurl:.php?txtCodiInfo=
allinurl: "pollBooth.php?op=results"pollID
allinurl:"/questcms/"
allinurl:readmore.php?news_id
allinurl:".r{}_vti_cnf/"
allinurl:”.r{}_vti_cnf/”
allinurl:servlet/SnoopServlet
allinurl:"shop.htm?shopMGID="
allinurl: "showCat.php?cat_id"
allinurl:show_memorial.php?id=
allinurl:"/SilverStream/Meta/"
allinurl:spaw2/dialogs/
allinurl:tseekdir.cgi
allinurl:"/ubbthreads/"
allinurl:"User_info/auth_user_file.txt"
allinurl:"verliadmin"
allinurl:"/*/_vti_pvt/" | allinurl:"/*/_vti_cnf/"
allinurl : /web3news/
allinurl:"weblog/referrers"
allinurl: "wordspew-rss.php"
allinurl :"wp-content/plugins/st_newsletter"
allinurl:"wp-content/plugins/wordpress-popup/views/admin/"
allinurl:"/wp-content/plugins/wp-noexternallinks"
allinurl:wp-content/plugins/wptf-image-gallery/
allinurl:wps/portal/ login
allinurl:/xampp/security.php
allinurl:"xGb.php"
allinurl:"zimbra/?zinitmode=http" -google -github
/alllib.inc.php?pm_path=
/alllib.php?root=
/allmainfile.php?MAIN_PATH=
/allmain.php?page=
/allmain.php?x=
/allmod_mainmenu.php?mosConfig_absolute_path=
/allmodule_db.php?pivot_path=
/all/modules/AllMyGuests/signin.php?_AMGconfig[cfg_serverpath]=
/all*/newbb_plus/*=
/all*/newbb/print.php?forum=*topic_id=*
/all*/news/archive.php?op=*year=*month=*
/allnew-visitor.inc.php?lvc_include_dir=
"allow_call_time_pass_reference" "PATH_INFO"
“allow_call_time_pass_reference” “PATH_INFO”
/allPackages.php?sourcedir=
/all.php?****=
/all.php?a=
/all.php?abrir=
/all.php?act=
/all.php?action=
/all.php?ad=
/all.php?archive=
/all.php?area=
/all.php?article=
/all.php?b=
/all.php?back=
/all.php?base=
/all.php?basedir=
/all.php?bbs=
/all.php?board_no=
/all.php?c=
/all.php?cal_dir=
/all.php?cat=
/all.php?category=
/all.php?choice=
/all.php?class=
/all.php?club_id=
/all.php?cod=
/all.php?cod.tipo=
/all.php?conf=
/all.php?configFile=
/all.php?cont=
/all.php?corpo=
/all.php?cvsroot=
/all.php?d=
/all.php?da=
/all.php?date=
/all.php?debug=
/all.php?debut=
/all.php?default=
/all.php?destino=
/all.php?dir=
/all.php?display=
/all.php?east=
/all.php?f=
/all.php?f_content=
/all.php?file=
/all.php?file_id=
/all.php?filepath=
/all.php?flash=
/all.php?folder=
/all.php?for=
/all.php?form=
/all.php?formatword=
/all.php?from=
/all.php?funcao=
/all.php?function=
/all.php?g=
/all.php?get=
/all.php?go=
/all.php?gorumDir=
/all.php?goto=
/all.php?h=
/all.php?headline=
/all.php?i=
/all.php?inc=
/all.php?include=
/all.php?includedir=
/all.php?inter=
/all.php?item_id=
/all.php?itemid=
/all.php?j=
/all.php?join=
/all.php?jojo=
/all.php?l=
/all.php?la=
/all.php?lan=
/all.php?lang=
/all.php?lest=
/all.php?link=
/all.php?load=
/all.php?loc=
/all.php?m=
/all.php?main=
/all.php?meio=
/all.php?meio.php=
/all.php?menu=
/all.php?menuID=
/all.php?mep=
/all.php?mid=
/all.php?month=
/all.php?mostra=
/all.php?my=
/all.php?n=
/all.php?nav=
/all.php?new=
/all.php?news=
/all.php?next=
/all.php?nextpage=
/all.php?o=
/all.php?op=
/all.php?open=
/all.php?option=
/all.php?origem=
/all.php?p=
/all.php?Page_ID=
/all.php?pageurl=
/all.php?para=
/all.php?part=
/all.php?perm=
/all.php?pg=
/all.php?pid=
/all.php?place=
/all.php?play=
/all.php?plugin=
/all.php?pm_path=
/all.php?poll****=
/all.php?post=
/all.php?pr=
/all.php?prefix=
/all.php?prefixo=
/all.php?q=
/all.php?redirect=
/all.php?ref=
/all.php?refid=
/all.php?regionId=
/all.php?release=
/all.php?release_id=
/all.php?_REQUEST=&_REQUEST[option]=com_content&_REQUEST[Itemid]=1&GLOBALS=&mosConfig_absolute_path=