-
Notifications
You must be signed in to change notification settings - Fork 0
/
hugedorkdump.txt
20936 lines (20936 loc) · 663 KB
/
hugedorkdump.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
!Host=*.* intext:enc_UserPassword=* ext:pcf
" -FrontPage-" ext:pwd inurl:(service | authors | administrators | users)
" ActiveKB v1.5 Copyright ©"
" created by creato.biz "
" 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./
" Stanford CoreNLP " "Visualisation provided using the brat visualisation"
"# -FrontPage-" ext:pwd
"# -FrontPage-" ext:pwd inurl:(service | authors | administrators | users) "# -FrontPage-" inurl:service.pwd
"# AdwCleaner" ext:txt
"# Dumping data for table (username|user|users|password)"
"# Dumping data for table"
"# Kickstart" filetype:cfg
"# phpMyAdmin MySQL-Dump" "INSERT INTO" -"the"
"# phpMyAdmin MySQL-Dump" filetype:txt
"# This file was generated by libcurl! Edit at your own risk." ext:txt
"#mysql dump" filetype:sql
"#mysql dump" filetype:sql 21232f297a57a5a743894a0e4a801fc3
"%@" ext:ascx
"& Spider Friendly by Crack"
"'dsn: mysql:host=localhost;dbname=" ext:yml | ext:txt "password:"
"'username' =>" + "'password' =>" ext:log
"(C) by CyberTeddy"
"(C) This site is NITROpowered!"
"* Authentication Unique Keys and Salts" ext:txt | ext:log
"-- Account dump" ext:sql -git
"-- Dump completed" ext:sql | ext:txt | ext:log
"-- Dumped from database version" + "-- Dumped by pg_dump version" ext:txt | ext:sql | ext:env | ext:log
"-- Dumping data for table * " ext:sql | ext:xls intext:db | intext:database | intext:password | username
"-- Dumping data for table `admin`" | "-- INSERT INTO `admin`" "VALUES" ext:sql | ext:txt | ext:log | ext:env
"-- Dumping data for table `users` | `people` | `member`" ext:sql | ext:txt | ext:log | ext:env
"-- Dumping data for table" ext:sql
"-- MySQL Administrator dump" ext:sql
"-- MySQL dump" ext:sql -git
"-- PostgreSQL database dump complete" ext:sql | ext:txt | ext:log | ext:env
"-- Server version" "-- MySQL Administrator dump 1.4" ext:sql
"--- WebView Livescope Http Server Error ---" -git
"-----BEGIN CERTIFICATE-----" ext:pem -git
"-----BEGIN EC PRIVATE KEY-----" | " -----BEGIN EC PARAMETERS-----" ext:pem | ext:key | ext:txt
"-----BEGIN OpenVPN Static key V1-----" ext:key
"-----BEGIN PGP PRIVATE KEY BLOCK-----" ext:pem | ext:key | ext:txt -git
"-----BEGIN RSA PRIVATE KEY-----" ext:key
"-----BEGIN RSA PRIVATE KEY-----" inurl:id_rsa
"-----BEGIN X509 CERTIFICATE-----" ext:pem -git
".:/opt/remi/php56/root/usr/share/pear" | ":/opt/remi/php56/root/usr/share/php"
".git" intitle:"Index of"
"/** MySQL database password */" ext:txt | ext:cfg | ext:env | ext:ini
"/1000/system_information.asp"
"/etc/shadow root:$" ext:cfg OR ext:log OR ext:txt OR ext:sql -git
"/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
"About Mac OS Personal Web Sharing"
"About Winamp Web Interface" intitle:"Winamp Web Interface"
"Absolute Poll Manager XE"
"access denied for user" "using password"
"Access Denied" "Powered by Incapsula" ext:php
"Account" "Password" "All rights reserved" intitle:"HG8245"
"accounts.xlsx" ext:xlsx
"AcmlmBoard v1.A2"
"Active Webcam Page" inurl:8080
"ActualAnalyzer Lite (free) 2.78"+"Copyright © 2006 ActualScripts"
"adding new user" inurl:addnewuser -"there are no domains"
"admin account info" filetype:log
"admin password irreversible-cipher" ext:txt OR ext:log OR ext:cfg
"admin_password" ext:txt | ext:log | ext:cfg
"ADS-B Receiver Live Dump1090 Map "
"advanced_search_results.php?gender="
"Affiliate Network Pro"
"air confirmation" "passenger(s)"
"All Rights Reserved. Powered by DieselScripts.com"
"All site content" ext:aspx
"allinurl :""/modules/tutorials/"""
"allinurl :""modules/eblog"""
"allinurl :""modules/gallery"""
"allinurl :""modules/recipe"""
"allinurl :""wp-content/plugins/st_newsletter"""
"allinurl: ""/modules/myTopics/"""
"allinurl: ""com_actualite"""
"allinurl: ""com_alberghi"" detail"
"allinurl: ""com_estateagent"""
"allinurl: ""com_galeria"""
"allinurl: ""com_glossary"""
"allinurl: ""com_joovideo"" detail"
"allinurl: ""com_rapidrecipe""user_id"
"allinurl: ""index php p shop""categ"
"allinurl: ""index.php?area""galid"
"allinurl: ""index.php?mod=galerie""action=gal"
"allinurl: ""index.php?option=com_doc"""
"allinurl: ""index.php?p=gallerypic img_id"""
"allinurl: ""index.php?p=poll""showresult"
"allinurl: ""index.php?showlink""links"
"allinurl: ""modules MyAnnonces index php pa view"""
"allinurl: ""modules/dictionary"""
"allinurl: ""modules/dictionary/detail.php?id"" "
"allinurl: ""modules/eEmpregos/index.php"""
"allinurl: ""modules/glossaires"""
"allinurl: ""modules/wfdownloads/viewcat.php?cid"""
"allinurl: ""name Sections op viewarticle artid"""
"allinurl: ""pollBooth.php?op=results""pollID"
"allinurl: ""showCat.php?cat_id"""
"allinurl: ""wordspew-rss.php"""
"allinurl: aid ""com_xfaq"""
"allinurl: cid""modules/classifieds/index.php?pa=Adsview"""
"allinurl: com_gallery ""func"""
"allinurl: com_mcquiz ""tid"""
"allinurl: com_paxxgallery ""userid"" "
"allinurl: com_pcchess ""user_id"""
"allinurl: com_quiz""tid"""
"allinurl: galid ""index.php?p=gallerypic"""
"allinurl: id ""com_jooget"""
"allinurl: modules-php-op-modload ""req view_cat"""
"allinurl: page_id album ""photo"""
"allinurl:""/lildbi/"" "
"allinurl:""/questcms/"""
"allinurl:""/ubbthreads/"""
"allinurl:""article.download.php"""
"allinurl:""channel_detail.php?chid="""
"allinurl:""com_accombo"""
"allinurl:""com_ahsshop""do=default"
"allinurl:""com_candle"""
"allinurl:""com_cinema"""
"allinurl:""com_extcalendar"""
"allinurl:""com_garyscookbook"""
"allinurl:""com_n-gallery"""
"allinurl:""com_na_content"""
"allinurl:""com_neogallery"""
"allinurl:""com_restaurante"""
"allinurl:""com_simpleshop"""
"allinurl:""detResolucion.php?tipodoc_id="""
"allinurl:""index.php?mod=archives"""
"allinurl:""index.php?site="" ""W-Agora"""
"allinurl:""jokes.php?catagorie="""
"allinurl:""lyrics_menu/lyrics_song.php?l_id="""
"allinurl:""macgurublog.php?uid="""
"allinurl:""members.asp?action"""
"allinurl:""modules/photo/viewcat.php?id"""
"allinurl:""shop.htm?shopMGID="""
"allinurl:""verliadmin"""
"allinurl:""xGb.php"""
"allow_call_time_pass_reference" "PATH_INFO"
"AlumniServer project"
"An illegal character has been found in the statement" -"previous message"
"anaconda-ks.cfg" | "ks.cfg" ext:cfg -git -gitlab
"and Powered By :Sansak"
"ansible.log" | "playbook.yaml" | ".ansible.cfg" | "playbook.yml" | host.ini intitle:"index of"
"AnWeb/1.42h" intitle:index.of
"Application Blocked!" "Google bot"
"apricot - admin" 00h
"ASP.NET_SessionId" "data source="
"ATutor 1.6.4"
"Aurora CMS"
"authentication failure; logname=" ext:log
"AutoCreate=TRUE password=*"
"automatic teller" "operator manual" "password" filetype:pdf
"Barbecued by sNews"
"Basado en Spirate"
"Based on DoceboLMS 2.0"
"battlefield" "email" site:pastebin.com
"BEGIN RSA PRIVATE KEY" filetype:key -github
"Below is a rendering of the page up to the first error." ext:xml
"Betrieben mit Serendipity 1.0.3"
"big-ip logout page" ext:php3
"BioScripts"
"BlackBoard 1.5.1-f | © 2003-4 by Yves Goergen"
"Blocking Reason:" ext:log -git
"BlogMe PHP created by Gamma Scripts"
"boarding pass" site:http://tripadvisor.com
"BosDates Calendar System " "powered by BosDates v3.2 by BosDev"
"bp blog admin" intitle:login | intitle:admin -site:johnny.ihackstuff.com
"Browse with Interactive Map"
"Bu Site Ticimax E-Ticaret yazılımı ile hazırlanmıştır."
"Build ref: 26"
"by eXtreme Crew"
"By Geeklog" "Created this page in" +seconds +powered
"By Geeklog" "Created this page in" +seconds +powered inurl:public_html
"by in-link" or "Powered by In-Link 2."
"by Pivot - 1.40.5" +Dreadwind -pivotlog.net
"by Reimar Hoven. All Rights Reserved. Disclaimer" | inurl:"log/logdb.dta"
"cacheserverreport for" "This analysis was produced by calamaris"
"CakeRoutingException" -site:github.com -site:stackoverflow.com -site:cakephp.org"
"Calendar programming by AppIdeas.com" filetype:php
"CaLogic Calendars V1.2.2"
"Camera Live Image" inurl:"guestimage.html"
"Can't connect to local" intitle:warning
"Cant connect to local" intitle:warning
"CCCLogin.aspx"
"CERN httpd 3.0B (VAX VMS)"
"Certificate Practice Statement" inurl:(PDF | DOC)
"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"
"change the Administrator Password." intitle:"HP LaserJet" -pdf
"CHARACTER_SETS" "COLLATION_CHARACTER_SET_APPLICABILITY"
"Chatologica MetaSearch" "stack tracking"
"Chatologica MetaSearch" "stack tracking:"
"Cisco PIX Security Appliance Software Version" + "Serial Number" + "show ver" -inurl
"Cisco Systems, Inc. All Rights Reserved." -cisco.com filetype:jsp
"Citrix Receiver" inurl:index.html "Gateway"
"citsmart.local"
"ClanSys v.1.1"
"cms SunLight 5.2"
"CMS Webmanager-pro"
"Cms.tut.su, 2009 g."
"CNStats 2.9"
"com.sap.itsam.problems.java.systeminfo"
"com_joom12pic"
"com_joomlaflashfun"
"com_lmo"
"Config" intitle:"Index of" intext:vpn
"config.php.bak" intitle:"index of"
"configure account user encrypted" ext:cfg
"Consola de Joomla! Debug" inurl:index.php
"Content managed by the Etomite Content Management System"
"contrasena" filetype:sql -github.com
"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 easy-content forums"
"Copyright 2004 © Digital Scribe v.1.4"
"Copyright 2005 Affiliate Directory"
"copyright 2006 Broadband Mechanics"
"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 © 2002 Agustin Dondo Scripts"
"Copyright(C) CONTEC CO.LTD"
"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*
"cpanel username" "cpanel password" ext:txt
"create account" admin ext:cfg
"CREATE ROLE" + "ENCRYPTED PASSWORD" ext:sql | ext:txt | ext:ini -git -gitlab
"create the Super User" "now by clicking here"
"create the Super User" "now by clicking here" -----PHP-Nuke - create super user right now !-----
"Create your own free webring and bring traffic to your website. Join now, its free!"
"Created by weenCompany"
"Creative Guestbook"
"Cyphor (Release:" -www.cynox.ch
"CzarNews v1.12 " | "CzarNews v1.13" | "CzarNews v1.14 "
"d-i passwd/root-password-crypted password" ext:cfg
"database_password" filetype:yml "config/parameters.yml
"database_password" filetype:yml "config/parameters.yml"
"Datamanager" "Devices" "Reports" "Alarm" "Log" "Service" "Gp Run-On"
"db.username" + "db.password" ext:properties
"DBPassword" ext:cfg OR ext:log OR ext:txt OR ext:sql -git
"Declassified and Approved for Release by" filetype: pdf
"DeeEmm CMS"
"DefaultPassword" ext:reg "[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionWinlogon]"
"define('DB_USER'," + "define('DB_PASSWORD'," ext:txt
"define('SECURE_AUTH_KEY'" + "define('LOGGED_IN_KEY'" + "define('NONCE_KEY'" ext:txt | ext:cfg | ext:env | ext:ini
"define(DB_USER," + "define(DB_PASSWORD," ext:txt
"define(SECURE_AUTH_KEY" + "define(LOGGED_IN_KEY" + "define(NONCE_KEY" ext:txt | ext:cfg | ext:env | ext:ini
"delete entries" inurl:admin/delete.asp
"department" | "agency" | "government" "intitle:"login form" -youtube -template
"description" & "size" intitle:"index of" "owncloud"
"Desenvolvido por WeBProdZ"
"Desenvolvido por: Fio Mental"
"Designed & Developed by N.E.T E-Commerce Group. All Rights Reserved."
"Designed & Developed by net-finity"
"Designed & Developed by Zeeways.com"
"Designed and Developed by Debliteck Ltd"
"Designed and powered by AWS Sports"
"Designed by Spaceacre"
"Desktop" "Simple" "Responsive" intitle:"Controllr"
"Desktop" parent intitle:index.of
"detected an internal error [IBM][CLI Driver][DB2/6000]"
"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"
"dirLIST - PHP Directory Lister" "Banned files: php | php3 | php4 | php5 | htaccess | htpasswd | asp | aspx" "index of" ext:php
"Diseño Web Hernest Consulting S.L."
"dispatch=debugger."
"display printer status" intitle:"Home"
"Do not distribute" (ext:pdf | ext:doc | ext:docx | ext:rtf)
"download this free gallery at matteobinda.com"
"Driven by DokuWiki"
"driven by: ASP Message Board"
"dsn: mysql:host=localhost;dbname=" ext:yml | ext:txt "password:"
"Duclassified" -site:duware.com "DUware All Rights reserved"
"duclassmate" -site:duware.com
"Dudirectory" -site:duware.com
"dudownload" -site:duware.com
"Dumping data for table"
"DUpaypal" -site:duware.com
"e107.org 2002/2003" inurl:forum_post.php?nt
"Easy-Clanpage v2.2"
"eCommerce Engine © 2006 xt:Commerce Shopsoftware"
"El Moujahidin Bypass Shell" ext:php
"Elite Forum Version *.*"
"Email delivery powered by Google" ext:pdf OR ext:txt
"EMAIL_HOST_PASSWORD" ext:yml | ext:env | ext:txt | ext:log
"Emanuele Guadagnoli" "CcMail"
"Emefa Guestbook V 3.0"
"Emergisoft web applications are a part of our"
"enable password" ext:cfg -git -cisco.com
"enable secret 5" ext:txt | ext:cfg
"enable secret" ext:cfg -git -cisco.com
"END_FILE" inurl:"/password.log"
"Enter ip" inurl:"php-ping.php"
"Error Diagnostic Information" intitle:"Error Occurred While"
"error found handling the request" cocoon filetype:xml
"error_log" inurl:/wp-content
"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
"Factux le facturier libre V 1.1.5"
"Fatal error: Call to undefined function" -reply -the -next
"Fatal NI connect error" ", connecting to:" ext:log
"FC Bigfeet" -inurl:mail
"Fenix Final Version v2.0" filetype:php
"fetchmailrc" intitle:"index of" -linux
"File Manager - Current disk free"
"File Manager Version 1.0" "Coded By"
"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
"fluig" "login"
"FM Monitoring Receiver" intitle:"login" "welcome!"
"Forum Active Bulletin Board version 1.1 béta 2"
"FrontAccounting"
"ftp://" "www.eastgame.net"
"Futon on Apache" inurl:_utils
"Galerie 3.2 © 2004 by progressive"
"Gallery powered by fMoblog"
"ganglia mobile.php"
"generated by Exhibit Engine 1.5 RC 4"
"generated by Munin" inurl:index -intext:index localhost
"Generated by phpSystem"
"google confidential" filetype:pdf
"Greenstone receptionist" inurl:"/etc/main.cfg"
"Généré par KDPics v1.18"
"havij report" "Target" ext:html
"Help * Contact * Imprint * Sitemap" | "powered by papoo" | "powered by cms papoo"
"Help desk software by United Web Coders rev. 3.0.640"
"hlstats.php?mode=dailyawardinfo&award=" hlstatsx
"Host Vulnerability Summary Report"
"HostingAccelerator" intitle:"login" +"Username" -"news" -demo
"HP LaserJet" inurl:"SSI/index.htm"
"html allowed" guestbook
"HTTP" inurl:"access.log" ext:log
"http://*:*@www" bob:bob
"http://*:*@www" domainname
"httpd+ssl/kttd" * server at intitle:index.of
"HTTP_FROM=googlebot" googlebot.com "Server_Software="
"I have been invoked by servletToJSP"
"IBM Security AppScan Report" ext:pdf
"IceWarp Web Mail 5.3.0" "Powered by IceWarp"
"iCONECT 4.1 :: Login"
"id=" & intext:"Warning: array_merge()
"id=" & intext:"Warning: filesize()
"id=" & intext:"Warning: getimagesize()
"id=" & intext:"Warning: ilesize()
"id=" & intext:"Warning: mysql_fetch_array()
"id=" & intext:"Warning: mysql_num_rows()
"id=" & intext:"Warning: mysql_query()
"id=" & intext:"Warning: preg_match()
"id=" & intext:"Warning: session_start()
"Ideal BB Version: 0.1" -idealbb.com
"IMail Server Web Messaging" intitle:login
"Incorrect syntax near"
"Incorrect syntax near" -the
"inc_webblogmanager.asp"
"index of /" ( upload.cfm | upload.asp | upload.php | upload.cgi | upload.jsp | upload.pl )
"Index of /" +.htaccess
"Index of /" +passwd
"index of /" +passwd
"Index of /" +password.txt
"index of /" intext:wp-config "zip"
"Index of /admin"
"Index of /backup"
"Index of /mail"
"Index Of /network" "last modified"
"Index of /password"
"index of /private" -site:net -site:com -site:org
"index of /private" site:mil
"index of /ups.com/WebTracking"
"Index of /wp-content/uploads/backupbuddy_backups" zip
"index of cgi-bin"
"index of sqlite"
"index of" ".env"
"Index of" "/access"
"index of" "/config/sql"
"index of" "/home/000~ROOT~000/etc"
"Index of" "/monitoring"
"Index of" "/yahoo_site_admin/credentials"
"Index of" "accounts.sql"
"index of" "adminer.php"
"index of" "callback.php"
"Index of" "customer.php"
"Index of" "database.sql"
"index of" "database.sql.zip"
"index of" "database_log"
"index of" "email.ini"
"index of" "fileadmin"
"Index of" "logins.json" "key3.db"
"index of" "mysql.sh"
"index of" "password.ini"
"index of" "performance_schema"
"index of" "plugins/wp-rocket"
"Index of" "sass-cache"
"index of" "siri"
"index of" "sshd_config"
"index of" "svg"
"index of" "user.MYD"
"index of" "user.sqlite"
"index of" "users.frm"
"index of" "users.ibd"
"index of" "wp-config.zip"
"Index of" / "chat/logs"
"index of" / lck
"index of" / picasa.ini
"index of" /ftp/logs
"index of" /private/logs
"index of" /wp-content/uploads/shell.php
"index of" :excel documents
"index of" bigdump.php
"index of" intext:fckeditor inurl:fckeditor
"index of" intext:wpbdp-csv-exports
"Index of" inurl:"/$Recycle.Bin/"
"Index of" inurl:config inurl:production
"index of" inurl:database ext:sql | xls | xml | json | csv
"Index of" inurl:htdocs inurl:xampp
"Index of" inurl:phpmyadmin
"index of" inurl:recycler
"index of" inurl:root intitle:symlink
"index of" inurl:sym
"Index of" inurl:webalizer
"Index of" rar r01 nfo Modified 2004
"index of/" "ws_ftp.ini" "parent directory"
"index.php?id_menu=" CMScontrol
"index.php?option=com_chronoconnectivity" / "com_chronoconnectivity
"index.php?option=com_chronocontact" / "com_chronocontact"
"index.php?option=com_expose"
"index.php?option=com_mdigg"
"index.php?option=com_news_portal" or "Powered by iJoomla News Portal"
"index.php?option=com_qcontacts"
"index.php?option=com_resman"
"index.php?option=com_rwcards"
"index.php?option=com_sef" / "com_sef"
"index.php?option=com_seyret" / "com_seyret"
"index.php?sbjoke_id="
"index.php?section=post_upload"
"information_schema" filetype:sql
"InnoDB:" ext:log
"INSERT INTO phpbb_users" ext:sql
"insert into users" "VALUES" ext:sql | ext:txt | ext:log | ext:env
"inspanel" intitle:"login" -"cannot" "Login ID" -site:inspediumsoft.com
"Installed Objects Scanner" inurl:default.asp
"Instant Free File Uploader"
"Internal Server Error" "server at"
"Internet Photoshow - Slideshow"
"intext:Warning: passthru()" "inurl:view=help"
"intitle:3300 Integrated Communications Platform" inurl:main.htm
"intitle:Cisco Systems, Inc. VPN 3000 Concentrator"
"intitle:index of"
"intitle:Index.Of /" stats merchant cgi-* etc
"intitle:t3al shmeh"
"inurl""com_gurujibook"" "
"inurl: ""com_alphacontent"""
"inurl: ""tops_top.php? id_cat ="""
"inurl: user_info.php?user_id= "" Or "" inurl: index.php?catid= """
"inurl:""/alternate_profiles/"""
"inurl:""/becommunity/community/index.php?pageurl="""
"inurl:""/cgi-bin/loadpage.cgi?user_id="""
"inurl:""/cgi-bin/ourspace/"""
"inurl:""/CMS/page.php?p="""
"inurl:""/files/redirect.asp"""
"inurl:""/gadmin/index.php"""
"inurl:""/geeklog/"""
"inurl:""/go/_files/?file="""
"inurl:""/index.php?m="" ""PHPRecipeBook 2.39"""
"inurl:""/index.php?option=com_rsfiles"""
"inurl:""/k12.tr/?part="""
"inurl:""/login.asp?folder="" ""Powered by: i-Gallery 3.3"""
"inurl:""/modules.php?name="" ""Maximus CMS"""
"inurl:""/modules/friendfinder/"""
"inurl:""/modules/glossaire/"""
"inurl:""/modules/jobs/"""
"inurl:""/modules/library/"""
"inurl:""/modules/myads/"""
"inurl:""/modules/myconference/"""
"inurl:""/modules/repository/"""
"inurl:""/modules/wfsection/"""
"inurl:""/modules/zmagazine/"""
"inurl:""/plugins/ImageManager/manager.php"" "
"inurl:""/plugins/ImageManager/manager.php"""
"inurl:""/rbfminc/"""
"inurl:""/site/articles.asp?idcategory="""
"inurl:""/squirrelcart/"" -squirrelcart.com"
"inurl:""/tagit2b/"""
"inurl:""/wp-content/plugins/wp-shopping-cart/"""
"inurl:""?act=phpinfo"""
"inurl:""?delete"" +intext:""PHP version"" +intext:""Safe_mode"""
"inurl:""?option=com_bsadv"""
"inurl:""?page=duyurular_detay&id="""
"inurl:""?pageNum_RSnews""&view"
"inurl:""?pilih=forum"""
"inurl:""ab_fct.php?fct="""
"inurl:""add_soft.php"""
"inurl:""article.download.php"""
"inurl:""articles.php?topic="""
"inurl:""browse.php?folder="" Powered by GeneShop 5"
"inurl:""browsecats.php?cid="" "
"inurl:""cal_day.php?op=day&catview="""
"inurl:""cameralife/index.php"""
"inurl:""catalog/product/detail.php?cat="" "
"inurl:""char.php?id="" OR intitle:Minimanager for trinity server "
"inurl:""CIHUY"""
"inurl:""classifide_ad.php"""
"inurl:""classifieds.php?cat="" "
"inurl:""classifieds.php?op=detail_adverts"""
"inurl:""click.php?hostid="""
"inurl:""clsUploadtest.asp"""
"inurl:""comment.php?serendipity"""
"inurl:""com_a6mambocredits"""
"inurl:""com_acprojects"" "
"inurl:""com_acstartseite"" "
"inurl:""com_acteammember"" "
"inurl:""com_ajaxchat"""
"inurl:""com_artlinks"""
"inurl:""com_avosbillets"""
"inurl:""com_beamospetition"" "
"inurl:""com_bfsurvey"" "
"inurl:""com_biblestudy"" "
"inurl:""com_biographies"" "
"inurl:""com_book"""
"inurl:""com_booklibrary"""
"inurl:""com_cartweberp"" "
"inurl:""com_casino_blackjack"""
"inurl:""com_category"""
"inurl:""com_ccnewsletter"" "
"inurl:""com_ckforms"" "
"inurl:""com_clan"" "
"inurl:""com_dailymeals"" "
"inurl:""com_dashboard"" "
"inurl:""com_dateconverter"" "
"inurl:""com_dbquery"" OR ""index.php?option=com_dbquery"""
"inurl:""com_digifolio"""
"inurl:""com_dms"" "
"inurl:""com_equipment"""
"inurl:""com_event"""
"inurl:""com_eventcal"""
"inurl:""com_ezine"""
"inurl:""com_facebook"""
"inurl:""com_fastball"""
"inurl:""com_gameserver"""
"inurl:""com_ganalytics"" "
"inurl:""com_gcalendar"""
"inurl:""com_hestar"""
"inurl:""com_icrmbasic"""
"inurl:""com_ignitegallery"""
"inurl:""com_ijoomla_archive"""
"inurl:""com_janews"" "
"inurl:""com_jashowcase "" "
"inurl:""com_jbudgetsmagic"" "
"inurl:""com_jcalpro"""
"inurl:""com_jcollection "" "
"inurl:""com_jembed"""
"inurl:""com_jgen"""
"inurl:""com_jjgallery"
"inurl:""com_joomlaradiov5"""
"inurl:""com_jphoto"" "
"inurl:""com_jpodium"""
"inurl:""com_jsjobs"""
"inurl:""com_jvideodirect "" "
"inurl:""com_kochsuite"""
"inurl:""com_koesubmit"""
"inurl:""com_linkdirectory"""
"inurl:""com_linkr"" "
"inurl:""com_lyftenbloggie"" / ""Powered by LyftenBloggie"" "
"inurl:""com_mambowiki"""
"inurl:""com_mojo"""
"inurl:""com_mscomment"""
"inurl:""com_omphotogallery"""
"inurl:""com_otzivi"" "
"inurl:""com_ownbiblio"" catalogue"
"inurl:""com_performs"""
"inurl:""com_phocagallery"""
"inurl:""com_photoblog"""
"inurl:""com_pollxt"""
"inurl:""com_portfol"" "
"inurl:""com_portfol"""
"inurl:""com_prayercenter"""
"inurl:""com_productbook"" "
"inurl:""com_projectfork"""
"inurl:""com_quickfaq"""
"inurl:""com_rokdownloads"""
"inurl:""com_rwcards"""
"inurl:""com_sectionex"" "
"inurl:""com_simpledownload"""
"inurl:""com_simplefaq"""
"inurl:""com_soundset"" "
"inurl:""com_soundset"""
"inurl:""com_sqlreport"""
"inurl:""com_surveymanager"""
"inurl:""com_tupinambis"""
"inurl:""com_virtuemart"""
"inurl:""com_wmtpic"""
"inurl:""com_youtube"""
"inurl:""cont_form.php?cf_id=""
"inurl:""directory.php?ax=list"" gaming"
"inurl:""directory.php?cat="" pubs"
"inurl:""dispatch.php?atknodetype"" | inurl:class.at"
"inurl:""e107_plugins/my_gallery"""
"inurl:""extras/update.php"" intext:mysql.php -display"
"inurl:""fbconnect_action=myhome"""
"inurl:""fclick.php?fid"""
"inurl:""filebase.php"" ""Powered by phpBB"""
"inurl:""forumdisplay.php"" +""Powered by: vBulletin Version 3.0.0..4"""
"inurl:""freshlinks_panel/index.php?linkid"""
"inurl:""guestbook.admin.php?action=settings"" "
"inurl:""ibase site:de"""
"inurl:""IDFM="" ""form.php"""
"inurl:""index.php?com_remository"" "
"inurl:""index.php?conteudo="" "
"inurl:""index.php?css=mid=art="""
"inurl:""index.php?edicion_id="""
"inurl:""index.php?id_menu="" "
"inurl:""index.php?ind=blog"""
"inurl:""index.php?module=pnFlashGames"""
"inurl:""index.php?m_id="" "
"inurl:""index.php?name=PNphpBB2"""
"inurl:""index.php?option=com_annuaire"""
"inurl:""index.php?option=com_bookjoomlas"" "
"inurl:""index.php?option=com_catalogue"""
"inurl:""index.php?option=com_competitions"""
"inurl:""index.php?option=com_djiceshoutbox"""
"inurl:""index.php?option=com_huruhelpdesk"" "
"inurl:""index.php?option=com_iproperty"" "
"inurl:""index.php?option=com_jeajaxeventcalendar"" "
"inurl:""index.php?option=com_jequoteform"" "
"inurl:""index.php?option=com_jobline"""
"inurl:""index.php?option=com_jp_jobs"" "
"inurl:""index.php?option=com_oziogallery"" "
"inurl:""index.php?option=com_ponygallery"""
"inurl:""index.php?option=com_portfolio"""
"inurl:""index.php?option=com_prime"" "
"inurl:""index.php?option=com_simpleboard"""
"inurl:""index.php?option=com_simplefaq"""
"inurl:""index.php?option=com_spa"" "
"inurl:""index.php?option=com_storedirectory"""
"inurl:""index.php?pageid="" Property Listings"
"inurl:""index.php?serverid="" "
"inurl:""index2.php?option=rss"" OR ""powered By Limbo CMS"""
"inurl:""inurl:file.php?recordID="""
"inurl:""ir/addlink.php?id="" OR inurl:""addlink.php?id="""
"inurl:""izle.asp?oyun="""
"inurl:""jscripts/tiny_mce/plugins/tinybrowser/"""
"inurl:""kgb19"""
"inurl:""kroax.php?category"""
"inurl:""links_showcat.php?"" "
"inurl:""list.php?c="""
"inurl:""list.php?lcat_id="""
"inurl:""lista_articulos.php?id_categoria="" "
"inurl:""lists/?p=subscribe"" | inurl:""lists/index.php?p=subscribe"""
"inurl:""main_forum.php?cat="""
"inurl:""member.php?page=comments"""
"inurl:""messageboard/Forum.asp?"""
"inurl:""mod=notizie"""
"inurl:""module=helpcenter"" "
"inurl:""modules.php?name=My_eGallery"""
"inurl:""modules/articles/index.php?cat_id="""
"inurl:""myLDlinker.php"" "
"inurl:""nabopoll/"""
"inurl:""noticias.php?notiId="""
"inurl:""option=com_camelcitydb2"" "
"inurl:""option=com_elite_experts"" "
"inurl:""option=com_org"" "
"inurl:""option=com_simpleshop"" & inurl:""viewprod"""
"inurl:""option=com_tophotelmodule"""
"inurl:""photo_album.php?alb_id="""
"inurl:""php/showContent.php?linkid="""
"inurl:""phpRaid"" ""phpRaid"" ""roster.php?Sort=Race"""
"inurl:""phpsecurepages"""
"inurl:""phpwcms/index.php?id="""
"inurl:""phshoutbox.php"""
"inurl:""picture.php?cat="" ""Powered by PhpWebGallery 1.3.4"""
"inurl:""powered by eggblog"""
"inurl:""printable_pedigree.php"""
"inurl:""printer.asp?forum="""
"inurl:""product_desc.php?id="" Powered by Zeeways.com"
"inurl:""produtos.asp?produto="""
"inurl:""read.asp?fID="""
"inurl:""sbw2Behoerden.php"""
"inurl:""search_form.php?sb_showresult="""
"inurl:""search_results.php?browse=1"" "
"inurl:""section.php?name=singers"""
"inurl:""select_file2.php"" "
"inurl:""simpleblog3"""
"inurl:""sinagb.php"""
"inurl:""sitegenius/topic.php"""
"inurl:""slxweb.dll"""
"inurl:""sticker/sticker.php?id="""
"inurl:""tinybrowser.php?"" "
"inurl:""toplist.php"" ""powered by phpbb"""
"inurl:""tr.php?id="" Short Url & Url Tracker"
"inurl:""tr1.php?id="" Forced Matrix"
"inurl:""tr1.php?id="""
"inurl:""track.php?id="""
"inurl:""tradeCategory.php?id= """
"inurl:""userjournals.php?blog."""
"inurl:""vbplaza.php?do="""
"inurl:""vcalendar_asp"""
"inurl:""view.php?ItemID="" rating ""rate this review"""
"inurl:""view_group.php?group_id="" "
"inurl:""webboard/view.php?topic="""
"inurl:""weblink_cat_list.php?bcat_id="""
"inurl:""wfdownloads/viewcat.php?list="""
"inurl:""whoiscart/admin/hostinginterfaces/"""
"inurl:""wp-download.php?dl_id="""
"inurl:""xampp/biorhythm.php"""
"inurl:""zcat.php?id="" "
"inurl:"Umbraco/#/login" site:*edu"
"inurl:/admin/" "ImageVue"
"inurl:/data/nanoadmin.php"
"inurl:/site/articles.asp?idcategory="
"inurl:admin.asp"
"inurl:admin.php"
"inurl:admin/login.asp"
"inurl:admin/login.php"
"inurl:adminhome.asp"
"inurl:adminhome.php"
"inurl:administratorlogin.asp"
"inurl:administratorlogin.php"
"inurl:administrator_login.asp
"inurl:administrator_login.php
"inurl:adminlogin.asp"
"inurl:adminlogin.php"
"inurl:admin_login.asp"
"inurl:admin_login.php"
"inurl:cat1.php?catID= ""Spaceacre"" "
"inurl:chitchat.php ""choose graphic"""
"inurl:com_ice ""catid"""
"inurl:com_products ""intCategoryId"""
"inurl:cultbooking.php"
"inurl:K-Search, Powered By K-Search"
"inurl:login/admin.asp"
"inurl:login/admin.php"
"inurl:login/administrator.asp"
"inurl:login/administrator.php"
"inurl:php?id=" site:.com
"inurl:php?id=" site:.gov.bd
"Invision Power Board Database Error"
"IPECS" inurl:a_index.html
"IPSentry - Device Statistics Information"
"is a product of Lussumo"
"is proudly powered by WordPress"
"iSpy Keylogger" "Passwords Log" ext:txt
"Jax Calendar v1.34 by Jack (tR), www.jtr.de/scripting/php"
"Jevonweb Guestbook"
"Jinzora Media Jukebox"
"Joomla! Administration Login" inurl:"/index.php"
"jos_users" intitle:"Index of"
"JRun Web Server" intitle:index.of
"key" OR key.jar intitle:"index of" webstart
"keyed alike" site:gov filetype:pdf
"keystorePass=" ext:xml | ext:txt -git -gitlab
"kims Q - Administrator Login Mode"
"KVP_ENCDATA:Version=1.0" ext:log
"Ladder Scripts by http://www.mygamingladder.com"
"Ladder Scripts by"
"LANCOM DSL/*-* Office *" "Entry Page"
"Language" "SIM NUM" "DEV NUM" intitle:"mdvr"
"Last modified" intitle:"index of" "dropbox"
"LGD_CARDNUM" ext:log -site:camper.com
"Liberum Help Desk, Copyright (C) 2001 Doug Luxem"
"Liberum Help Desk, Copyright (C) 2001 Doug Luxem. Please view the license
"Link Department"
"LinPHA Version 1.3.x" or "The LinPHA developers"
"liveice configuration file" ext:cfg
"liveice configuration file" ext:cfg -site:sourceforge.net
"LMS v3.0 - Xerone IT"
"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 prompt" inurl:GM.cgi
"Login to Usermin" inurl:20000
"login" "adp login" -adplogin.us -adplogin.org -adplogin.net
"login" "secure" "intitle:"online banking" -youtube -template -stackoverflow -stackexchange
"login" intitle:"*board login"
"login" intitle:"*dashboard login"
"login" intitle:"*payroll login"
"login" intitle:"*reports login"
"login" intitle:"*scada login"
"login" intitle:"intext:"Welcome to Member" login"
"login" intitle:"iot login"
"login" intitle:"scada login"
"login" inurl:"account/auth" -github -gitlab -stackoverflow
"login":
"login: *" "password= *" filetype:xls
"Looking Glass" (inurl:"lg/" | inurl:lookingglass)
"Lucee" "Error (expression)" -lucee.org
"lv_poweredBy"
"m.zippyshare.com/"
"machform" inurl:"view.php"
"MacHTTP" filetype:log inurl:machttp.log
"made visual by sightFACTORY"
"Mail-it Now!" intitle:"Contact form" | inurl:contact.php
"MailChimp API error:" ext:log
"mailer_password:" + "mailer_host:" + "mailer_user:" + "secret:" ext:yml
"mailing list memberships reminder"
"MAIL_PASSWORD" filetype:env
"Maintained with Subscribe Me 2.044.09p"+"Professional" inurl:"s.pl"
"MangoBery 1.0 Alpha"
"Marketplace Version 1.1.1"
"MasterUserPassword" ext:cfg OR ext:log OR ext:txt -git
"maxwebportal" inurl:"default" "snitz forums" +"homepage" -intitle:maxwebportal
"MaXX/3.1" intitle:index.of
"Mecury Version" "Infastructure Group"
"Members Statistics" +"Total Members" +"Guests Online"
"Microsoft (R) Windows * (TM) Version * DrWtsn32 Copyright (C)" ext:log
"Microsoft CRM : Unsupported Browser Version"
"microsoft internet information services" 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
"mirco blogging"
"MobPartner Counter" "upload files"
"More Info about MetaCart Free"
"Most Submitted Forms and s?ri?ts" "this section"
"Most Submitted Forms and Scripts" "this section"
"Multi-Page Comment System"
"mumbo jumbo media" + inurl:"index.php"
"MunzurSoft Wep Portal W3"
"My Documents" "parent" intitle:index.of
"My Photo v1.46.4 © Big Resources"
"My RoboForm Data" "index of"
"mysql dump" filetype:sql
"mySQL error with query"
"mysqli_connect" ext:inc
"MYSQL_ROOT_PASSWORD:" ext:env OR ext:yml -git
"Name" "Password" intitle:"Business LAN"
"Name" "Password" intitle:"LANCOM 1790VA"
"NETGEAR, Inc. All rights reserved" intitle:"Netgear Prosafe Plus Switch"
"Netware * Home" inurl:nav.html
"Network Host Assessment Report" "Internet Scanner"
"Network State: Network Ready. Network Channel:" intitle:ACEManager
"Network Vulnerability Assessment Report"
"News generated by Utopia News Pro" | "Powered By: Utopia News Pro"
"News Managed by Ditto News"
"not for distribution" confidential
"Not for Public Release" + "Confidential" ext:pdf | ext:doc | ext:xlsx
"not for public release" -.edu -.gov -.mil
"Novell, Inc" WEBACCESS Username Password "Version *.*" Copyright -inurl:help -guides|guide
"NTRIP Caster Table Contents" "This is a SNIP NTRIP Caster"
"nukeai beta3"
"Obtenez votre forum Aztek" -site:forum-aztek.com
"OK logout" inurl:vb.htm?logout=1
"OmniHTTPd/2.10" intitle:index.of
"online learning powered by bksb"
"Online Store - Powered by ProductCart"
"OpenSA/1.0.4" intitle:index.of
"OPENSRS Domain Management" inurl:manage.cgi
"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
"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"
"Oracle peoplesoft sign in" inurl:"cmd=login?" -github -stackoverflow -gitlab
"OTL Extras logfile created on:" ext:txt
"OTL logfile" "by OldTimer" ext:txt
"Output produced by SysWatch *"
"Page created in" "seconds by glFusion" +RSS
"pages.php?page_ID=" "K9 Kreativity"
"PaperCut Login"
"parent directory " /appz/ -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
"parent directory " DVDRip -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
"parent directory " Gamez -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
"parent directory " MP3 -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
"parent directory " Name of Singer or album -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
"parent directory "Xvid -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
"parent directory" +proftpdpasswd
"Parent Directory" AND "Index of" AND "config.php_old"
"parent directory" proftpdpasswd intitle:"index of" -google
"ParsBlogger ? 2006. All rights reserved"
"Parse error: parse error, unexpected T_VARIABLE" "on line" filetype:php
"pass" "usuario" filetype:sql
"passport" filetype:xls site:"*.edu.*" | site:"*.gov.*" | site:"*.com.*" | site:"*.org.*" | site:"*.net.*" | site:"*.mil.*"
"password 7" ext:txt | ext:log | ext:cfg
"password" + ext:conf "Modem Type = USB Modem"
"password.xlsx" ext:xlsx
"Password=" inurl:web.config -intext:web.config ext:config
"pcANYWHERE EXPRESS Java Client"
"Personal .NET Portal"
"pForum 1.29a" OR ""Powies PSCRIPT Forum 1.26"
"pForum 1.30"
"PGP SIGNED MESSAGE-----" inurl:"md5sums"
"Phaser 6250" "Printer Neighborhood" "XEROX CORPORATION"
"Phaser 8200" "© Xerox" "refresh" " Email Alerts"
"Phaser® 740 Color Printer" "printer named: "
"Phaser® 840 Color Printer" "Current Status" "printer named:"
"phone * * *" "address *" "e-mail" intitle:"curriculum vitae"
"Phorum Admin" "Database Connection" inurl:forum inurl:admin
"PHP BP Team"
"php class JConfig" AND inurl:configuration AND ext:"bak | old | pdf | php | txt"
"PHP Credits" "Configuration" "PHP Core" ext:php inurl:info
"PHP Easy Downloader"
"PHP eMailer is created by" ext:php
"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 Projectworlds 1.0"
"PHP Version" inurl:/php/phpinfo.php
"PHP WEBQUEST VERSION " or inurl:"/phpwebquest/"
"php-addressbook"
"PHPAuction GPL Enhanced V2.51 by AuctionCode.com"
"PhpCollab . Log In" | "NetOffice . Log In" | (intitle:"index.of." intitle:phpcollab|netoffice inurl:phpcollab|netoffice -gentoo)
"PHPGlossar Version 0.8"
"PhpLinkExchange v1.02"
"phpMyAdmin MySQL-Dump" "INSERT INTO" -"the"
"phpMyAdmin MySQL-Dump" filetype:txt
"phpMyAdmin" "running on" inurl:"main.php"
"PHPNews Version 0.93"
"phpQuestionnaire v3"
"PHPWebAdmin for hMailServer" intitle:PHPWebAdmin -site:hmailserver.com
"PKs Movie Database"
"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 log in"
"Please login with admin pass" -"leak" -sourceforge
"Please re-enter your password It must match exactly"
"please sign in" "sign in" "gophish" +"login"
"Please use Netscape 2.0 or enhance !!" -site:dlink.com -site:ovislink.com.tw
"please visit" intitle:"i-Catcher Console" Copyright "iCode Systems"
"plugins/wp-db-backup/wp-db-backup.php"
"Pop-up" + "Live Image" inurl:index.html
"portailphp v1.3" inurl:"index.php?affiche" inurl:"PortailPHP" -site:safari-msi.com
"PostgreSQL query failed: ERROR: parser: parse error"
"POSTGRES_PASSWORD=" ext:txt | ext:cfg | ext:env | ext:ini | ext:yml | ext:sql -git -gitlab
"Power by Blakord Portal"
"Power by:RichStrong CMS"
"Powerd by www.e-webtech.com"
"Powered *: newtelligence" ("dasBlog 1.6"| "dasBlog 1.5"| "dasBlog 1.4"|"dasBlog 1.3")
"Powered By 0DayDB v2.3"
"Powered by 123LogAnalyzer"
"Powered by 2Moons"
"powered by 4images"
"Powered By 4smart"
"Powered by 68kb"
"Powered by : elkagroup.com"
"Powered By : Yamamah Version 1.00"
"Powered by A-CART"
"Powered By Aardvark Topsites PHP 4.2.2"
"Powered by Absolute File Send"
"Powered by Absolute Podcast"
"Powered by Active PHP Bookmarks v1.3" inurl:.view_group.php?id=
"powered by active php bookmarks" | inurl:bookmarks/view_group.php?id=
"powered by aflog"
"Powered by AJ-Fork v.167"
"Powered by Ajax Portal 3.0"
"powered by Albinator"
"POWERED BY ALITALK"
"powered by AllMyGuests"
"Powered By AlstraSoft AskMe Pro"
"Powered by AlstraSoft SendIt Pro"
"Powered by AMCMS3"
"powered by AMCMS3"