forked from thomasdesr/Google-dorks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
google-dorks.txt
5141 lines (5138 loc) · 158 KB
/
google-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:cp.php?cl=cp nowmenuid=
allintitle: "index of/admin"
allintitle: "index of/root"
allintitle: restricted filetype :mail
allintitle: restricted filetype:doc site:gov
allintitle: sensitive filetype:doc
allintitle:"Network Camera NetworkCamera"
allintitle:"Welcome to the Cyclades"
allintitle:.."Test page for Apache Installation.."
allintitle:\"Test page for Apache Installation\"
allintitle:admin.php
allintitle:”Welcome to the Cyclades”
allinurl: admin mdb
allinurl: admin mdb
allinurl:".r{}_vti_cnf/"
allinurl:"/*/_vti_pvt/" | allinurl:"/*/_vti_cnf/"
allinurl:"exchange/logon.asp"
allinurl:"index.php" "site=sglinks"
allinurl:.br/index.php?loc=
allinurl:/examples/jsp/snp/snoop.jsp
allinurl:/examples/jsp/snp/snoop.jsp
allinurl:/index.php?file= site:*.dk
allinurl:/index.php?page= site:*.dk
allinurl:\"/*/_vti_pvt/\" | allinurl:\"/*/_vti_cnf/\"
allinurl:admin mdb
allinurl:auth_user_file.txt
allinurl:cdkey.txt
allinurl:control/multiview
allinurl:install/install.php
allinurl:intranet admin
allinurl:servlet/SnoopServlet
allinurl:servlet/SnoopServlet
allinurl:wps/portal/ login
allinurl:”exchange/logon.asp”
allinurl:”index.php” “site=sglinks”
ext:(doc | pdf | xls | txt | ps | rtf | odt | sxw | psw | ppt | pps | xml) (intext:confidential salary | intext:"budget approved") inurl:confidential
ext:(doc | pdf | xls | txt | ps | rtf | odt | sxw | psw | ppt | pps | xml) (intext:confidential salary | intext:”budget approved”) inurl:confidential
ext:CDX CDX
ext:asa | ext:bak intext:uid intext:pwd -"uid..pwd" database | server | dsn
ext:asa | ext:bak intext:uid intext:pwd -”uid..pwd” database | server | dsn
ext:asp inurlathto.asp
ext:asp \"powered by DUForum\" inurlmessages|details|login|default|register) -site:duware.com
ext:asp inurl:pathto.asp
ext:asp inurlUgallery intitle:\".\" -site:dugallery.com -site:duware.com
ext:asp inurlathto.asp
ext:asp inurlathto.asp
ext:ccm ccm -catacomb
ext:cfg radius.cfg
ext:cgi inurl:editcgi.cgi inurl:file=
ext:cgi intext:"nrg-" " This web page was created on "
ext:cgi intext:”nrg-” ” This web page was created on ”
ext:cgi intitle:"control panel" "enter your owner password to continue!"
ext:cgi intitle:”control panel” “enter your owner password to continue!”
ext:cgi inurl:editcgi.cgi inurl:file=
ext:cgi inurl:editcgi.cgi inurl:file=
ext:cgi inurl:ubb_test
ext:conf inurl:rsyncd.conf -cvs -man
ext:conf NoCatAuth -cvs
ext:conf NoCatAuth -cvs
ext:conf inurl:rsyncd.conf -cvs -manext:conf NoCatAuth -cvs
ext:conf inurl:rsyncd.conf -cvs -man
ext:conf inurl:rsyncd.conf -cvs -man
ext:dat bpk.dat
ext:dat bpk.dat
ext:gho gho
ext:gho gho
ext:ics ics
ext:inc "pwd=" "UID="
ext:inc “pwd=” “UID=”
ext:ini intext:env.ini
ext:ini Version=... password
ext:ini Version=4.0.0.4 password
ext:ini eudora.ini
ext:ini eudora.ini
ext:ini intext:env.ini
ext:ini intext:env.ini
ext:jbf jbf
ext:ldif ldif
ext:ldif ldif
ext:log "Software: Microsoft Internet Information Services *.*"
ext:log "Software: Microsoft Internet Information
ext:log "Software: Microsoft Internet Information
ext:log "Software: Microsoft Internet Information Services *.*"
ext:log \"Software: Microsoft Internet Information Services *.*\"
ext:log “Software: Microsoft Internet Information Services *.*”
ext:mdb inurl:*.mdb inurl:fpdb shop.mdb
ext:mdb inurl:*.mdb inurl:fpdb shop.mdb
ext:mdb inurl:*.mdb inurl:fpdb shop.mdb
ext:nsf nsf -gov -mil
ext:nsf nsf -gov -mil
ext:nsf nsf -gov -mil
ext:passwd -intext:the -sample -example
ext:plist filetype:plist inurl:bookmarks.plist
ext:pqi pqi -database
ext:pwd inurl:(service | authors | administrators | users) "# -FrontPage-"
ext:reg "username=*" putty
ext:reg \"username=*\" putty
ext:reg “username=*” putty
ext:txt "Final encryption key"
ext:txt "Final encryption key"
ext:txt "Final encryption key"
ext:txt \"Final encryption key\"
ext:txt inurl:dxdiag
ext:txt inurl:dxdiag
ext:txt inurl:unattend.txt
ext:txt inurl:unattend.txt
ext:txt “Final encryption key”
ext:vmdk vmdk
ext:vmdk vmdk
ext:vmx vmx
ext:vmx vmx
ext:vmx vmx
ext:yml database inurl:config
extqi pqi -database
extqi pqi -database
extqi pqi -database
ez Publish administration
ezBOO \"Administrator Panel\" -cvs
filetype:ASP ASP
filetype:ASPX ASPX
filetype:BML BML
filetype:CFM CFM
filetype:CGI CGI
filetype:DIFF DIFF
filetype:DLL DLL
filetype:DOC DOC
filetype:FCGI FCGI
filetype:HTM HTM
filetype:HTML HTML
filetype:JHTML JHTML
filetype:JSP JSP
filetype:MV MV
filetype:PDF PDF
filetype:PHP PHP
filetype:PHP3 PHP3
filetype:PHP4 PHP4
filetype:PHTML PHTML
filetype:PL PL
filetype:PPT PPT
filetype:PS PS
filetype:PS ps
filetype:QBW qbw
filetype:SHTML SHTML
filetype:STM STM
filetype:SWF SWF
filetype:TXT TXT
filetype:XLS XLS
filetype:asp DBQ=" * Server.MapPath("*.mdb")
filetype:asp "Custom Error Message" Category Source
filetype:asp + "[ODBC SQL"
filetype:asp + “[ODBC SQL”
filetype:asp DBQ=" * Server.MapPath("*.mdb")
filetype:asp DBQ=\" * Server.MapPath(\"*.mdb\")
filetype:asp DBQ=” * Server.MapPath(“*.mdb”)
filetype:asp “Custom Error Message” Category Source
filetype:bak createobject sa
filetype:bak inurl:"htaccess|passwd|shadow|htusers"
filetype:bak inurl:\"htaccess|passwd|shadow|htusers\"
filetype:bak inurl:”htaccess|passwd|shadow|htusers”
filetype:bkf bkf
filetype:bkf bkf
filetype:blt "buddylist"
filetype:blt "buddylist"
filetype:blt \"buddylist\"
filetype:blt blt +intext:screenname
filetype:blt blt +intext:screenname
filetype:blt “buddylist”
filetype:cfg auto_inst.cfg
filetype:cfg auto_inst.cfg
filetype:cfg auto_inst.cfg
filetype:cfg ks intext:rootpw -sample -test -howto
filetype:cfg ks intext:rootpw -sample -test -howto
filetype:cfg mrtg "target
filetype:cfg mrtg \"target
filetype:cfg mrtg “target
filetype:cfm "cfapplication name" password
filetype:cfm \"cfapplication name\" password
filetype:cfm “cfapplication name” password
filetype:cgi inurl:"Web_Store.cgi"
filetype:cgi inurl:"fileman.cgi"
filetype:cgi inurl:cachemgr.cgi
filetype:cgi inurl:”Web_Store.cgi”
filetype:cgi inurl:”fileman.cgi”
filetype:cnf inurl:_vti_pvt access.cnf
filetype:cnf inurl:_vti_pvt access.cnf
filetype:cnf my.cnf -cvs -example
filetype:conf inurl:firewall -intitle:cvs
filetype:conf inurl:firewall -intitle:cvs
filetype:conf inurl:firewall -intitle:cvs
filetype:conf inurl:proftpd. PROFTP FTP server configuration file reveals
filetype:conf inurl:psybnc.conf "USER.PASS="
filetype:conf oekakibbs
filetype:conf oekakibbs
filetype:conf sc_serv.conf
filetype:conf slapd.conf
filetype:conf slapd.conf
filetype:config config intext:appSettings "User ID"
filetype:config config intext:appSettings \"User ID\"
filetype:config config intext:appSettings “User ID”
filetype:config web.config -CVS
filetype:config web.config -CVS
filetype:ctl inurl:haccess. Microsoft FrontPage equivalent of htaccess
filetype:ctt Contact
filetype:ctt Contact
filetype:ctt Contact
filetype:ctt ctt messenger
filetype:ctt ctt messenger
filetype:dat "password.dat
filetype:dat "password.dat"
filetype:dat \"password.dat\"
filetype:dat inurl:Sites.dat
filetype:dat wand.dat
filetype:dat wand.dat
filetype:dat “password.dat”
filetype:eml eml +intext:"Subject" +intext:"From" +intext:"To"
filetype:eml eml +intext:"Subject" +intext:"From" +intext:"To"
filetype:eml eml +intext:\"Subject\" +intext:\"From\" +intext:\"To\"
filetype:eml eml +intext:”Subject” +intext:”From” +intext:”To”
filetype:fp fp
filetype:fp fp -site:gov -site:mil -\"cvs log\"
filetype:fp3 fp3
filetype:fp5 fp5 -site:gov -site:mil -"cvs log"
filetype:fp5 fp5 -site:gov -site:mil -"cvs log"
filetype:fp5 fp5 -site:gov -site:mil -”cvs log”
filetype:fp7 fp7
filetype:inc dbconn
filetype:inc dbconn
filetype:inc inc intext:setcookie
filetype:inc intext:mysql_connect
filetype:inc intext:mysql_connect
filetype:inc mysql_connect OR mysql_pconnect
filetype:inc mysql_connect OR mysql_pconnect
filetype:inf inurl:capolicy.inf
filetype:inf inurl:capolicy.inf
filetype:inf inurl:capolicy.inf
filetype:inf sysprep
filetype:inf sysprep
filetype:ini Desktop.ini intext:mydocs.dll
filetype:ini ServUDaemon
filetype:ini ServUDaemon
filetype:ini inurl:"serv-u.ini"
filetype:ini inurl:\"serv-u.ini\"
filetype:ini inurl:flashFXP.ini
filetype:ini inurl:flashFXP.ini
filetype:ini inurl:”serv-u.ini”
filetype:ini wcx_ftp
filetype:ini wcx_ftp
filetype:ini ws_ftp pwd
filetype:ini ws_ftp pwd
filetype:ldb admin
filetype:ldb admin
filetype:lic lic intext:key
filetype:lic lic intext:key
filetype:lit lit (books|ebooks)
filetype:log access.log -CVS
filetype:log "PHP Parse error" | "PHP Warning" | "PHP Error"
filetype:log "See `ipsec --copyright"
filetype:log \"See `ipsec copyright\"
filetype:log access.log -CVS
filetype:log access.log -CVS
filetype:log cron.log
filetype:log intext:"ConnectionManager2"
filetype:log intext:”ConnectionManager2″
filetype:log inurl:"password.log"
filetype:log inurl:\"password.log\"
filetype:log inurl:password.log
filetype:log inurl:”password.log”
filetype:log username putty PUTTY SSH client logs can reveal usernames
filetype:log “PHP Parse error” | “PHP Warning” | “PHP Error”
filetype:log “See `ipsec –copyright”
filetype:mbx mbx intext:Subject
filetype:mbx mbx intext:Subject
filetype:mdb inurl:\"news/news\"
filetype:mdb inurl:profiles Microsoft Access databases containing (user)
filetype:mdb inurl:users.mdb
filetype:mdb inurl:users.mdb
filetype:mdb wwforum
filetype:mdb wwforum
filetype:myd myd -CVS
filetype:myd myd -CVS
filetype:myd myd -CVS
filetype:netrc password
filetype:netrc password
filetype:ns ns
filetype:ns1 ns1
filetype:ora ora
filetype:ora tnsnames
filetype:pass pass intext:userid
filetype:pdb pdb backup (Pilot | Pluckerdb)
filetype:pdf "Assessment Report" nessus
filetype:pdf “Assessment Report” nessus
filetype:pem intext:private
filetype:php inurl:"logging.php" "Discuz" error
filetype:php inurl:"webeditor.php"
filetype:php inurl:index inurl:phpicalendar -site:sourceforge.net
filetype:php inurl:ipinfo.php "Distributed Intrusion Detection System"
filetype:php inurl:ipinfo.php “Distributed Intrusion Detection System”
filetype:php inurl:nqt intext:"Network Query Tool"
filetype:php inurl:nqt intext:”Network Query Tool”
filetype:php inurl:vAuthenticate
filetype:php inurl:”logging.php” “Discuz” error
filetype:php inurl:”webeditor.php”
filetype:pl "Download: SuSE Linux Openexchange Server CA"
filetype:pl intitle:"Ultraboard Setup"
filetype:pl intitle:”Ultraboard Setup”
filetype:pl “Download: SuSE Linux Openexchange Server CA”
filetype:pot inurl:john.pot
filetype:properties inurl:db intext:password
filetype:pst inurl:"outlook.pst"
filetype:pst inurl:”outlook.pst”
filetype:pst pst -from -to -date
filetype:pwd service
filetype:pwl pwl
filetype:qbb qbb
filetype:qbb qbb
filetype:r2w r2w
filetype:rdp rdp
filetype:rdp rdp
filetype:rdp rdp Remote Desktop Connection files reveal user
filetype:reg "Terminal Server Client"
filetype:reg \"Terminal Server Client\"
filetype:reg reg +intext:"defaultusername" +intext:"defaultpassword"
filetype:reg reg +intext:\"defaultusername\" +intext:\"defaultpassword\"
filetype:reg reg +intext:â? WINVNC3â?
filetype:reg reg +intext:”defaultusername” +intext:”defaultpassword”
filetype:reg reg HKEY_ Windows Registry exports can reveal
filetype:reg reg HKEY_CURRENT_USER SSHHOSTKEYS
filetype:reg reg HKEY_CURRENT_USER SSHHOSTKEYS
filetype:reg reg intext: Microsoft Internet Account Manager can
filetype:reg “Terminal Server Client”
filetype:sql "insert into" (pass|passwd|password)
filetype:sql ("values * MD5" | "values * password" | "values * encrypt")
filetype:sql (\"passwd values\" | \"password values\" | \"pass values\" )
filetype:sql (\"values * MD\" | \"values * password\" | \"values * encrypt\")
filetype:sql (“values * MD5″ | “values * password” | “values * encrypt”)
filetype:sql +"IDENTIFIED BY" -cvs
filetype:sql +\"IDENTIFIED BY\" -cvs
filetype:sql +”IDENTIFIED BY” -cvs
filetype:sql password
filetype:sql password
filetype:sql “insert into” (pass|passwd|password)
filetype:torrent torrent
filetype:url +inurl:"ftp://" +inurl:";@"
filetype:url +inurl:\"ftp://\" +inurl:\";@\"
filetype:url +inurl:”ftp://” +inurl:”;@”
filetype:vcs vcs
filetype:vcs vcs
filetype:vcs vcs
filetype:vsd vsd network -samples -examples
filetype:wab wab
filetype:wab wab
filetype:wab wab Microsoft Outlook Express Mail address
filetype:wsdl wsdl
filetype:xls inurl:"email.xls"
filetype:xls -site:gov inurl:contact
filetype:xls -site:gov inurl:contact
filetype:xls inurl:"email.xls"
filetype:xls inurl:\"email.xls\"
filetype:xls inurl:”email.xls”
filetype:xls username password email
filetype:xls username password email
filetype[Only Registered Users Can See Links] qbb
filetypeass pass intext:userid
filetypedb pdb backup (Pilot | Pluckerdb)
filetypedb pdb backup (Pilot | Pluckerdb)
filetypeem intextrivate
filetypehp HAXPLORER \"Server Files Browser\"
filetypehp inurl:\"viewfile\" -\"index.php\" -\"idfil
filetypehp inurl:index inurlhpicalendar -site:sourceforge.net
filetypehp inurl:index inurlhpicalendar -site:sourceforge.net
filetypehp inurl:index inurlhpicalendar -site:sourceforge.net
filetypel -intext:\"/usr/bin/perl\" inurl:webcal (inurl:webcal | inurl:add | inurl:delete | inurl:config)
filetypeot inurl:john.pot
filetypeot inurl:john.pot
filetypera ora
filetypera ora
filetypera orafiletypedb pdb backup (Pilot | Pluckerdb)
filetypera tnsnames
filetyperoperties inurl:db intextassword
filetypest inurl:"outlook.pst"
filetypest inurl:"outlook.pst"
filetypest inurl:\"outlook.pst\"
filetypest pst -from -to -date
filetypest pst -from -to -date
filetypewd service
filetypewl pwl
haccess.ctl (one way)
haccess.ctl (VERY reliable)
haccess.ctl (VERY reliable)
haccess.ctl (one way)
haccess.ctl (one way)
ht://Dig htsearch error
htpasswd
htpasswd
htpasswd / htgroup
htpasswd / htgroup
htpasswd / htpasswd.bak
htpasswd / htpasswd.bak
iletype:log cron.log
iletype:log cron.log
iletype:log cron.log
index of: intext:Gallery in Configuration mode
index.of passlist
index.of perform.ini mIRC IRC ini file can list IRC usernames and
index.of.dcim
index.of.password
intext:" -FrontPage-" ext:pwd inurl:(service | authors | administrators | users)
intext:""BiTBOARD v2.0" BiTSHiFTERS Bulletin Board"
intext:"# -FrontPage-" ext:pwd inurl:(service | authors | administrators | users) "# -FrontPage-" inurl:service.pwd
intext:"#mysql dump" filetype:sql
intext:"#mysql dump" filetype:sql 21232f297a57a5a743894a0e4a801fc3
intext:"A syntax error has occurred" filetype:ihtml
intext:"ASP.NET_SessionId" "data source="
intext:"About Mac OS Personal Web Sharing"
intext:"An illegal character has been found in the statement" -"previous message"
intext:"AutoCreate=TRUE password=*"
intext:"Can't connect to local" intitle:warning
intext:"Certificate Practice Statement" filetype:PDF | DOC
intext:"Certificate Practice Statement" inurl:(PDF | DOC)
intext:"Chatologica MetaSearch" "stack tracking"
intext:"Chatologica MetaSearch" "stack tracking:"
intext:"Copyright (c) Tektronix, Inc." "printer status"
intext:"Copyright © Tektronix, Inc." "printer status"
intext:"Dumping data for table"
intext:"EZGuestbook"
intext:"Emergisoft web applications are a part of our"
intext:"Error Diagnostic Information" intitle:"Error Occurred While"
intext:"Error Message : Error loading required libraries."
intext:"Establishing a secure Integrated Lights Out session with" OR intitle:"Data Frame - Browser not HTTP 1.1 compatible" OR intitle:"HP Integrated Lights-
intext:"Fatal error: Call to undefined function" -reply -the -next
intext:"Fill out the form below completely to change your password and user name. If new username is left blank, your old one will be assumed." -edu
intext:"Generated by phpSystem"
intext:"Generated by phpSystem"
intext:"HTTP_FROM=googlebot" googlebot.com "Server_Software="
intext:"HTTP_FROM=googlebot" googlebot.com "Server_Software="
intext:"Host Vulnerability Summary Report"
intext:"Host Vulnerability Summary Report"
intext:"Host Vulnerability Summary Report"
intext:"HostingAccelerator" intitle:"login" +"Username" -"news" -demo
intext:"IMail Server Web Messaging" intitle:login
intext:"Incorrect syntax near"
intext:"Index of" / "chat/logs"
intext:"Index Of /network" "last modified"
intext:"Index of /" +.htaccess
intext:"Index of /" +passwd
intext:"Index of /" +password.txt
intext:"Index of /admin"
intext:"Index of /backup"
intext:"Index of /mail"
intext:"Index of /password"
intext:"Index of" / "chat/logs"
intext:"Installed Objects Scanner" inurl:default.asp
intext:"Installed Objects Scanner" inurl:default.asp
intext:"Internal Server Error" "server at"
intext:"Invision Power Board Database Error"
intext:"Login - Sun Cobalt RaQ"
intext:"Login to Usermin" inurl:20000
intext:"MacHTTP" filetype:log inurl:machttp.log
intext:"Mail admins login here to administrate your domain."
intext:"Master Account" "Domain Name" "Password" inurl:/cgi-bin/qmailadmin
intext:"Mecury Version" "Infastructure Group"
intext:"Mecury Version" "Infastructure Group"
intext:"Mecury Version" "Infastructure Group"
intext:"Microsoft (R) Windows * (TM) Version * DrWtsn32 Copyright (C)" ext:log
intext:"Microsoft (R) Windows * (TM) Version * DrWtsn32 Copyright (C)" ext:log
intext:"Microsoft CRM : Unsupported Browser Version"
intext:"Microsoft ® Windows * ™ Version * DrWtsn32 Copyright ©" ext:log
intext:"More Info about MetaCart Free"
intext:"Most Submitted Forms and Scripts" "this section"
intext:"Most Submitted Forms and Scripts" "this section"
intext:"Most Submitted Forms and Scripts" "this section"
intext:"Most Submitted Forms and s?ri?ts" "this section"
intext:"Network Host Assessment Report" "Internet Scanner"
intext:"Network Vulnerability Assessment Report"
intext:"Network Vulnerability Assessment Report"
intext:"Network Vulnerability Assessment Report" 本文来自 pc007.com
intext:"OPENSRS Domain Management" inurl:manage.cgi
intext:"ORA-00921: unexpected end of SQL command"
intext:"ORA-00933: SQL command not properly ended"
intext:"ORA-00936: missing expression"
intext:"ORA-12541: TNS:no listener" intitle:"error occurred"
intext:"Output produced by SysWatch *"
intext:"Parse error: parse error, unexpected T_VARIABLE" "on line" filetype:php
intext:"Phorum Admin" "Database Connection" inurl:forum inurl:admin
intext:"Please authenticate yourself to get access to the management interface"
intext:"Please login with admin pass" -"leak" -sourceforge
intext:"PostgreSQL query failed: ERROR: parser: parse error"
intext:"Powered by UebiMiau" -site:sourceforge.net
intext:"Powered by mnoGoSearch - free web search engine software"
intext:"Request Details" "Control Tree" "Server Variables"
intext:"Request Details" "Control Tree" "Server Variables"
intext:"Running in Child mode"
intext:"Running in Child mode"
intext:"SQL Server Driver][SQL Server]Line 1: Incorrect syntax near"
intext:"Select a database to view" intitle:"filemaker pro"
intext:"Session Start * * * *:*:* *" filetype:log
intext:"Shadow Security Scanner performed a vulnerability assessment"
intext:"SnortSnarf alert page"
intext:"SquirrelMail version" "By the SquirrelMail development Team"
intext:"SteamUserPassphrase=" intext:"SteamAppUser=" -"username" -"user"
intext:"Storage Management Server for" intitle:"Server Administration"
intext:"Supplied argument is not a valid MySQL result resource"
intext:"Supplied argument is not a valid PostgreSQL result"
intext:"Syntax error in query expression " -the
intext:"SysCP - login"
intext:"Thank you for your order" +receipt
intext:"Thank you for your order" +receipt
intext:"Thank you for your purchase" +download
intext:"The following report contains confidential information" vulnerability -search
intext:"The s?ri?t whose uid is " "is not allowed to access"
intext:"The statistics were last upd?t?d" "Daily"-microsoft.com
intext:"There are no Administrators Accounts" inurl:admin.php -mysql_fetch_row
intext:"There seems to have been a problem with the" " Please try again by clicking the Refresh button in your web browser."
intext:"These statistics were produced by getstats"
intext:"These statistics were produced by getstats"
intext:"This is a Shareaza Node""This report was generated by WebLog"
intext:"This is a Shareaza Node"
intext:"This is a restricted Access Server" "Javas?ri?t Not Enabled!"|"Messenger Express" -edu -ac
intext:"This report lists" "identified by Internet Scanner"
intext:"This report was generated by WebLog"
intext:"This report was generated by WebLog"
intext:"This section is for Administrators only. If you are an administrator then please"
intext:"This summary was generated by wwwstat"
intext:"Tobias Oetiker" "traffic analysis"
intext:"Tobias Oetiker" "traffic analysis"
intext:"Traffic Analysis for" "RMON Port * on unit *"
intext:"Unable to jump to row" "on MySQL result index" "on line"
intext:"Unclosed quotation mark before the character string"
intext:"VHCS Pro ver" -demo
intext:"VNC Desktop" inurl:5800
intext:"Version Info" "Boot Version" "Internet Settings"
intext:"Warning: * am able * write ** configuration file" "includes/configure.php" -
intext:"Warning: Bad arguments to (join|implode) () in" "on line" -help -forum
intext:"Warning: Cannot modify header information - headers already sent"
intext:"Warning: Division by zero in" "on line" -forum
intext:"Warning: Failed opening" "on line" "include_path"
intext:"Warning: Supplied argument is not a valid File-Handle resource in"
intext:"Warning: mysql_connect(): Access denied for user: '*@*" "on line" -help -forum
intext:"Warning: mysql_query()" "invalid query"
intext:"Warning: pg_connect(): Unable to connect to PostgreSQL server: FATAL"
intext:"Warning:" "SAFE MODE Restriction in effect." "The s?ri?t whose uid is" "is not allowed to access owned by uid 0 in" "on line"
intext:"Warning:" "failed to open stream: HTTP request failed" "on line"
intext:"Web File Browser" "Use regular expression"
intext:"Web Wiz Journal"
intext:"Web-Based Management" "Please input password to login" -inurl:johnny.ihackstuff.com
intext:"WebExplorer Server - Login" "Welcome to WebExplorer Server"
intext:"WebSTAR Mail - Please Log In"
intext:"Welcome to Administration" "General" "Local Domains" "SMTP Authentication" inurl:admin
intext:"Welcome to Intranet"
intext:"Welcome to PHP-Nuke" congratulations
intext:"Welcome to the Prestige Web-Based Configurator"
intext:"Welcome to the Web V.Networks" intitle:"V.Networks [Top]" -filetype:htm
intext:"Welcome to" inurl:"cp" intitle:"H-SPHERE" inurl:"begin.html" -Fee
intext:"YaBB SE Dev Team"
intext:"You have an error in your SQL syntax near"
intext:"You have requested access to a restricted area of our website. Please authenticate yourself to continue."
intext:"You have requested to access the management functions" -.edu
intext:"Your password is * Remember this for later use"
intext:"access denied for user" "using password"
intext:"allow_call_time_pass_reference" "PATH_INFO"
intext:"allow_call_time_pass_reference" "PATH_INFO"
intext:"apricot - admin" 00h
intext:"bp blog admin" intitle:login | intitle:admin -site:johnny.ihackstuff.com
intext:"by Reimar Hoven. All Rights Reserved. Disclaimer" | inurl:"log/logdb.dta"
intext:"d.aspx?id" || inurl:"d.aspx?id"
intext:"detected an internal error [IBM][CLI Driver][DB2/6000]"
intext:"enable password 7"
intext:"enable secret 5 $"
intext:"error found handling the request" cocoon filetype:xml
intext:"ftp://" "www.eastgame.net"
intext:"generated by wwwstat"
intext:"html allowed" guestbook
intext:"http://*:*@www" domainname
intext:"iCONECT 4.1 :: Login"
intext:"index of /private" -site:net -site:com -site:org
intext:"index of /private" site:mil
intext:"index of/" "ws_ftp.ini" "parent directory"
intext:"inspanel" intitle:"login" -"cannot" "Login ID" -site:inspediumsoft.com
intext:"intitle:3300 Integrated Communications Platform" inurl:main.htm
intext:"liveice configuration file" ext:cfg
intext:"liveice configuration file" ext:cfg -site:sourceforge.net
intext:"login prompt" inurl:GM.cgi
intext:"mySQL error with query"
intext:"mysql dump" filetype:sql
intext:"not for distribution" confidential
intext:"not for distribution" confidential
intext:"not for distribution" confidential
intext:"not for public release" -.edu -.gov -.mil
intext:"parent directory " /appz/ -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
intext:"parent directory " DVDRip -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
intext:"parent directory " Gamez -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
intext:"parent directory " MP3 -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
intext:"parent directory " Name of Singer or album -xxx -html -htm -php -shtml -opendivx
intext:"parent directory " Name of Singer or album -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
intext:"parent directory "Xvid -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
intext:"parent directory" +proftpdpasswd
intext:"password"
intext:"pcANYWHERE EXPRESS Java Client"
intext:"phone * * *" "address *" "e-mail" intitle:"curriculum vitae"
intext:"phone * * *" "address *" "e-mail" intitle:"curriculum vitae"
intext:"phone * * *" "address *" "e-mail" intitle:"curriculum vitae"
intext:"phpMyAdmin MySQL-Dump" "INSERT INTO" -"the"
intext:"phpMyAdmin MySQL-Dump" filetype:txt
intext:"phpMyAdmin" "running on" inurl:"main.php"
intext:"please log in"
intext:"powered by Web Wiz Journal"
intext:"powered by openbsd" +"powered by apache"
intext:"powered | performed by Beyond Security's Automated Scanning" -kazaa -example
intext:"produced by getstats"
intext:"produced by getstats"
intext:"robots.txt" "Disallow:" filetype:txt
intext:"robots.txt" "Disallow:" filetype:txt
intext:"set up the administrator user" inurl:pivot
intext:"sets mode: +s"
intext:"sets mode: +k"
intext:"sets mode: +p"
intext:"sets mode: +s"
intext:"site info for" "Enter Admin Password"
intext:"this proxy is working fine!" "enter *" "URL***" * visit
intext:"ttawlogin.cgi/?action="
intext:"vbulletin" inurl:admincp
intext:"you can now password" | "this is a special page only seen by you. your profile visitors" inurl:imchaos
intext:"your password is" filetype:log
intext:(password | passcode) intext:(username | userid | user) filetype:csv
intext:SQLiteManager inurl:main.php
intext:SQLiteManager inurl:main.php
intext:SQLiteManager inurl:main.php
intext:ViewCVS inurl:Settings.php
intext:\"Powered By: TotalIndex\" intitle:\"TotalIndex\"
intext:\"Session Start * * * *:*:* *\" filetype:log
intext:\"Tobias Oetiker\" \"traffic analysis\"
intext:\"d.aspx?id\" || inurl:\"d.aspx?id\"
intext:\"enable secret $\"
intext:\"powered by Web Wiz Journal\"
intext:gmail invite intext:http://gmail.google.com/gmail/a
intext:gmail invite intext:[Only Registered Users Can See Links]
intext:gmail invite intext:http://gmail.google.com/gmail/a
intext:password | passcode) intextusername | userid | user) filetype:csv
intext:”"BiTBOARD v2.0″ BiTSHiFTERS Bulletin Board”
intext:”EZGuestbook”
intext:”Error Message : Error loading required libraries.”
intext:”Fill out the form below completely to change your password and user name. If new username is left blank, your old one will be assumed.” -edu
intext:”Mail admins login here to administrate your domain.”
intext:”Master Account” “Domain Name” “Password” inurl:/cgi-bin/qmailadmin
intext:”Session Start * * * *:*:* *” filetype:log
intext:”Storage Management Server for” intitle:”Server Administration”
intext:”Tobias Oetiker” “traffic analysis”
intext:”Warning: * am able * write ** configuration file” “includes/configure.php” -
intext:”Warning: Failed opening” “on line” “include_path”
intext:”Web Wiz Journal”
intext:”Welcome to the Web V.Networks” intitle:”V.Networks [Top]” -filetype:htm
intext:”Welcome to” inurl:”cp” intitle:”H-SPHERE” inurl:”begin.html” -Fee
intext:”enable password 7″
intext:”enable secret 5 $”
intext:”vbulletin” inurl:admincp
intextpassword | passcode) intextusername | userid | user) filetype:csv
intextpassword | passcode) intextusername | userid | user) filetype:csv
intitle: "index of" passwd passwd.bak
intitle:"*- HP WBEM Login" | "You are being prompted to provide login account information for *" | "Please provide the information requested and press
intitle:"--- VIDEO WEB SERVER ---" intext:"Video Web Server" "Any time & Any
intitle:"--- VIDEO WEB SERVER ---" intext:"Video Web Server" "Any time & Any where" username password
intitle:"500 Internal Server Error" "server at"
intitle:"ADSL Configuration page"
intitle:"ASP Stats Generator *.*" "ASP Stats Generator" "2003-2004 weppos"
intitle:"ASP Stats Generator *.*" "ASP Stats Generator" "2003-2004 weppos"
intitle:"Admin Login" "admin login" "blogware"
intitle:"Admin login" "Web Site Administration" "Copyright"
intitle:"AlternC Desktop"
intitle:"Apache Tomcat" "Error Report"
intitle:"Apache::Status" (inurl:server-status | inurl:status.html | inurl:apache.html)
intitle:"Apache::Status" (inurl:server-status | inurl:status.html | inurl:apache.html)
intitle:"AppServ Open Project" -site:www.appservnetwork.com
intitle:"Athens Authentication Point"
intitle:"Azureus : Java BitTorrent Client Tracker"
intitle:"BNBT Tracker Info"
intitle:"Belarc Advisor Current Profile" intext:"Click here for Belarc's PC Management products, for large and small companies."
intitle:"Big Sister" +"OK Attention Trouble"
intitle:"Big Sister" +"OK Attention Trouble"
intitle:"Browser Launch Page"
intitle:"Cisco CallManager User Options Log On" "Please enter your User ID and Password in the spaces provided below and click the Log On button to co
intitle:"ColdFusion Administrator Login"
intitle:"Connection Status" intext:"Current login"
intitle:"Content Management System" "user name"|"password"|"admin" "Microsoft IE 5.5" -mambo
intitle:"Default PLESK Page"
intitle:"Dell Remote Access Controller"
intitle:"DocuShare"
intitle:"DocuShare" inurl:"docushare/dsweb/" -faq
intitle:"DocuShare" inurl:"docushare/dsweb/" -faq
intitle:"DocuShare" inurl:"docushare/dsweb/" -faq -gov -edu
intitle:"Docutek ERes - Admin Login" -edu
intitle:"EXTRANET * - Identification"
intitle:"EXTRANET login" -.edu -.mil -.gov
intitle:"EZPartner" -netpond
intitle:"Employee Intranet Login"
intitle:"Error Occurred While Processing Request" +WHERE (SELECT|INSERT) filetype:cfm
intitle:"Error Occurred" "The error occurred in" filetype:cfm
intitle:"Error using Hypernews" "Server Software"
intitle:"EverFocus.EDSR.app<-b>let"
intitle:"EverFocus.EDSR.applet"
intitle:"Execution of this s?ri?t not permitted"
intitle:"FTP root at"
intitle:"Flash Operator Panel" -ext:php -wiki -cms -inurl:asternic -inurl:sip -intitle:ANNOUNCE -inurl:lists
intitle:"Gateway Configuration Menu"
intitle:"Horde :: My Portal" -"[Tickets"
intitle:"ISPMan : Unauthorized Access prohibited"
intitle:"ITS System Information" "Please log on to the SAP System"
intitle:"Icecast Administration Admin Page"
intitle:"Index Of" -inurl:maillog maillog size
intitle:"Index Of" -inurl:maillog maillog size
intitle:"Index Of" cookies.txt size
intitle:"Index of" ".htpasswd" "htgroup" -intitle:"dist" -apache -htpasswd.c
intitle:"Index of" .bash_history
intitle:"Index of" .mysql_history
intitle:"Index of" .sh_history
intitle:"Index of" cfide
intitle:"Index of" passwords modified
intitle:"Index of" pwd.db
intitle:"Index of" sc_serv.conf sc_serv content
intitle:"Index of" spwd.db passwd -pam.conf
intitle:"Index of" upload size parent directory
intitle:"Index of" upload size parent directory
intitle:"Index of..etc" passwd
intitle:"Joomla - Web Installer"
intitle:"Kurant Corporation StoreSense" filetype:bok
intitle:"LOGREP - Log file reporting system" -site:itefix.no
intitle:"ListMail Login" admin -demo
intitle:"Login -
intitle:"Login Forum
intitle:"Login to @Mail" (ext:pl | inurl:"index") -dwaffleman
intitle:"Login to Cacti"
intitle:"Login to the forums - @www.aimoo.com" inurl:login.cfm?id=
intitle:"MX Control Console" "If you can't remember"
intitle:"Mail Server CMailServer Webmail" "5.2"
intitle:"MailMan Login"
intitle:"Member Login" "NOTE: Your browser must have cookies enabled in order to log into the site." ext:php OR ext:cgi
intitle:"Merak Mail Server Web Administration" -ihackstuff.com
intitle:"Microsoft Site Server Analysis"
intitle:"MikroTik RouterOS Managing Webpage"
intitle:"Multimon UPS status page"
intitle:"MvBlog powered"
intitle:"Nessus Scan Report" "This file was generated by Nessus"
intitle:"Novell Web Services" "GroupWise" -inurl:"doc/11924" -.mil -.edu -.gov -filetype:pdf
intitle:"Novell Web Services" intext:"Select a service and a language."
intitle:"OfficeConnect Cable/DSL Gateway" intext:"Checking your browser"
intitle:"OnLine Recruitment Program - Login"
intitle:"PHP Advanced Transfer" (inurl:index.php | inurl:showrecent.php )
intitle:"PHP Advanced Transfer" (inurl:index.php | inurl:showrecent.php )
intitle:"PHP Advanced Transfer" inurl:"login.php"
intitle:"PHPBTTracker Statistics" | intitle:"PHPBT Tracker Statistics"
intitle:"PHProjekt - login" login password
intitle:"Philex 0.2*" -s?ri?t -site:freelists.org
intitle:"PhpMyExplorer" inurl:"index.php" -cvs
intitle:"PhpMyExplorer" inurl:"index.php" -cvs
intitle:"Remote Desktop Web Connection"
intitle:"Remote Desktop Web Connection" inurl:tsweb
intitle:"Retina Report" "CONFIDENTIAL INFORMATION"
intitle:"SFXAdmin - sfx_global" | intitle:"SFXAdmin - sfx_local" | intitle:"SFXAdmin - sfx_test"
intitle:"SHOUTcast Administrator" inurl:admin.cgi
intitle:"SWW link" "Please wait....."
intitle:"Samba Web Administration Tool" intext:"Help Workgroup"
intitle:"SuSE Linux Openexchange Server" "Please activate Javas?ri?t!"
intitle:"Supero Doctor III" -inurl:supermicro
intitle:"System Statistics" +"System and Network Information Center"
intitle:"System Statistics" +"System and Network Information Center"
intitle:"TOPdesk ApplicationServer"
intitle:"TUTOS Login"
intitle:"TWIG Login"
intitle:"Terminal Services Web Connection"
intitle:"Tomcat Server Administration"
intitle:"Under construction" "does not currently have"
intitle:"Uploader - Uploader v6" -pixloads.com
intitle:"Usage Statistics for" "Generated by Webalizer"
intitle:"Usage Statistics for" "Generated by Webalizer"
intitle:"VMware Management Interface:" inurl:"vmware/en/"
intitle:"VNC viewer for Java"
intitle:"Virtual Server Administration System"
intitle:"VisNetic WebMail" inurl:"/mail/"
intitle:"VitalQIP IP Management System"
intitle:"WJ-NT104 Main Page"
intitle:"Web Server Statistics for ****"
intitle:"Web Server Statistics for ****"
intitle:"WebLogic Server" intitle:"Console Login" inurl:console
intitle:"Welcome Site/User Administrator" "Please select the language" -demos
intitle:"Welcome to F-Secure Policy Manager Server Welcome Page"
intitle:"Welcome to Mailtraq WebMail"
intitle:"Welcome to Windows 2000 Internet Services"
intitle:"Welcome to the Advanced Extranet Server, ADVX!"
intitle:"WorldClient" intext:"? (2003|2004) Alt-N Technologies."
intitle:"XMail Web Administration Interface" intext:Login intext:password
intitle:"XcAuctionLite" | "DRIVEN BY XCENT" Lite inurl:admin
intitle:"Zope Help System" inurl:HelpSys
intitle:"ZyXEL Prestige Router" "Enter password"
intitle:"actiontec" main setup status "Copyright 2001 Actiontec Electronics Inc"
intitle:"admin panel" +"
intitle:"b2evo > Login form" "Login form. You must log in! You will have to accept cookies in order to log in" -demo -site:b2evolution.net
intitle:"communigate pro * *" intitle:"entrance"
intitle:"curriculum vitae" filetype:doc
intitle:"eMule *" intitle:"- Web Control Panel" intext:"Web Control Panel" "Enter your password here."
intitle:"ePowerSwitch Login"
intitle:"eXist Database Administration" -demo
intitle:"edna:streaming mp3 server" -forums
intitle:"edna:streaming mp3 server" -forums
intitle:"i-secure v1.1" -edu
intitle:"iDevAffiliate - admin" -demo
intitle:"iVISTA.Main.Page"
intitle:"inc. vpn 3000 concentrator"
intitle:"inc. vpn 3000 concentrator" intitle:asterisk.management.portal web-access
intitle:"index of" mysql.conf OR mysql_config
intitle:"index of" +myd size
intitle:"index of" etc/shadow
intitle:"index of" htpasswd
intitle:"index of" intext:connect.inc
intitle:"index of" intext:globals.inc
intitle:"index of" master.passwd
intitle:"index of" master.passwd 007电脑资讯
intitle:"index of" members OR accounts
intitle:"index of" mysql.conf OR mysql_config
intitle:"index of" passwd
intitle:"index of" people.lst
intitle:"index of" pwd.db
intitle:"index of" spwd
intitle:"index of" user_carts OR user_cart
intitle:"index.of *" admin news.asp configview.asp
intitle:"index.of" .diz .nfo last modified
intitle:"index.of" .diz .nfo last modified
intitle:"live view" intitle:axis
intitle:"microsoft certificate services" inurl:certsrv
intitle:"network administration" inurl:"nic"
intitle:"oMail-admin Administration - Login" -inurl:omnis.ch
intitle:"php icalendar administration" -site:sourceforge.net
intitle:"phpPgAdmin - Login" Language
intitle:"phpinfo()" +"mysql.default_password" +"Zend s?ri?ting Language Engine"
intitle:"please login" "your password is *"
intitle:"remote assessment" OpenAanval Console
intitle:"site administration: please log in" "site designed by emarketsouth"
intitle:"start.managing.the.device" remote pbx acc
intitle:"statistics of" "advanced web statistics"
intitle:"statistics of" "advanced web statistics"
intitle:"supervisioncam protocol"
intitle:"switch login" "IBM Fast Ethernet Desktop"
intitle:"sysinfo * " intext:"Generated by Sysinfo * written by The Gamblers."
intitle:"teamspeak server-administration
intitle:"twiki" inurl:"TWikiUsers"
intitle:"urchin (5|3|admin)" ext:cgi
intitle:"vhost" intext:"vHost . 2000-2004"
intitle:"wbem" compaq login
intitle:"wbem" compaq login "Compaq Information Technologies Group"
intitle:"web server status" SSH Telnet
intitle:"web-cyradm"|"by Luc de Louw" "This is only for authorized users" -tar.gz -site:web-cyradm.org
intitle:"welcome to netware *" -site:novell.com
intitle:"welcome.to.squeezebox"
intitle:"xams 0.0.0..15 - Login"
intitle:("TrackerCam Live Video")|("TrackerCam Application Login")|("Trackercam Remote") -trackercam.com
intitle:(“TrackerCam Live Video”)|(“TrackerCam Application Login”)|(“Trackercam Remote”) -trackercam.com
intitle:Bookmarks inurl:bookmarks.html "Bookmarks
intitle:Bookmarks inurl:bookmarks.html “Bookmarks
intitle:Configuration.File inurl:softcart.exe
intitle:Group-Office "Enter your username and password to login"
intitle:Group-Office “Enter your username and password to login”
intitle:IMP inurl:imp/index.php3
intitle:Index.of etc shadow
intitle:Index.of etc shadow
intitle:Index.of etc shadow site:passwd
intitle:Login * Webmailer
intitle:Login intext:"RT is ? Copyright"
intitle:Login intext:”RT is ? Copyright”
intitle:Node.List Win32.Version.3.11
intitle:Novell intitle:WebAccess "Copyright &# Novell, Inc"
intitle:Novell intitle:WebAccess "Copyright *-* Novell, Inc"
intitle:Novell intitle:WebAccess “Copyright *-* Novell, Inc”
intitle:Ovislink inurl:private/login
intitle:\"ASP FileMan\" Resend -site:iisworks.com
intitle:\"ASP Stats Generator *.*\" \"ASP Stats Generator\" \"- weppos\"
intitle:\"Apache::Status\" (inurl:server-status | inurl:status.html | inurl:apache.html)
intitle:\"AppServ Open Project\" -site:[Only Registered Users Can See Links] ([Only Registered Users Can See Links])
intitle:\"Big Sister\" +\"OK Attention Trouble\"
intitle:\"Directory Listing For\" intext:Tomcat -intitle:Tomcat
intitle:\"Directory Listing\" \"tree view\"
intitle:\"DocuShare\" inurl:\"docushare/dsweb/\" -faq -gov -edu
intitle:\"FTP root at\"
intitle:\"HFS /\" +\"[Only Registered Users Can See Links]\"
intitle:\"Index Of\" -inurl:maillog maillog size
intitle:\"Index Of\" cookies.txt size
intitle:\"Index of *\" inurl:\"my shared folder\" size modified
intitle:\"Index of /CFIDE/\" administrator
intitle:\"Index of /\" modified php.exe
intitle:\"Index of c:\\Windows\"
intitle:\"Index of\" cfide
intitle:\"Index of\" passwords modified
intitle:\"Index of\" upload size parent directory
intitle:\"Multimon UPS status page\"
intitle:\"PHP Advanced Transfer\" (inurl:index.php | inurl:showrecent.php )
intitle:\"PHP Explorer\" exthp (inurlhpexplorer.php
intitle:\"PhpMyExplorer\" inurl:\"index.php\" -cvs
intitle:\"System Statistics\" +\"System and Network Information Center\"
intitle:\"Usage Statistics for\" \"Generated by Webalizer\"
intitle:\"Web Data Administrator - Login\"
intitle:\"Web Server Statistics for ****\"
intitle:\"[Only Registered Users Can See Links]\"
intitle:\"album permissions\" \"Users who can modify photos\" \"EVERYBODY\"
intitle:\"edna:streaming mp server\" -forums
intitle:\"index of\" +myd size
intitle:\"index of\" -inurl:htm -inurl:html mp
intitle:\"index of\" \"parent directory\" \"desktop.ini\" site:dyndns.org
intitle:\"index of\" intext:\"content.ie\"
intitle:\"index of\" intext:connect.inc
intitle:\"index of\" intext:globals.inc
intitle:\"index of\" inurl:ftp (pub | incoming)
intitle:\"index of\" mysql.conf OR mysql_config
intitle:\"index.of *\" admin news.asp configview.asp
intitle:\"index.of.personal\"
intitle:\"index.of\" .diz .nfo last modified
intitle:\"phpremoteview\" filetypehp \"Name* Size*
intitle:\"statistics of\" \"advanced web statistics\"
intitle:\"wbem\" compaq login \"Compaq Information Technologies Group\"
intitle:\"web server status\" SSH Telnet
intitle:\"webadmin - /*\" filetypehp directory filename permission
intitle:\"welcome.to.squeezebox\"
intitle:admin intitle:login
intitle:admin intitle:login
intitle:admin intitle:login
intitle:asterisk.management.portal web-access
intitle:axis intitle:"video server"
intitle:dupics inurl:(add.asp | default.asp | view.asp | voting.asp) -site:
intitle:dupics inurl:(add.asp | default.asp | view.asp | voting.asp) -site:duware.com
intitle:dupics inurladd.asp | default.asp | view.asp | voting.asp) -site:duware.com
intitle:endymion.sak?.mail.login.page | inurl:sake.servlet
intitle:hpinfo "PHP Version"
intitle:ilohamail "
intitle:ilohamail intext:"Version 0.8.10" "
intitle:ilohamail intext:”Version 0.8.10″ ”
intitle:ilohamail ”
intitle:index.of cgiirc.config
intitle:index.of cleanup.log
intitle:index.of inbox dbx
intitle:index.of "Apache" "server at"
intitle:index.of (inurl:fileadmin | intitle:fileadmin)
intitle:index.of .bash_history UNIX bash shell history reveals commands
intitle:index.of .sh_history UNIX shell history reveals commands typed at
intitle:index.of /AlbumArt_
intitle:index.of /maildir/new/
intitle:index.of \"Apache\" \"server at\"
intitle:index.of abyss.conf
intitle:index.of administrators.pwd
intitle:index.of administrators.pwd
intitle:index.of cgiirc.config
intitle:index.of cleanup.log
intitle:index.of cleanup.log
intitle:index.of dead.letter
intitle:index.of dead.letter
intitle:index.of haccess.ctl
intitle:index.of inbox
intitle:index.of inbox
intitle:index.of inbox dbx
intitle:index.of inbox dbx
intitle:index.of intext:"secring.skr"|"secring.pgp"|"secring.bak"
intitle:index.of intext:\"secring.skr\"|\"secring.pgp\"|\"secring.bak\"
intitle:index.of intext:”secring.skr”|”secring.pgp”|”secring.bak”
intitle:index.of master.passwd
intitle:index.of passwd passwd.bak
intitle:index.of people.lst
intitle:index.of trillian.ini
intitle:index.of ws_ftp.ini
intitle:index.of ws_ftp.ini
intitle:index.of “Apache” “server at”
intitle:intranet inurl:intranet +intext:"phone"
intitle:intranet inurl:intranet +intext:"phone"
intitle:intranet inurl:intranet +intext:\"human resources\"
intitle:intranet inurl:intranet +intext:\"phone\"
intitle:intranet inurl:intranet +intext:”phone”
intitle:liveapplet
intitle:mywebftp \"Please enter your password\"
intitle:open-xchange inurl:login.pl
intitle:opengroupware.org "resistance is obsolete" "Report Bugs" "Username"
intitle:opengroupware.org "resistance is obsolete" "Report Bugs" "Username" "password"
intitle:opengroupware.org “resistance is obsolete” “Report Bugs” “Username” “password”
intitle:osCommerce inurl:admin intext:"redistributable under the GNU" intext:"Online Catalog" -demo -site:oscommerce.com
intitle:osCommerce inurl:admin intext:”redistributable under the GNU” intext:”Online Catalog” -demo -site:oscommerce.com
intitle:phpMyAdmin "Welcome to phpMyAdmin ***" "running on * as root@*"
intitle:phpMyAdmin “Welcome to phpMyAdmin ***” “running on * as root@*”
intitle:phpinfo "PHP Version"
intitle:phpnews.login
intitle:plesk inurl:login.php3
intitle:rapidshare intext:login
intitle:upload inurl:upload intext:upload -forum -shop -support -wc
intitle:”*- HP WBEM Login” | “You are being prompted to provide login account information for *” | “Please provide the information requested and press
intitle:”ADSL Configuration page”
intitle:”ASP Stats Generator *.*” “ASP Stats Generator” “2003-2004 weppos”
intitle:”Admin Login” “admin login” “blogware”
intitle:”Admin login” “Web Site Administration” “Copyright”
intitle:”AlternC Desktop”
intitle:”Apache Tomcat” “Error Report”
intitle:”Apache::Status” (inurl:server-status | inurl:status.html | inurl:apache.html)
intitle:”AppServ Open Project” -site:www.appservnetwork.com
intitle:”Athens Authentication Point”
intitle:”Azureus : Java BitTorrent Client Tracker”
intitle:”BNBT Tracker Info”
intitle:”Belarc Advisor Current Profile” intext:”Click here for Belarc’s PC Management products, for large and small companies.”
intitle:”Big Sister” +”OK Attention Trouble”
intitle:”Cisco CallManager User Options Log On” “Please enter your User ID and Password in the spaces provided below and click the Log On button to co