-
Notifications
You must be signed in to change notification settings - Fork 81
/
google_Dorks.txt.txt
13773 lines (13770 loc) · 449 KB
/
google_Dorks.txt.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
▄▀ ████▄ ████▄ ▄▀ █ ▄███▄ ██▄ ████▄ █▄▄▄▄ █ █▀ ▄▄▄▄▄
▄▀ █ █ █ █ ▄▀ █ █▀ ▀ █ █ █ █ █ ▄▀ █▄█ █ ▀▄
█ ▀▄ █ █ █ █ █ ▀▄ █ ██▄▄ █ █ █ █ █▀▀▌ █▀▄ ▄ ▀▀▀▀▄
█ █ ▀████ ▀████ █ █ ███▄ █▄ ▄▀ █ █ ▀████ █ █ █ █ ▀▄▄▄▄▀
███ ███ ▀ ▀███▀ ███▀ █ █
▀ ▀
Author: Jolanda de Koff
Bulls Eye: https://github.com/BullsEye0
Website: https://hackingpassion.com
A collection of Google Dorks
Hi there, Shall we play a game..?
"MySQL_ROOT_PASSWORD:" "docker-compose" ext:yml
!Host=*.* intext:enc_UserPassword=* ext:pcf
!Host=. intext:enc_UserPassword= ext:pcf
" -FrontPage-" ext:pwd inurl:(service | authors | administrators | users)
" -FrontPage-" ext:pwd inurl:(service | authors | administrators | users) " -FrontPage-" inurl:service.pwd
" ActiveKB v1.5 Copyright ©"
" Dumping data for table (username|user|users|password)"
" Dumping data for table"
" End Stealer " ext:txt
" Powered by JTL-Shop 2"
" Powered by Pie Cart Pro "
" Powered by Xpoze "
" Proudly Served by LiteSpeed Web Server" intitle:index.of./
" created by creato.biz "
" phpMyAdmin MySQL-Dump" "INSERT INTO" -"the"
" phpMyAdmin MySQL-Dump" filetype:txt
"# -FrontPage-" ext:pwd
"# -FrontPage-" ext:pwd inurl:(service | authors | administrators | users) "
"# -FrontPage-" ext:pwd inurl:(service | authors | administrators | users) "# -FrontPage-" inurl:service.pwd
"# -FrontPage-" inurl:service.pwd
"# AdwCleaner" ext:txt
"# Dumping data for table (username|user|users|password)"
"# Dumping data for table"
"# Kickstart" filetype:cfg
"# This file was generated by libcurl! Edit at your own risk." ext:txt
"# phpMyAdmin MySQL-Dump" "INSERT INTO" -"the"
"# phpMyAdmin MySQL-Dump" filetype:txt
"#mysql dump" filetype:sql
"#mysql dump" filetype:sql 21232f297a57a5a743894a0e4a801fc3
"%@" ext:ascx
"& Spider Friendly by Crack"
"(C) This site is NITROpowered!"
"(C) by CyberTeddy"
"-- Account dump" ext:sql -git
"-- Dumping data for table" ext:sql
"-- MySQL Administrator dump" ext:sql
"-- MySQL dump" ext:sql -git
"--- WebView Livescope Http Server Error ---" -git
"-----BEGIN RSA PRIVATE KEY-----" ext:key
"-----BEGIN X509 CERTIFICATE-----" ext:pem -git
".git" intitle:"Index of"
"/1000/system_information.asp"
"/FTPSVC2" intitle:"index of"
"/index.php?id=cmp-noticias"
"/nuke/htmltonuke.php" - "htmltonuke.php"
"/nuke/iframe.php"
"/subcat.php?cate_id="
"/var/cache/registry/"
"/wp-admin/admin-ajax" ext:txt
"100% | 50% | 25%" "Back to gallery" inurl:"show.php?imageid="
"1999-2004 FuseTalk Inc" -site:fusetalk.com
"2003 DUware All Rights Reserved"
"2004 - 2018 iboss, Inc. All rights reserved."
"2004-2005 ReloadCMS Team."
"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"
"2009 Jorp"
"4images Administration Control Panel"
": vBulletin Version 1.1.5"
":: Arachni Web Application Security Report"
"A syntax error has occurred" filetype:ihtml
"ADS-B Receiver Live Dump1090 Map "
"APC Console Port Management Server" intitle:"Console Port Management Server"
"ASP.NET_SessionId" "data source="
"ATutor 1.6.4"
"About Mac OS Personal Web Sharing"
"About Winamp Web Interface" intitle:"Winamp Web Interface"
"Absolute Poll Manager XE"
"Access Denied" "Powered by Incapsula" ext:php
"AcmlmBoard v1.A2"
"Active Webcam Page" inurl:8080
"ActualAnalyzer Lite (free) 2.78"+"Copyright © 2006 ActualScripts"
"Affiliate Network Pro"
"All Rights Reserved. Powered by DieselScripts.com"
"All site content" ext:aspx
"AlumniServer project"
"An illegal character has been found in the statement" -"previous message"
"AnWeb/1.42h" intitle:index.of
"Application Blocked!" "Google bot"
"Aurora CMS"
"AutoCreate=TRUE password="
"AutoCreate=TRUE password=*"
"BEGIN RSA PRIVATE KEY" filetype:key -github
"Barbecued by sNews"
"Basado en Spirate"
"Based on DoceboLMS 2.0"
"Below is a rendering of the page up to the first error." ext:xml
"Betrieben mit Serendipity 1.0.3"
"BioScripts"
"BlackBoard 1.5.1-f | © 2003-4 by Yves Goergen"
"BlackBoard 1.5.1-f | …. 2003-4 by Yves Goergen"
"Blocking Reason:" ext:log -git
"BlogMe PHP created by Gamma Scripts"
"BosDates Calendar System " "powered by BosDates v3.2 by BosDev"
"Browse with Interactive Map"
"Bu Site Ticimax E-Ticaret yazılımı ile hazırlanmıştır."
"Build ref: 26"
"By Geeklog" "Created this page in" +seconds +powered
"By Geeklog" "Created this page in" +seconds +powered inurl:public_html
"CCCLogin.aspx"
"CERN httpd 3.0B (VAX VMS)"
"CF-Host-Origin-IP" "CF-Int-Brand-ID" "CF-RAY" "CF-Visitor" "github" -site:github.com -site:cloudfare.com
"CGI-Telnet Unit-x Team Connected to *.com" OR "CGI-Telnet Unit-x Team Connected to"
"CHARACTER_SETS" "COLLATION_CHARACTER_SET_APPLICABILITY"
"CMS Webmanager-pro"
"CNStats 2.9"
"CaLogic Calendars V1.2.2"
"CakeRoutingException" -site:github.com -site:stackoverflow.com -site:cakephp.org"
"Calendar programming by AppIdeas.com" filetype:php
"Can't connect to local" intitle:warning
"Cannot use a scalar value as an array in" "on line" -issues -help -problem
"Certificate Practice Statement" inurl:(PDF | DOC)
"Chatologica MetaSearch" "stack tracking"
"Chatologica MetaSearch" "stack tracking:"
"Cisco PIX Security Appliance Software Version" + "Serial Number" + "show ver" -inurl
"ClanSys v.1.1"
"Cms.tut.su, 2009 g."
"Config" intitle:"Index of" intext:vpn
"Consola de Joomla! Debug" inurl:index.php
"Content managed by the Etomite Content Management System"
"Copyright (C) 2000 Phorum Development Team"
"Copyright (c) 2004-2006 by Simple PHP Guestbook"
"Copyright (c) Tektronix, Inc." "printer status"
"Copyright 2000 - 2005 Miro International Pty Ltd. All rights reserved" "Mambo is Free Software released"
"Copyright 2004 .... Digital Scribe v.1.4"
"Copyright 2004 easy-content forums"
"Copyright 2004 © Digital Scribe v.1.4"
"Copyright 2005 Affiliate Directory"
"Copyright 2008 ImenAfzar ver :2.0.0.0"
"Copyright @2007 Iatek LLC"
"Copyright Devellion Limited 2005. All rights reserved."
"Copyright Interactivefx.ie"
"Copyright KerviNet"
"Copyright MaxiSepet ©"
"Copyright Metislab" password
"Copyright © Tektronix, Inc." "printer status"
"Copyright © 2002 Agustin Dondo Scripts"
"Copyright …. 2002 Agustin Dondo Scripts"
"Copyright-2008@zeejobsite.com"
"Copyrights © 2005 Belgische Federale Overheidsdiensten"
"CosmoShop by Zaunz Publishing" inurl:"cgi-bin/cosmoshop/lshop.cgi" -johnny.ihackstuff.com -V8.10.106 -V8.10.100 -V.8.10.85 -V8.10.108 -V8.11*
"Create your own free webring and bring traffic to your website. Join now, it's free!"
"Created by weenCompany"
"Creative Guestbook"
"Cyphor (Release:" -www.cynox.ch
"CzarNews v1.12 " | "CzarNews v1.13" | "CzarNews v1.14 "
"DUpaypal" -site:duware.com
"Declassified and Approved for Release by" filetype: pdf
"DeeEmm CMS"
"Desenvolvido por WeBProdZ"
"Desenvolvido por: Fio Mental"
"Designed & Developed by N.E.T E-Commerce Group. All Rights Reserved."
"Designed & Developed by Zeeways.com"
"Designed & Developed by net-finity"
"Designed and Developed by Debliteck Ltd"
"Designed and powered by AWS Sports"
"Designed by Spaceacre"
"Desktop" parent intitle:index.of
"Devana is an open source project !"
"Developed by Bispage.com"
"Developed by Infoware Solutions"
"Developed by Quate.net."
"Developed by rbk"
"Directory Listing for" "Hosted by Xerver"
"Diseño Web Hernest Consulting S.L."
"Do not distribute" (ext:pdf | ext:doc | ext:docx | ext:rtf)
"Driven by DokuWiki"
"Duclassified" -site:duware.com "DUware All Rights reserved"
"Dudirectory" -site:duware.com
"Dumping data for table"
"END_FILE" inurl:"/password.log"
"Easy-Clanpage v2.2"
"El Moujahidin Bypass Shell" ext:php
"Elite Forum Version *.*"
"Elite Forum Version ."
"Email delivery powered by Google" ext:pdf OR ext:txt
"Emanuele Guadagnoli" "CcMail"
"Emefa Guestbook V 3.0"
"Emergisoft web applications are a part of our"
"Enter ip" inurl:"php-ping.php"
"Error Diagnostic Information" intitle:"Error Occurred While"
"Establishing a secure Integrated Lights Out session with" OR intitle:"Data Frame - Browser not HTTP 1.1 compatible" OR intitle:"HP Integrated Lights-
"Establishing a secure Integrated Lights Out session with" OR intitle:"Data Frame – Browser not HTTP 1.1 compatible" OR intitle:"HP Integrated Lights-
"Everyone should be on TV! Now you can upload 2 TV"
"Example: jane.citizen1"
"Eyeland Studio Inc. All Rights Reserved."
"Eyeland Studio Inc. All Rights Reserved." inurl:game.php
"FC Bigfeet" -inurl:mail
"Factux le facturier libre V 1.1.5"
"Fatal NI connect error" ", connecting to:" ext:log
"Fatal error: Call to undefined function" -reply -the -next
"Fenix Final Version v2.0" filetype:php
"File Manager - Current disk free"
"File Manager Version 1.0" "Coded By"
"File Upload Manager v1.3" "rename to"
"File Upload Manager v1.3? "rename to"
"FileZilla" inurl:"recentservers.xml" -git
"Firmware Version" intitle:"iLO" ProLiant Login -hpe.com -update
"FlatNuke" "Valid HTML 4.01!" "Valid CSS!" "Get RSS 2.0 Feed" "Get RSS
"Forum Active Bulletin Board version 1.1 béta 2"
"FrontAccounting"
"Futon on Apache" inurl:_utils
"Galerie 3.2 © 2004 by progressive"
"Gallery powered by fMoblog"
"Generated by phpSystem"
"Greenstone receptionist" inurl:"/etc/main.cfg"
"Généré par KDPics v1.18"
"HTTP" inurl:"access.log" ext:log
"HTTP_FROM=googlebot" googlebot.com "Server_Software="
"HTTP_FROM=googlebot" googlebot.com "Server_Software="
"Help * Contact * Imprint * Sitemap" | "powered by papoo" | "powered by cms papoo"
"Help desk software by United Web Coders rev. 3.0.640"
"Host Vulnerability Summary Report"
"HostingAccelerator" intitle:"login" +"Username" -"news" -demo
"I have been invoked by servletToJSP"
"IBM Security AppScan Report" ext:pdf
"IMail Server Web Messaging" intitle:login
"INSERT INTO phpbb_users" ext:sql
"IPSentry - Device Statistics Information"
"IceWarp Web Mail 5.3.0" "Powered by IceWarp"
"IceWarp Web Mail 5.3.0? "Powered by IceWarp"
"Ideal BB Version: 0.1" -idealbb.com
"Ideal BB Version: 0.1? -idealbb.com
"Incorrect syntax near"
"Incorrect syntax near" -the
"Index Of /network" "last modified"
"Index of /" +.htaccess
"Index of /" +passwd
"Index of /" +password.txt
"Index of /admin"
"Index of /backup"
"Index of /mail"
"Index of /password"
"Index of /wp-content/uploads/backupbuddy_backups" zip
"Index of" "database.sql"
"Index of" "logins.json" "key3.db"
"Index of" / "chat/logs"
"Index of" inurl:"/$Recycle.Bin/"
"Index of" inurl:config inurl:production
"Index of" inurl:htdocs inurl:xampp
"Index of" inurl:phpmyadmin
"Index of" inurl:webalizer
"Index of" rar r01 nfo Modified 2004
"InnoDB:" ext:log
"Installed Objects Scanner" inurl:default.asp
"Instant Free File Uploader"
"Internal Server Error" "server at"
"Internet Photoshow - Slideshow"
"Invision Power Board Database Error"
"JRun Web Server" intitle:index.of
"Jax Calendar v1.34 by Jack (tR), www.jtr.de/scripting/php"
"Jevonweb Guestbook"
"Jinzora Media Jukebox"
"Joomla! Administration Login" inurl:"/index.php"
"KVP_ENCDATA:Version=1.0" ext:log
"LANCOM DSL/*-* Office *" "Entry Page"
"LGD_CARDNUM" ext:log -site:camper.com
"Ladder Scripts by http://www.mygamingladder.com"
"Ladder Scripts by"
"Last modified" intitle:"index of" "dropbox"
"Liberum Help Desk, Copyright (C) 2001 Doug Luxem"
"Liberum Help Desk, Copyright (C) 2001 Doug Luxem. Please view the license
"LinPHA Version 1.3.x" or "The LinPHA developers"
"Link Department"
"Log in" "Magento is a trademark of Magento Inc."
"Logfile of Trend Micro HijackThis" ext:log
"Login - Sun Cobalt RaQ"
"Login Name" Repository Webtop intitle:login
"Login to Usermin" inurl:20000
"Login – Sun Cobalt RaQ"
"Looking Glass" (inurl:"lg/" | inurl:lookingglass)
"Looking Glass" (inurl:"lg/" | inurl:lookingglass)
"MAIL_PASSWORD" filetype:env
"MaXX/3.1" intitle:index.of
"MacHTTP" filetype:log inurl:machttp.log
"Mail-it Now!" intitle:"Contact form" | inurl:contact.php
"MailChimp API error:" ext:log
"Maintained with Subscribe Me 2.044.09p"+"Professional" inurl:"s.pl"
"MangoBery 1.0 Alpha"
"Marketplace Version 1.1.1"
"Mecury Version" "Infastructure Group"
"Members Statistics" +"Total Members" +"Guests Online"
"Microsoft (R) Windows (TM) Version DrWtsn32 Copyright (C)" ext:log
"Microsoft (R) Windows * (TM) Version * DrWtsn32 Copyright (C)" ext:log
"Microsoft CRM : Unsupported Browser Version"
"Microsoft ® Windows * ™ Version * DrWtsn32 Copyright ©" ext:log
"Microsoft ® Windows ™ Version DrWtsn32 Copyright ©" ext:log
"Microsoft-IIS/* server at" intitle:index.of
"Microsoft-IIS/4.0" intitle:index.of
"Microsoft-IIS/5.0 server at"
"Microsoft-IIS/6.0" intitle:index.of
"MidiCart PHP Database Management"
"Mimicboard2 086"+"2000 Nobutaka Makino"+"password"+"message" inurl:page=1
"MiniToolBox by Farbar" ext:txt
"MobPartner Counter" "upload files"
"More Info about MetaCart Free"
"Most Submitted Forms and Scripts" "this section"
"Most Submitted Forms and s?ri?ts" "this section"
"Multi-Page Comment System"
"MunzurSoft Wep Portal W3"
"My Documents" "parent" intitle:index.of
"My Photo v1.46.4 © Big Resources"
"My RoboForm Data" "index of"
"Netware * Home" inurl:nav.html
"Network Host Assessment Report" "Internet Scanner"
"Network Vulnerability Assessment Report"
"News Managed by Ditto News"
"News generated by Utopia News Pro" | "Powered By: Utopia News Pro"
"Novell, Inc" WEBACCESS Username Password "Version *.*" Copyright -inurl:help -guides|guide
"Novell, Inc" WEBACCESS Username Password "Version *.*" Copyright -inurl:help -guides|guide
"OK logout" inurl:vb.htm?logout=1
"OPENSRS Domain Management" inurl:manage.cgi
"ORA-00921: unexpected end of SQL command"
"ORA-00933: SQL command not properly ended"
"ORA-00936: missing expression"
"ORA-12541: TNS:no listener" intitle:"error occurred"
"OTL Extras logfile created on:" ext:txt
"OTL logfile" "by OldTimer" ext:txt
"Obtenez votre forum Aztek" -site:forum-aztek.com
"OmniHTTPd/2.10" intitle:index.of
"Online Store - Powered by ProductCart"
"Online Store – Powered by ProductCart"
"OpenSA/1.0.4" intitle:index.of
"OpenSSL" AND "1.0.1 Server at" OR "1.0.1a Server at" OR "1.0.1b Server at" OR "1.0.1c Server at" OR "1.0.1d Server at" OR "1.0.1e Server at" OR "1.0.1f Server at"
"Operating System Intel Recovery" ext:txt
"Oracle peoplesoft sign in" inurl:"cmd=login?" -github -stackoverflow -gitlab
"Output produced by SysWatch "
"Output produced by SysWatch *"
"PGP SIGNED MESSAGE-----" inurl:"md5sums"
"PHP BP Team"
"PHP Credits" "Configuration" "PHP Core" ext:php inurl:info
"PHP Easy Downloader"
"PHP Fatal error: require()" ext:log
"PHP Gallery © 2010 PHP Weby hostgator coupon"
"PHP Link Portal v1.95.1 © Big Resources, Inc."
"PHP Mailer" "priv8 Mailer" ext:php
"PHP Project Management 0.8.10"
"PHP Version" inurl:/php/phpinfo.php
"PHP WEBQUEST VERSION " or inurl:"/phpwebquest/"
"PHP eMailer is created by" ext:php
"PHPAuction GPL Enhanced V2.51 by AuctionCode.com"
"PHPGlossar Version 0.8"
"PHPNews Version 0.93"
"PHPWebAdmin for hMailServer" intitle:PHPWebAdmin -site:hmailserver.com
"PKs Movie Database"
"POWERED BY ALITALK"
"POWERED BY LOG1 CMS"
"POWERED BY PHPNUKE.IR"
"POWERED BY ZIPBOX MEDIA" inurl:"album.php"
"POWERED BY: WEBINSPIRE"
"Page created in" "seconds by glFusion" +RSS
"PaperCut Login"
"ParsBlogger ? 2006. All rights reserved"
"Parse error: parse error, unexpected T_VARIABLE" "on line" filetype:php
"Password=" inurl:web.config -intext:web.config ext:config
"Personal .NET Portal"
"Phaser 6250" "Printer Neighborhood" "XEROX CORPORATION"
"Phaser 6250? "Printer Neighborhood" "XEROX CORPORATION"
"Phaser 8200" "© Xerox" "refresh" " Email Alerts"
"Phaser 8200? "…. Xerox" "refresh" " Email Alerts"
"Phaser® 740 Color Printer" "printer named: "
"Phaser® 840 Color Printer" "Current Status" "printer named:"
"Phaser…. 740 Color Printer" "printer named: "
"Phaser…. 840 Color Printer" "Current Status" "printer named:"
"Phorum Admin" "Database Connection" inurl:forum inurl:admin
"PhpCollab . Log In" | "NetOffice . Log In" | (intitle:"index.of." intitle:phpcollab|netoffice inurl:phpcollab|netoffice -gentoo)
"PhpLinkExchange v1.02"
"Please authenticate yourself to get access to the management interface"
"Please click here to download and install the latest plug-in. Close your browser before installation."
"Please login with admin pass" -"leak" -sourceforge
"Please re-enter your password It must match exactly"
"Please use Netscape 2.0 or enhance !!" -site:dlink.com -site:ovislink.com.tw
"Portal engine source code * copyright …. 2002-2004 * DotNetNuke." -site:dotnetnuke.com
"PostgreSQL query failed: ERROR: parser: parse error"
"PostgreSQL query failed: ERROR: parser: parse error"
"Power by Blakord Portal"
"Power by:RichStrong CMS"
"PowerMovieList 0.14 Beta Copyright"
"Powerd by www.e-webtech.com"
"Powered *: newtelligence" ("dasBlog 1.6"| "dasBlog 1.5"| "dasBlog 1.4"|"dasBlog 1.3")
"Powered *: newtelligence" ("dasBlog 1.6?| "dasBlog 1.5?| "dasBlog 1.4?|"dasBlog 1.3?)
"Powered By 0DayDB v2.3"
"Powered By 4smart"
"Powered By : Yamamah Version 1.00"
"Powered By AV Arcade"
"Powered By Aardvark Topsites PHP 4.2.2"
"Powered By AlstraSoft AskMe Pro"
"Powered By Aqua Cms"
"Powered By Azadi Network"
"Powered By Basic CMS SweetRice"
"Powered By CMS-BRD"
"Powered By CrownWeb.net!" inurl:"page.cfm"
"Powered By Dejcom Market CMS"
"Powered By Dew-NewPHPLinks v.2.1b"
"Powered By DynamicPAD"
"Powered By EgyPlus"
"Powered By Elite Forum Version *.*"
"Powered By Gravity Board X v2.0 BETA"
"Powered By HASHE"
"Powered By IP.Board 3.0.0 Beta 5"
"Powered By Liferay"
"Powered By OpenCart"
"Powered By PageAdmin CMS Free Version"
"Powered By Pligg" + "Legal: License and Source"
"Powered By ScozNews"
"Powered By Steamcast "0.9.75 beta
"Powered By The Black Lily 2007"
"Powered By W3infotech"
"Powered By Webcards"
"Powered By X7 Chat"
"Powered By Zoopeer"
"Powered By diskos"
"Powered By phpBB Garage 1.2.0"
"Powered By phpCOIN 1.2.2"
"Powered By phpCOIN v1.2.1" / "mod.php?mod=faq"
"Powered By: Simplicity oF Upload" inurl:download.php | inurl:upload.php
"Powered By: lucidCMS 1.0.11"
"Powered by 2Moons"
"Powered by 68kb"
"Powered by : elkagroup.com"
"Powered by A-CART"
"Powered by AJ-Fork v.167"
"Powered by AJ-Fork v.167?
"Powered by AMCMS3"
"Powered by Absolute File Send"
"Powered by Absolute Podcast"
"Powered by Active PHP Bookmarks v1.3" inurl:.view_group.php?id=
"Powered by Ajax Portal 3.0"
"Powered by AlstraSoft SendIt Pro"
"Powered by Apache Subversion version"
"Powered by Atomic Photo Album" inurl:"photo.php?apa_album_ID="
"Powered by AutoIndex PHP Script"
"Powered by AutoIndex PHP Script" ext:php
"Powered by AzDg" (2.1.3 | 2.1.2 | 2.1.1)
"Powered by BIGACE 2.4"
"Powered by BIGACE 2.5"
"Powered by BLOG:CMS"|"Powered by blogcms.com"|"2003-2004, Radek Hulán"
"Powered by BOINC"
"Powered by Battle Blog"
"Powered by BosClassifieds Classified Ads System"
"Powered by Burning Board Lite 1.0.2 * 2001-2004"
"Powered by Burning Board Lite 1.0.2" or "Powered by Burning Board 2.3.6"
"Powered by Burning Board" -exploit -johnny
"Powered by CCLeague Pro"
"Powered by CMS.GE"
"Powered by CMScout ©2005 CMScout Group"
"Powered by CMSimple"
"Powered by Caudium Webserver" -caudium.net
"Powered by ClanAdmin Tools v1.4.2"
"Powered by ClanTiger"
"Powered by ClanTiger"
"Powered by Claroline" -demo
"Powered by Clicknet CMS"
"Powered by Clipshare"
"Powered by Comdev News Publisher"
"Powered by ComicShout"
"Powered by CommonSense CMS"
"Powered by Content Injector v1.52"
"Powered by Content Injector v1.53"
"Powered by Coppermine Photo Gallery"
"Powered by Coppermine Photo Gallery" ( "v1.2.2 b" | "v1.2.1" | "v1.2" | "v1.1" | "v1.0")
"Powered by CubeCart 3.0.4"
"Powered by CubeCart"
"Powered by CuteNews"
"Powered by DCP-Portal v5.5"
"Powered by DCP-Portal v5.5?
"Powered by DMXReady Site Chassis Manager" -site:dmxready.com
"Powered by DUpaypal" -site:duware.com
"Powered by DVHome.cn"
"Powered by DWMail" password intitle:dwmail
"Powered by DWdirectory"
"Powered by DZcms"
"Powered by Dayfox Designs"
"Powered by DesClub.com - phpLinkat"
"Powered by DigitalHive"
"Powered by Download 3000"
"Powered by Drake CMS" inurl:index.php?option=guestbook
"Powered by Drumbeat" inurl:index02.php
"Powered by Duclassified" -site:duware.com
"Powered by Duclassified" -site:duware.com "DUware All Rights reserved"
"Powered by Dudirectory" -site:duware.com
"Powered by ECShop v2.5.0"
"Powered by EPay Enterprise" inurl:"shop.htm?cid=" | nurl:"shop.php?cid="
"Powered by EZCMS"
"Powered by Elgg, the leading open source social networking platform"
"Powered by Espinas IT"
"Powered by ExBB "
"Powered by F3Site"
"Powered by FUDForum 2.6" -site:fudforum.org -johnny.ihackstuff
"Powered by FUDForum 2.7" -site:fudforum.org -johnny.ihackstuff
"Powered by FUDforum"
"Powered by Fantastic News v2.1.2" or "Powered by Fantastic News v2.1.3"
"Powered by FlashGameScript"
"Powered by FlexPHPNews" inurl:news | inurl:press
"Powered by ForumApp"
"Powered by FreeWebshop"
"Powered by FreeWebshop.org 2.2.1"
"Powered by FubarForum v1.5"
"Powered by FubarForum v1.6"
"Powered by FunkBoard"
"Powered by GGCMS"
"Powered by GTChat 0.95"+"User Login"+"Remember my login information"
"Powered by Gallery v1.4.4"
"Powered by Gallery v1.4.4?
"Powered by GameSiteScript"
"Powered by GeN4"
"Powered by GetMyOwnArcade"
"Powered by Glossword 1.8.11" OR "Powered by Glossword 1.8.6"
"Powered by Gravity Board"
"Powered by Gravy Media"
"Powered by Grayscale Blog"
"Powered by How2asp"
"Powered by IMGallery"
"Powered by INVOhost"
"Powered by IceWarp Software" inurl:mail
"Powered by Ikonboard 3.1.1"
"Powered by Ikonboard 3.1.1?
"Powered by Invision Power Board(U) v1.3 Final"
"Powered by Invision Power File Manager" (inurl:login.php) | (intitle:"Browsing directory /" )
"Powered by KaiBB 1.0.1"
"Powered by Knowledge Base"
"Powered by LDU"
"Powered by Land Down Under 601"
"Powered by Land Down Under 601?
"Powered by Lanius CMS"
"Powered by Leap"
"Powered by LifeType" "RSS 0.90" "RSS 1.0" "RSS 2.0" "Valid XHTML 1.0 Strict and CSS"
"Powered by LightBlog" - Powered by LightBlog
"Powered by LightNEasy"
"Powered by Link Department"
"Powered by Locazolist Copyright © 2006"
"Powered by LoudBlog"
"Powered by Loudblog"
"Powered by MD-Pro" | "made with MD-Pro"
"Powered by MDForum"
"Powered by Maian Recipe v1.0"
"Powered by Md-Pro"
"Powered by Megabook *" inurl:guestbook.cgi
"Powered by Merak Mail Server Software" -.gov -.mil -.edu -site:merakmailserver.com -johnny.ihackstuff
"Powered by MercuryBoard [v1"
"Powered by MercuryBoard"
"Powered by MetInfo 2.0"
"Powered by MetInfo 3.0"
"Powered by Midmart Messageboard" "Administrator Login"
"Powered by Minerva"
"Powered by MobPartner" inurl:"chat.php"
"Powered by Monster Top List" MTL numrange:200-
"Powered by My Blog" intext:"FuzzyMonkey.org"
"Powered by My PHP Indexer 1.0"
"Powered by MySpace Content Zone"
"Powered by NovaBoard v1.0.0"
"Powered by NovaBoard v1.1.2"
"Powered by Nukedit"
"Powered by OnePound"
"Powered by Online Grades"
"Powered by Open Source Chat Platform Rocket.Chat."
"Powered by Orca Interactive Forum Script"
"Powered by Ovidentia"
"Powered by PG Online Training Solution - learning management system"
"Powered by PG Real Estate Solution - real estate web site design"
"Powered by PG Roomate Finder Solution - roommate estate web site design"
"Powered by PHP Advanced Transfer Manager v1.30"
"Powered by PHP Director 0.2"
"Powered by PHP Director"
"Powered by PHP Live! v3.3"
"Powered by PHP Photo Album"
"Powered by PHP Shop from DeltaScripts"
"Powered by PHP iCalendar"
"Powered by PHP-Fusion v6.00.110" | "Powered by PHP-Fusion v6.00.2.." | "Powered by PHP-Fusion v6.00.3.." -v6.00.400 -johnny.ihackstuff
"Powered by PHP-Update" -site:www.php-update.co.uk
"Powered by PHPBack"
"Powered by PHPBasket"
"Powered by PHPFM" filetype:php -username
"Powered by PHPizabi v0.848b C1 HFP1"
"Powered by PMOS Help Desk"
"Powered by PWP Version 1-5-1" AND inurl:"/wiki/run.php"
"Powered by ParsBlogger"
"Powered by Philboard" inurl:"philboard_forum.asp"
"Powered by Podcast Generator"
"Powered by Populum"
"Powered by PowerPortal v1.3"
"Powered by PowerPortal v1.3?
"Powered by ProjectCMS"
"Powered by PsNews"
"Powered by PunBB"
"Powered by Quick.Cart"
"Powered by Quick.Cms"
"Powered by RGameScript"
"Powered by RW::Download v2.0.3 lite"
"Powered by Real Estate Portal"
"Powered by RealAdmin and Red Cow Technologies, Inc."
"Powered by Reciprocal Links Manager"
"Powered by RedCat" inurl:index.php?contentId=
"Powered by Rock Band CMS 0.10"
"Powered by SLAED CMS"
"Powered by SMF"
"Powered by SOFTMAN"
"Powered by SOOP Portal Raven 1.0b"
"Powered by SazCart"
"Powered by Scallywag"
"Powered by Scratcher"
"Powered by Scripteen Free Image Hosting Script V 2.3"
"Powered by Scripteen Free Image Hosting Script V1.2"
"Powered by SePortal 2.5"
"Powered by Seditio"
"Powered by Shadowed Portal"
"Powered by Shop-Script FREE"
"Powered by Shout!"
"Powered by SilverNews"
"Powered by Simple PHP Text newsletter"
"Powered by Simplog"
"Powered by SiteEngine"
"Powered by SiteX 0.7 Beta"
"Powered by Smoothflash"
"Powered by SocketMail Lite version 2.2.8. Copyright © 2002-2006"
"Powered by SoftbizScripts" "ALL JOBS"
"Powered by SoftbizScripts" "OUR SPONSORS"
"Powered by SoftbizScripts" inurl:"searchresult.php?sbcat_id="
"Powered by SoftbizScripts" inurl:store_info.php
"Powered by TS Special Edition"
"Powered by TinyPHPForum v3.61"
"Powered by Trac 1.0.2"
"Powered by UCStats version 1.1"
"Powered by UNAK-CMS"
"Powered by UNO.com.my"
"Powered by UPB"
"Powered by UPB" (b 1.0)|(1.0 final)|(Public Beta 1.0b)
"Powered by UebiMiau" -site:sourceforge.net
"Powered by VS PANEL 7.5.5"
"Powered by VS PANEL"
"Powered by ViewVC 1.0.3"
"Powered by Vsns Lemon" intitle:"Vsns Lemon"
"Powered by WSN Guest"
"Powered by WebStudio eCatalogue"
"Powered by WebStudio eHotel"
"Powered by WebText"
"Powered by Woltlab Burning Board" -"2.3.3" -"v2.3.3" -"v2.3.2" -"2.3.2"
"Powered by WordPress" -html filetype:php -demo -wordpress.org -bugtraq
"Powered by WowBB" -site:wowbb.com
"Powered by XHP CMS" -ihackstuff -exploit -xhp.targetit.ro
"Powered by XMB"
"Powered by XOOPS 2.2.3 Final"
"Powered by Xaraya" "Copyright 2005"
"Powered by Xcomic"
"Powered by Xplode CMS"
"Powered by YDC"
"Powered by YaPig V0.92b"
"Powered by YourTube v1.0"
"Powered by ZeeMatri"
"Powered by Zimplit CMS"
"Powered by Zomplog"
"Powered by Zorum 3.5"
"Powered by [ iSupport 1.8 ]"
"Powered by and copyright class-1" 0.24.4
"Powered by and copyright class-1" 0.24.4
"Powered by autolinks pro 2.1" inurl:register.php
"Powered by bSpeak 1.10"
"Powered by beamospetition 1.0.12"
"Powered by bp blog 6.0"
"Powered by cifshanghai.com"
"Powered by cityadmin and Red Cow Technologies, Inc."
"Powered by cpCommerce"
"Powered by eXV2 Vers"
"Powered by ezContents Version 1.4.5"
"Powered by i-pos Storefront"
"Powered by iNetScripts"
"Powered by iScripts SocialWare"
"Powered by ispCP Omega"
"Powered by jSite 1.0 OE"
"Powered by kryCMS"
"Powered by mlffat"
"Powered by mnoGoSearch - free web search engine software"
"Powered by mnoGoSearch – free web search engine software"
"Powered by mojoPortal"
"Powered by myBusinessAdmin and Red Cow Technologies, Inc."
"Powered by myUPB"
"Powered by nzFotolog v0.4.1 © 2005-2006 Ricardo Amaral"
"Powered by ocPortal" -demo -ocportal.com
"Powered by osCMax v2.0" , "Copyright @" "RahnemaCo.com"
"Powered by photokorn"
"Powered by phpBB" inurl:"index.php?s" OR inurl:"index.php?style"
"Powered by phpCC Beta 4.2"
"Powered by phpMySport"
"Powered by phpOpenTracker" Statistics
"Powered by sNews " inurl:index.php?id=
"Powered by sNews CMS"
"Powered by sNews"
"Powered by samart-cms"
"Powered by sendcard - an advanced PHP e-card program"
"Powered by sendcard - an advanced PHP e-card program" -site:sendcard.org
"Powered by vBulletin Version 5.5.4"
"Powered by vShare"
"Powered by visinia"
"Powered by vlBook 1.21"
"Powered by web directory script"
"Powered by webSPELL"
"Powered by words tag script"
"Powered by wpQuiz"
"Powered by wpQuiz" inurl:index.php
"Powered by www.aspportal.net"
"Powered by xchangeboard"
"Powered by xeCMS"
"Powered by yacs"
"Powered by yappa-ng 2.3.1" AND "Powered by yappa-ng 2.3.1"
"Powered by yappa-ng"
"Powered by: Arab Portal v2"
"Powered by: Censura"
"Powered by: Elite Gaming Ladders v3.2"
"Powered by: IRIran.net"
"Powered by: Land Down Under 800" | "Powered by: Land Down Under 801" - www.neocrome.net
"Powered by: Land Down Under 800" | "Powered by: Land Down Under 801" - www.neocrome.net
"Powered by: MFH v1"
"Powered by: MyPHP Forum"
"Powered by: PHP Link Directory"
"Powered by: PhotoPost PHP 4.6" or "Powered by: PhotoPost PHP 4.5"
"Powered by: PhotoPost PHP 4.6.5"
"Powered by: PostGuestbook 0.6.1"
"Powered by: PreProjects"
"Powered by: Southburn"
"Powered by: Yes Solutions"
"Powered by: eSmile"
"Powered by: vBulletin * 3.0.1" inurl:newreply.php
"Powered by: vBulletin * 3.0.1? inurl:newreply.php
"Powered by: vBulletin Version 1.1.5"
"Powered by: vBulletin Version 1.1.5?
"Powered byPlanet eStream"
"Powie's PSCRIPT MatchMaker 4.05"
"ProQuest provides subscription access to numerous premium technical journals, dissertations and other information databases."
"Protocol=unreal" ext:ini -git
"Proudly created with Wix.com"
"QuickDiag" "by g3n-h@ckm@n" ext:txt
"RDServer Product information" | inurl:"/rdagent.jsp"
"REALTOR 747 - Version 4.11"
"RICOH Network Printer D model-Restore Factory"
"RS MAXSOFT"
"Red Hat Secure/2.0"
"Red Hat Secure/3.0 server at"
"Remote Supervisor Adapter II" inurl:userlogin_logo.ssi
"Request Details" "Control Tree" "Server Variables"
"Review Script" "Phil Taylor"
"Runcms Copyright" "2002 - 2007" +"page created"
"Running in Child mode"
"S-CMS by matteoiamma"
"SECRET//NOFORN" ext:pdf
"SERVER_ADDR" "SERVER_PORT" "SERVER_NAME" ext:log
"SOOP Portal 2.0"
"SQL Server Driver][SQL Server]Line 1: Incorrect syntax near"
"SQuery 4.5" |"SQuery 4.0" |"SQuery 3.9" | inurl:"modules.php?name=SQuery"
"START securepay" ext:log
"Scan result of Farbar Recovery Scan Tool" ext:txt
"Scanned by Camscanner" filetype:pdf
"Scientific Image DataBase"
"Script réalisé par BinGo PHP"
"Search Adult Directory:"
"Search Affiliate Programs:"
"Search Projects" intitle:"The ultimate project website"
"Search | Invite | Mail | Blog | Forum"
"Section" inurl:"xorg.conf" ext:conf -wiki
"Select a database to view" intitle:"filemaker pro"
"Send amazing greetings to your friends and relative!"
"Shadow Security Scanner performed a vulnerability assessment"
"ShopMaker v1.0"
"Signkorn Guestbook 1.3"
"SimpleBlog 2.3 by 8pixel.net"
"Sinapis by scripter.ch"
"Site designed and built Powered by GlobalWebTek."
"Site designed and built by Powder Blue." inurl:index.php?id_page=
"Site designed and built by ProWeb Associates."
"Site powered By Limbo CMS"
"Site powered by GuppY"
"Site powered by GuppY" | "Site créé avec GuppY" +inurl:lng=
"Site produced by GeneralProducts.co.uk"
"SiteBar Bookmark Manager" inurl:index.php?w=
"Sitedesign by: Dieleman www.dieleman.nl - Copyright © 2010"
"Siteman Version 1.1.9"
"SmodBIP" & "Aktualno.ci"
"SmodCMS" & "S.ownik"
"SnapGear Management Console" "Welcome to the SnapGear Unit!" -pdf
"SnortSnarf alert page"
"Software Categories" "Featured Resources" "Search"
"Software PBLang 4.66z" AND "Software PBLang 4.60" OR "Software PBLang"
"Software PBLang" 4.65 filetype:php
"Sorting Logs:" "Please enter your password" "Powered By" -urlscan -alamy
"Splatt Forum©"
"SquirrelMail version 1.4.4" inurl:src ext:php
"SquirrelMail version 1.4.4? inurl:src ext:php
"SquirrelMail version" "By the SquirrelMail Development Team"
"SquirrelMail version" "By the SquirrelMail development Team"
"Start of NVIDIA bug report log file" ext:log
"Starting SiteZAP 6.0"
"Starting SiteZAP 6.0?
"Starting bid" "Powered by SoftbizScripts"
"Stats generated by pisg v0.73"
"Status message received from" intitle:big brother
"Stealer by W33DY" ext:txt
"Summary View of Sensors" | "sensorProbe8 v *" | "
"Supplied argument is not a valid MySQL result resource"
"Supplied argument is not a valid PostgreSQL result"
"SurgeMAIL" inurl:/cgi/user.cgi ext:cgi
"Switch to table format" inurl:table|plain
"Syntax error in query expression " -the
"SysCP - login"
"SysCP – login"
"TR Newsportal" brought by TRanx.
"TROforum 0.1"
"TX_start" "card_name" ext:log
"Tanyakan Pada Rumput Yang Bergoyang"
"Thank You for using WPCeasy"
"Thank you for your order" +receipt
"Thank you for your purchase" +download
"The Merchant Project"
"The following report contains confidential information" vulnerability -search
"The s?ri?t whose uid is " "is not allowed to access"
"The script whose uid is " "is not allowed to access"
"The statistics were last upd?t?d" "Daily"-microsoft.com
"The statistics were last updated" "Daily"-microsoft.com
"There are no Administrators Accounts" inurl:admin.php -mysql_fetch_row
"There seems to have been a problem with the" " Please try again by clicking the Refresh button in your web browser."
"These forums are running on" "miniBB"
"These statistics were produced by getstats"
"This WebUI administration tool requires scripting support" intitle:'Login' intext:'Admin Name:' -score
"This file was generated by Nessus"
"This forum powered by Phorum."
"This is a Free & Open Source mailing list manager"
"This is a Shareaza Node"
"This is a restricted Access Server" "Javas?ri?t Not Enabled!"|"Messenger Express" -edu -ac
"This is a restricted Access Server" "Javascript Not Enabled!"|"Messenger Express" -edu -ac
"This page has been automatically generated by Plesk Server Administrator"
"This page is for configuring Samsung Network Printer" | printerDetails.htm
"This report lists" "identified by Internet Scanner"
"This report was generated by WebLog"
"This script created by www.script.canavari.com"
"This script was created by Php-ZeroNet" "Script . Php-ZeroNet"
"This section is for Administrators only. If you are an administrator then please"
"This server is operated by OpenX."
"This service is powered by a copy of ZendTo"
"This site is powered by CMS Made Simple version 1."
"This site is powered by CMS Made Simple version 1.2.2"
"This site is powered by CMS Made Simple"
"This site is powered by e107"
"This site is powered by e107"|inurl:e107_plugins|e107_handlers|e107_files
"This summary was generated by wwwstat"
"This web site was made with MD-Pro"
"This web site was made with PostNuke"
"This website engine code is copyright" "2005 by Clever Copy" -inurl:demo
"This website is powered by Mobius"
"This website is powered by Trio"
"This website powered by PHPX" -demo
"This website was created with phpWebThings 1.4"
"This website was created with phpWebThings"
"TinyBB 2011 all rights reserved"
"To Parent Directory" AND "dir>" AND "web.config"
"To view the Web interface of the SpeedTouch, Java
"Torbstoff News 4"
"Traffic Analysis for" "RMON Port * on unit *"
"Traffic Analysis for" "RMON Port on unit "
"Transloader by Somik.org" OR "Transloader by" OR "Transloder"
"Unable to jump to row" "on MySQL result index" "on line"
"Unclosed quotation mark before the character string"
"Upload unique IP List:" AND "The Ultimate Fake Hit Generator - BOOST YOUR ALEXA RANK"
"Upload" inurl:"https://webfiles"
"Uploader by CeleronDude."
"Use these fields to set or change the Administrator Password. When set, the Administrator Password is required before you can access and change configuration parameters. To disable the Administrator Password, leave the entries blank."
"VB Viewer" inurl:/viewer/live/ja/live.html
"VHCS Pro ver" -demo
"VHCS Pro ver" -demo
"VNC Desktop" inurl:5800
"Version Info" "Boot Version" "Internet Settings"
"Vivid Ads Shopping Cart"
"WEB Browser Password Recovery" ext:txt
"WHMCS Auto Xploiter"
"Warning: Bad arguments to (join|implode) () in" "on line" -help -forum
"Warning: Cannot modify header information - headers already sent"
"Warning: Cannot modify header information – headers already sent"
"Warning: Division by zero in" "on line" -forum
"Warning: Installation directory exists at" "Powered by Zen Cart" -demo
"Warning: Supplied argument is not a valid File-Handle resource in"
"Warning: mysql_connect(): Access denied for user: '*@*" "on line" -help -forum
"Warning: mysql_connect(): Access denied for user: '*@*" "on line" -help -forum
"Warning: mysql_connect(): Access denied for user: '@" "on line" -help -forum
"Warning: mysql_connect(): Access denied for user: ‘*@*" "on line" -help -forum
"Warning: mysql_query()" "invalid query"
"Warning: pg_connect(): Unable to connect to PostgreSQL server: FATAL"
"Warning:" "Cannot execute a blank command in"
"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"
"Warning:" "SAFE MODE Restriction in effect." "The script whose uid is" "is not allowed to access owned by uid 0 in" "on line"
"Warning:" "failed to open stream: HTTP request failed" "on line"
"Web Analytics powered by Open Web Analytics - v: 1.6.2"
"Web Application Assessment Report" ext:pdf
"Web File Browser" "Use regular expression"
"Web Group Communication Center beta 0.5.6" OR "Web Group Communication Center beta 0.5.5"
"Web Group Communication Center"
"Web Site Design by Red Cat Studios"
"Web page sent by InterMapper"
"Web site engine's code is copyright © 2001-2007 ATutor®"
"Web-Based Management" "Please input password to login" -inurl:johnny.ihackstuff.com
"WebCalendar v1.0.4"
"WebExplorer Server - Login" "Welcome to WebExplorer Server"
"WebExplorer Server – Login" "Welcome to WebExplorer Server"
"WebSTAR Mail - Please Log In"
"WebSTAR Mail – Please Log In"
"Webdesign Cosmos Solutions"
"Website Design by Rocktime"
"Website Powered By Creative SplashWorks - SplashSite"
"Website by Spokane Web Communications"
"Website by WebSolutions.ca"
"Website powered by Subdreamer CMS & Sequel Theme Designed by indiqo.media"
"Webthru User Login"
"Welcome to Administration" "General" "Local Domains" "SMTP Authentication" inurl:admin
"Welcome to Exponent CMS" | "my new exponent site"
"Welcome to Exponent CMS" | "my new exponent site" inurl:articlemodule
"Welcome to Intranet"
"Welcome to PHP-Nuke" congratulations
"Welcome to Sitecore" + "License Holder"
"Welcome to phpMyAdmin" " Create new database"
"Welcome to phpMyAdmin" + "Username:" + "Password:" + "Language:" + "Afrikaans"
"Welcome to phpMyAdmin" AND " Create new database"
"Welcome to the CyberGuard unit!"
"Welcome to the Prestige Web-Based Configurator"
"Welcome to the directory listing of" "NetworkActiv-Web-Server"
"Welcome to the versatileBulletinBoard" | "Powered by versatileBulletinBoard"
"X-CART. Powerful PHP shopping cart software"
"YaBB SE Dev Team"
"Yogurt build"
"You have an error in your SQL syntax near"
"You have not provided a survey identification num
"You have not provided a survey identification number"
"You have requested access to a restricted area of our website. Please authenticate yourself to continue."
"You have requested to access the management functions" -.edu
"You have requested to access the management functions" -.edu
"You have selected the following files for upload (0 Files)."
"You're successfully running JSON Server"
"Your password is * Remember this for later use"
"Your password is Remember this for later use"
"[ phpinfo ] [ php.ini ] [ cpu ] [ mem ] [ users ] [ tmp ] [ delete ]"
"[FFFTP]" ext:ini
"[HKEY_CURRENT_USERSoftwareSimonTathamPuTTYSessions]" ext:reg
"[HKEY_CURRENT_USER\Software\sota\FFFTP]" filetype:reg
"[LocalizedFileNames]" inurl:"desktop.ini" ext:ini -git -wiki
"[PHPSESSID]" ext:log
"[SQL Server Driver][SQL Server]Line 1: Incorrect syntax near" -forum -thread -showthread
"[Tera Term]" inurl:"teraterm.ini" ext:ini -git
"[boot loader]" "WINNT" ext:ini
"[dirs]" inurl:"mirc.ini" -git
"[function.getimagesize]: failed to open stream: No such file or directory in"
"[main]" "enc_GroupPwd=" ext:txt
"access denied for user" "using password"
"accounts.xlsx" ext:xlsx
"adding new user" inurl:addnewuser -"there are no domains"
"admin account info" filetype:log
"advanced_search_results.php?gender="
"air confirmation" "passenger(s)"
"allow_call_time_pass_reference" "PATH_INFO"
"and Powered By :Sansak"
"ansible.log" | "playbook.yaml" | ".ansible.cfg" | "playbook.yml" | host.ini intitle:"index of"
"apricot - admin" 00h
"apricot – admin" 00h
"authentication failure; logname=" ext:log
"automatic teller" "operator manual" "password" filetype:pdf
"battlefield" "email" site:pastebin.com
"bp blog admin" intitle:login | intitle:admin -site:johnny.ihackstuff.com
"by Pivot - 1.40.5" +'Dreadwind' -pivotlog.net
"by Reimar Hoven. All Rights Reserved. Disclaimer" | inurl:"log/logdb.dta"
"by eXtreme Crew"
"by in-link" or "Powered by In-Link 2."
"cacheserverreport for" "This analysis was produced by calamaris"
"cms SunLight 5.2"
"com_joom12pic"
"com_joomlaflashfun"
"com_lmo"
"configure account user encrypted" ext:cfg
"contrasena" filetype:sql -github.com
"copyright 2006 Broadband Mechanics"
"create account" admin ext:cfg
"create the Super User" "now by clicking here"
"d-i passwd/root-password-crypted password" ext:cfg
"database_password" filetype:yml "config/parameters.yml
"database_password" filetype:yml "config/parameters.yml"
"delete entries" inurl:admin/delete.asp
"delivered by mailman" inurl:admin/mailman | intitle:"Mailman Administrator Authentication"
"department" | "agency" | "government" "intitle:"login form" -youtube -template
"description" & "size" intitle:"index of" "owncloud"