-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdvisories_and_Vulnerabilities.txt
More file actions
2219 lines (2219 loc) · 77.5 KB
/
Copy pathAdvisories_and_Vulnerabilities.txt
File metadata and controls
2219 lines (2219 loc) · 77.5 KB
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:"index.php?page=news.php"
"PHP Projectworlds 1.0"
inurl:quicklinks.aspx
inurl:wp-content/plugins/Ultimate-member
inurl:/wp-content/plugins/wpdiscuz/
inurl:wp-content/plugins/1-flash-gallery
inurl:"/wp-content/plugins/123ContactForm
inurl:"wp-content/plugins/wp-super-edit/superedit/" | inurl:"wp-content/plugins/wp-super-edit/superedit/tinymce_plugins/mse/fckeditor/editor/filemanager/upload/"
"citsmart.local"
inurl:"telerik.web.ui.webresource.axd?type=rau"
inurl:"/lib/editor/atto/plugins/managefiles/" | inurl:"calendar/view.php?view=month"
inurl:/ics?tool=search
inurl:/calendar/calendar_form.php
"Powered By Best Support System"
inurl:"/wp-content/plugins/super-forms/"
inurl:uno.php
inurl:"/console/login/LoginForm.jsp"
"machform" inurl:"view.php"
intext:"Incom CMS 2.0"
inurl:/wp-content/themes/altair/
inurl:/pro_users/login
inurl:/cgi-bin/manlist?section
"Powered by vBulletin(R) Version 5.6.3"
intitle:"Please Login" "Use FTM Push"
inurl:opac_css
intitle:"Powered by Pro Chat Rooms"
inurl:"woocommerce-exporter"
Server: Mida eFramework
intitle:"Sphider Admin Login"
inurl:/wp-content/plugins/wp-file-manager/readme.txt
intext:"Published with Textpattern CMS"
intext:"Powered by Piwigo"
intext:"Powered by Typesetter"
inurl:"images/lists?cid=13"
inurl:device ext:rsp
inurl:"/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php" - Wordpress File Manager
inurl: login.rsp
inurl:''com_gmapfp''
inurl:wp-content/plugins/wpdiscuz
inurl:wp-content/plugins/easy-media-gallery-pro
inurl:"/vam/index_vam_op.php"
intitle:ePMP 1000 intext:Log In -site:*.com -site:com.*
inurl:wp-content/plugins/redirection
inurl:wp-content/plugins/updraftplus
inurl:wp-content/plugins/my-calendar
Index of : wp-content/plugins/wpmudev-updates/
inurl:wp-content/plugins/arforms
inurl:wp-content/plugins/safe-svg
inurl:wp-content/plugins/sfwd-lms
inurl:wp-content/plugins/iwp-client
inurl:wp-content/plugins/email-subscribers
inurl:wp-content/plugins/wpjobboard
inurl:wp-content/plugins/idx-broker-platinum
inurl:wp-content/plugins/async-javascript
inurl:wp-content/plugins/all-in-one-wp-migration
inurl:wp-content/plugins/lifterlms
inurl:wp-content/plugins/wd-google-maps
inurl:wp-content/plugins/sendpress
allintext: wp-content/themes/injob
inurl:wp-content/plugins/knight-lab-timelinejs
inurl:wp-content/plugins/wise-chat
inurl:wp-content/plugins/kingcomposer
inurl:wp-content/plugins/knight-lab-timelinejs
inurl:wp-content/plugins/gravityforms
allintext:wp-content/plugins/angwp
inurl:wp-content/plugins/angwp
inurl:wp-content/themes/corona
inurl:/wp-content/themes/realestate-7
inurl:/wp-content/plugins/angwp
inurl:wp-content/plugins/angwp
inurl:wp-content/plugins/wp-live-chat-support
inurl:wp-content/plugins/form-maker
inurl:wp-content/plugins/newsletter
allintext:wp-content/plugins/acf-to-rest-api
inurl:wp-content/themes/sparky
inurl:wp-content/themes/nexos
inurl:wp-content/themes/careerfy
inurl:wp-content/plugins/security-malware-firewall
inurl:wp-content/themes/careerup
inurl:wp-content/plugins/testimonials-widget
inurl:wp-content/plugins/wp-jobsearch
inurl:wp-content/plugins/payment-form-for-paypal-pro
inurl:wp-content/plugins/wpforms-lite
inurl:wp-content/plugins/form-maker
intitle:"IceWarp WebClient"
inurl:wp-content/plugins/coming-soon
inurl:wp-content/themes/traveler
inurl:wp-content/plugins/gift
intext:piwik "Sign in"
intext:Powered by 2Moons 2009-2013
intext:"Centreon 2005-2019"
inurl:wp-content/themes/citybook
inurl:wp-content/themes/traveler
inurl:wp-content/plugins/wpDiscuz
inurl:/webmail intext:Tecnologia fornecida por IceWarp Server
inurl:wp-content/plugins/wp-pro-quiz
inurl:wp-content/plugins/YITH-WooCommerce-Ajax-Product-Filter
inurl:wp-content/plugins/ar-contactus
intext:Basato su IceWarp Server
inurl:wp-content/plugins/testimonial-rotator
intitle:qdPM 9.1. Copyright (c) 2020 qdpm.net
intext:Basato su Comunicazioni Integrate IceWarp
intext:"TopManage (R) 2002 - 2020"
inurl:wp-content/plugins/kingcomposer
intext:powered by JoomSport - sport WordPress plugin
inurl:wp-content/themes/newspaper
inurl:wp-content/plugins/elementor
"powered by Typo3"
"index of" "plugins/wp-rocket"
inurl:wp-content/plugins/brizy
index of /wp-content/uploads/backupbuddy
inurl:"wp-contentpluginsphoto-gallery"
inurl:wp-content/plugins/sportspress
inurl:wp-content/plugins/adrotate
inurl:wp-content/plugins/mappress-google-maps-for-wordpress
inurl:wp-content/plugins/yop-poll
inurl:wp-content/plugins/ajax-load-more/lang/
inurl:wp-content/plugins/woocommerce
inurl:wp-content/plugins/simple-file-list
inurl:wp-content/plugins/final-tiles-grid-gallery-lite
inurl:/wp-content/plugins/wp-ecommerce-shop-styling/
inurl:wp-content/plugins/wp-jobsearch
inurl:wp-content/plugins/final-tiles-grid-gallery-lite
inurl:wp-content/plugins/bbPress
inurl:wp-content/plugins/gtranslate
inurl:wp-content/plugins/iframe
inurl:wp-content/plugins/woo-order-export-lite
inurl:wp-content/plugins/grand-media
inurl:wp-content/plugins/drag-and-drop-multiple-file-upload-contact-form-7
inurl:"wp-content/plugins/siteorigin-panels"
inurl:wp-content/plugins/thirstyaffiliates
inurl:wp-content/plugins/official-mailerlite-sign-up-forms
inurl:"wp-content/plugins/form-maker"
inurl:"index.php?option=com_ccnewsletter" inurl:sbid
intitle:"Index of" intitle:"UserPro" -uploads
inurl:wp-content/plugins/visualcomposer
inurl:wp-content/plugins/ajax-load-more
inurl:wp-content/plugins/paid-memberships-pro
intext:"Created by John Caruso" intext:"Created with Simple PHP Photo Gallery"
"LMS v3.0 - Xerone IT"
inurl:"index.php?option=com_jssupportticket"
inurl:"index.php?option=com_fabrik"
inurl:human.aspx intext:moveit
inurl:"sites/all/modules/ckeditor" -drupalcode.org
inurl:wp-content/plugins/photo-gallery
inurl:wp-content/plugins/easy-login-woocommerce
inurl:wp-content/plugins/wp-product-review
inurl:wp-content/plugins/team-members
inurl:"index.php?option=com_hdwplayer"
inurl:index.php?option=com_newsfeeds
inurl:wp-content/plugins/easy-testimonials
inurl:wp-content/plugins/google-site-kit
inurl:wp-content/plugins/page-builder
inurl:wp-content/plugins/chopslider
inurl:wp-content/plugins/elementor-pro
inurl:wp-content/plugins/ultimate-elementor
inurl:/wp-content/themes/traveler/
inurl:/wp-content/themes/fruitful/
inurl:"wp-content/plugins/learnpress"
inurl:"wp-content/plugins/ninja-forms"
index of /wp-content/themes/avada
index of /wp-content/themes/onetone/
inurl:/wp-content/themes/listingpro/
intitle:qdPM 9.1. Copyright (c) 2020 qdpm.net
inurl:zdm logon
inurl:www/delivery filetype:php
intext:"Please Login" inurl:"/remote/login"
inurl:"/course/jumpto.php?jump="
intitle:"elFinder 2.1.x"
inurl:/wp-content/themes/CherryFramework
inurl:/webmail/ intext:Powered by IceWarp Server
intitle:"My Book World Edition - MyBookWorld"
inurl:"index.php?option=com_jsjobs"
inurl:"wp-contentpluginsall-in-one-seo-pack"
"Powered by SePortal 2.5"
"Powered by PHPBack"
"Powered by Lanius CMS"
filetype:php inurl:"/general/login.php?PHPSESSID="
inurl:php-bin/webclient.php
inurl:/?op=registration
intext:"Powered by YouPHPTube"
"Powered by sNews CMS"
"Powered by Podcast Generator"
"Powered By Liferay"
"Powered by Zimplit CMS"
inurl:ReportViewer.aspx
intext:"Please enable JavaScript in your browser before using Citrix Receiver." AND intext:www.citrix.com
intitle:"kentico database setup"
inurl:/cmsinstall/install ext:aspx
inurl:"index.cfm?action=" intext:"Exception in onError"
intext:Powered By vBulletin 5.5.4 inurl:forum.
inurl:zoom.us/j and intext:scheduled for
inurl:/secure/ContactAdministrators!default.jspa intext:"Request Details" -intext:"Your Jira administrator has not yet configured this contact form"
intitle:"report" ("qualys" | "acunetix" | "nessus" | "netsparker" | "nmap") filetype:pdf
site:connect.garmin.com inurl:"/modern/profile/"
site:connect.garmin.com inurl:"/modern/activity/"
inurl:dnn.js
intext:"Powered by 74cms v5.0.1"
site:www.openbugbounty.org + intext:"Open Redirect" + intext:"Unpatched"
inurl:wls-wsat intext:"weblogic.wsee.wstx.wsat"
inurl:"/uddiexplorer/searchpublicregistries.jsp"
inurl="/uddiexplorer/SetupUDDIExplorer.jsp"
"Powered by 2Moons"
intitle:"WAGO Ethernet web-based-management"
intitle:"Nport web console"
inurl:"mgl-instagram-gallery/single-gallery.php?media"
inurl:"/testssi.ssi"
filetype:php "Git Deployment Script v0.1"
inurl:"/wp-admin/setup-config.php" intitle:"Setup Configuration File"
filetype:ini "wordfence"
intitle:"Index of /" "mod_ssl 2.2.22 OpenSSL/1.0.1"
inurl:"pubdlcnt.php?file=" ext:php
inurl:"exit.php?url=" -entry_id
allinurl:"/wp-content/plugins/wp-noexternallinks"
intitle:index of AND (intext:mirai.x86 OR intext:mirai.mips OR intext:mirai.mpsl OR intext:mirai.arm OR intext:mirai.arm7 OR intext:mirai.ppc OR intext:mirai.spc OR intext:mirai.m68k OR intext:mirai.sh4)
"Access Denied" "Powered by Incapsula" ext:php
inurl:"/load.cgi" ext:cgi
inurl:"exit.php?site="
inurl:"/admin/index.php?msg=" inurl:"%20"
inurl:".php?cat=" inurl:"'"
"CF-Host-Origin-IP" "CF-Int-Brand-ID" "CF-RAY" "CF-Visitor" "github" -site:github.com -site:cloudfare.com
inurl:sendmessage.php?type=skype
inurl:/index.php?option=com_artforms
inurl:sgms/auth
"index of" bigdump.php
intext:"Hello visitor from" ext:asp
inurl:"/wp-content/uploads/levoslideshow/"
inurl:"/wp-content/plugins/wp-mobile-detector/" ext:php
inurl:"/webmail/" intitle:"Mail - AfterLogic WebMail" -site:afterlogic.org -site:afterlogic.com
ext:php inurl:"api.php?action="
intext:"Forum software by XenForo™"
inurl:".asp?strParents="
inurl:/node/add/event
intext:"Powered By OpenCart" -site:opencart.com -inurl:"Powered By OpenCart" -intitle:"OpenCart" -intitle:"powered by"
" Proudly Served by LiteSpeed Web Server" intitle:index.of./
intitle:"Dashboard [Jenkins]" Credentials
"powered by joomla 3.2" OR "powered by joomla 3.3" OR "powered by joomla 3.4"
inurl:cgi-bin/webproc?getpage=
"ganglia mobile.php"
allinurl:wp-content/plugins/wptf-image-gallery/
inurl:/plugins/aviary-image-editor-add-on-for-gravity-forms/
inurl:/wp-content/plugins/inboundio-marketing/
inurl:EndUserPortal.jsp
inurl:"index.php" intext:"ApPHP Hotel Site" -site:"apphp.com"
inurl:courier/web/ inurl:wmLogin.html filetype:html
inurl:/wp-admin/post.php?post=
inurl:/wp-admin/admin-ajax.php?action=revslider_ajax_action
inurl:fckeditor -intext:"ConfigIsEnabled = False" intext:ConfigIsEnabled
intitle:"pChart 2.x - examples" intext:"2.1.3"
inurl:"tiki-index.php" filetype:php "This is TikiWiki 1.9"
inurl:wp-content/plugins/age-verification/age-verification.php
inurl:"/showPlayer.php?id=" intext:"powered by ellistonSPORT"
inurl:"mod.php?mod=blog" intext:"powered by DIY-CMS"
"Powered by kryCMS"
"Powered by SLAED CMS"
"error_log" inurl:/wp-content
intitle:"vtiger CRM 5 - Commercial Open Source CRM"
inurl:"clsUploadtest.asp"
inurl:"fbconnect_action=myhome"
index.php?option=com_ignitegallery
intext:"Powered by FXRecruiter"
"site by Designscope"
intext:"Powered by Inventory Mojo Software."
intext:"Site by Triware Technologies Inc"
intext:"Powered by VoiceCMS"
intext:"Powered by OnePlug CMS"
"POWERED BY LOG1 CMS"
ADAN (view.php ) Sql Injection Vulnerability
inurl:"sitegenius/topic.php"
intext:"Powered by EZPub"
intext:"Web Design by Webz" filetype:asp
"Powered by SOFTMAN"
"POWERED BY ZIPBOX MEDIA" inurl:"album.php"
"powered by zipbox media"
"made visual by sightFACTORY"
site:ebay.com inurl:callback
"Powered By Dew-NewPHPLinks v.2.1b"
allintext: /qcodo/_devtools/codegen.php
http://www.google.com/#sclient=psy&hl=en&safe=off&site=&source=hp&q=:inurl%3Amj_wwwusr&aq=f&aqi=&aql=&oq=&pbx=1&fp=2dcb6979649afcb0
Photo Gallery powered by TinyWebGallery 1.8.3
inurl:"ab_fct.php?fct="
"Powered by: PHP Link Directory"
"inurl:cultbooking.php"
inurl:"/plugins/ImageManager/manager.php"
intext:"Powered by DZOIC Handshakes Professional"
inurl:"/modules.php?name=" "Maximus CMS"
"TinyBB 2011 all rights reserved"
inurl:"jscripts/tiny_mce/plugins/tinybrowser/" OR inurl:"jscripts/tiny_mce/plugins/tinybrowser/" "index of"
"Powered by phpMySport"
"POWERED BY ALITALK"
"Powered by YourTube v1.0"
inurl:"/gadmin/index.php"
inurl:"com_eventcal"
"Website Design by Rocktime"
"Powered by UNO.com.my"
"/index.php?id=cmp-noticias"
"Powered by KaiBB 1.0.1"
"Powered by CubeCart 3.0.4"
allinurl:index.php?db=information_schema
"Powered by: IRIran.net"
inurl:com_jeauto
inurl:"produtos.asp?produto="
"powered by simpleview CMS"
"Powered By PageAdmin CMS Free Version"
intext: Copyright+MantisBT Group
inurl:panorama-viewer.php?id=
inurl:showcat.asp?id=
"POWERED BY: WEBINSPIRE"
inurl:com_amresurrected
"Powered by SOOP Portal Raven 1.0b"
PhpMyAdmin Client Side 0Day Code Injection and Redirect Link Falsification
inurl:page.php?intPageID=
php Kolay Forum (php KF) © 2007 - 2010 phpKF Ekibi
"SOOP Portal 2.0"
inurl:index.php?option=com_lqm "showResults"
"Powered By Dejcom Market CMS"
inurl:"index.php?option=com_annuaire"
"Site produced by GeneralProducts.co.uk"
inurl:"index.php?option=com_jeajaxeventcalendar"
"Powered by SiteEngine"
inurl:"index.php?option=com_competitions"
inurl:"index.php?option=com_storedirectory"
inurl:"index.php?option=com_catalogue"
inurl:index.php?option=com_doqment&cid=
inurl:"?delete" +intext:"PHP version" +intext:"Safe_mode"
inurl:"?act=phpinfo"
inurl:"jscripts/tiny_mce/plugins/tinybrowser/"
This page was produced using SAM Broadcaster. © Copyright Spacial Audio Solutions, LLC 1999 - 2004.
allinurl: id "com_jooget"
inurl:comment.asp intext:Your e-mail address will be used to send you voting and comment activity. Inclusion of your address is optional but Battle Blog cannot notify you of these activities unless you supply an accurate e-mail.
inurl:com_img
inurl:"toplist.php" "powered by phpbb"
"Designed and Developed by Debliteck Ltd"
intext:"Powered By : Yamamah Version 1.00"
inurl:"whoiscart/admin/hostinginterfaces/"
"Powered by nzFotolog v0.4.1 © 2005-2006 Ricardo Amaral"
"SQuery 4.5" |"SQuery 4.0" |"SQuery 3.9" | inurl:"modules.php?name=SQuery"
"Upload unique IP List:" AND "The Ultimate Fake Hit Generator - BOOST YOUR ALEXA RANK"
inurl:"ir/addlink.php?id=" OR inurl:"addlink.php?id="
intext:"powered and designed by Dow Group"
intext:"powered by Milonic" inurl:viewnews.php?id=
"mirco blogging"
"Sitedesign by: Dieleman www.dieleman.nl - Copyright © 2010"
"intext:Warning: passthru()" "inurl:view=help"
PHPGénéalogie fonctionne sur un serveur PHP
inurl:"char.php?id=" OR intitle:Minimanager for trinity server
inurl:"product_desc.php?id=" Powered by Zeeways.com
"Transloader by Somik.org" OR "Transloader by" OR "Transloder"
Powered by ArticlesOne.com oR Website Powered by ArticlesOne.com
"powered by CubeCart" inurl:"index.php?_a="
intext: "Site developed & mantained by Woodall Creative Group"
"Web Group Communication Center beta 0.5.6" OR "Web Group Communication Center beta 0.5.5"
inurl:"picture.php?cat=" "Powered by PhpWebGallery 1.3.4"
"Powered by Glossword 1.8.11" OR "Powered by Glossword 1.8.6"
Maian Events v2.0 Copyright © 2005-2008 Maian Script World. All Rights Reserved
inurl:categoria.php?ID= comune
"Web site engine's code is copyright © 2001-2007 ATutor®"
Créé par Narfight, ClanLite V2.2006.05.20 © 2000-2005
"Powered by Atomic Photo Album" inurl:"photo.php?apa_album_ID="
"100% | 50% | 25%" "Back to gallery" inurl:"show.php?imageid="
Powered by DUdforum 3.0 inurl:/forums.asp?iFor=
allinurl: galid "index.php?p=gallerypic"
"Powered by yappa-ng 2.3.1" AND "Powered by yappa-ng 2.3.1"
"ActualAnalyzer Lite (free) 2.78"+"Copyright © 2006 ActualScripts"
inurl:com_forum
"Copyright (c) 2004-2006 by Simple PHP Guestbook"
inurl:"browse.php?folder=" Powered by GeneShop 5
inurl:/modules/Partenaires/clic.php?id=
"powered by DBHcms"
intext:"sitio web diseñado por www.toronja.com.pe"
Maian Gallery v2.0 Copyright © 2006-2008 Maian Script World. All Rights Reserved.
allintext:" If you would like to contact us, our email address is" traffic
powered by apt-webservice ;apt-webshop-system v3.0
Maian Music v1.0. Copyright © 2007-2008 Maian Script World. All Rights Reserved.
"Help desk software by United Web Coders rev. 3.0.640"
"Software PBLang 4.66z" AND "Software PBLang 4.60" OR "Software PBLang"
intext:"Web design by goffgrafix.com"
"Welcome to Exponent CMS" | "my new exponent site" inurl:articlemodule
"Powered by Drumbeat" inurl:index02.php
"Designed & Developed by N.E.T E-Commerce Group. All Rights Reserved."
"Powered by SocketMail Lite version 2.2.8. Copyright © 2002-2006"
Powered by WHMCompleteSolution - OR inurl:WHMCS OR announcements.php
inurl:inc_catalogmanager.asp
allinurl: "pollBooth.php?op=results"pollID
"Factux le facturier libre V 1.1.5"
Powered by XAOS systems
inurl:inc_documentlibrarymanager.asp
inurl:"phpRaid" "phpRaid" "roster.php?Sort=Race"
inurl:"classifieds.php?cat="
inurl:"index.php?option=com_jequoteform"
"Software Categories" "Featured Resources" "Search"
"Website Powered By Creative SplashWorks - SplashSite"
inurl:"index.php?com_remository"
© 2007 by Lama Software - Accomm Solutions GmbH & Co. KG
inurl:"index.php?option=com_portfolio"
Powered by Article DashBoard
inurl:post.php?Category=Garage
"Send amazing greetings to your friends and relative!"
inurl:tabid/176/Default.aspx OR inurl:portals/0/
"Eyeland Studio Inc. All Rights Reserved."
Powered by Info Fisier
Powered by ArticleMS from ArticleTrader
"powered by Sniggabo CMS" inurl:article.php?id
"Powered By 0DayDB v2.3"
intext:"Powered by Max.Blog"
"Powered by Active PHP Bookmarks v1.3" inurl:.view_group.php?id=
Powered by: XP Book v3.0
"Powered by ispCP Omega"
"This site is powered by CMS Made Simple version 1."
"Jax Calendar v1.34 by Jack (tR), www.jtr.de/scripting/php"
Powered by Platinum 7.6.b.5
allinurl: "index php p shop"categ
Rash Version: 1.2.1
Powered by: mevin productions
inurl:"catalog/product/detail.php?cat="
inurl: user_info.php?user_id= " Or " inurl: index.php?catid= "
Powered by:Traidnt Gallery Version 1.0.
intitle: phpBazar-AdminPanel
allinurl: "index.php?showlink"links
"Aurora CMS"
alegrocart
inurl:/hbcms/php/
inurl:"list.php?lcat_id="
Designed and Developed by karkia E-commerce
"hlstats.php?mode=dailyawardinfo&award=" hlstatsx
Powered by Plogger!
Help Desk Software by Kayako SupportSuite v3.70.02
"powered by dataface" "powered by xataface"
inurl:"weblink_cat_list.php?bcat_id="
allinurl:"/lildbi/"
"Copyrights © 2005 Belgische Federale Overheidsdiensten"
JBC explorer [ by Psykokwak & XaV ]
"powered by Blue Dove Web Design"
"Powered by Fantastic News v2.1.2" or "Powered by Fantastic News v2.1.3"
inurl:treplies.asp?message= intitle:ASP Talk
"MidiCart PHP Database Management"
[ Web Wiz Forums® version 9.64 [Free Express Edition] ]
Copyright 2006 © Flax Article Manager v1.1
allinurl:readmore.php?news_id
"Powered by Elgg, the leading open source social networking platform"
inurl:/index.php?option=com_yellowpages
"Emanuele Guadagnoli" "CcMail"
This FAQ is powered by CascadianFAQ
"site powered by intuitive-websites.com"
Copyright © 2010 ASP SiteWare. All rights reserved.
intext:"RPG Inferno is not available to guests" or intext:"Battle Ground · Clans · Store · Jobs · Auction · Spells Shop · Statistics · Member List"
inurl:com_jstore
APBoard 2.1.0 © 2003-2010 APP - Another PHP Program
allintext:"Browse our directory of our members top sites or create your own for free!"
"ParsBlogger ? 2006. All rights reserved"
"Powered by: PhotoPost PHP 4.6" or "Powered by: PhotoPost PHP 4.5"
"Powered by PG Online Training Solution - learning management system"
inurl:cart.php?m=features&id=
"Bu Site Ticimax E-Ticaret yazılımı ile hazırlanmıştır."
Powered by: Arab Portal inurl:mod.php?mod=html
Powered by NKINFOWEB VSp © 2009
Powered by: PHPDirector 0.30 or nurl:videos.php?id=
"Powered by RedCat" inurl:index.php?contentId=
powered by x7 chat 1.3.6b
intext:Powered by Infront
Powered by Info Fisier.
Powered by WHMCompleteSolution - or inurl:WHMCS
inurl:"product_desc.php?id=" Powered by Zeeways.com
"Website powered by Subdreamer CMS & Sequel Theme Designed by indiqo.media"
"Desenvolvido por WeBProdZ"
inurl:"inurl:file.php?recordID="
"Powered by myBusinessAdmin and Red Cow Technologies, Inc."
"Powered by cityadmin and Red Cow Technologies, Inc."
"Powered by RealAdmin and Red Cow Technologies, Inc."
mod.php?mod=publisher&op=printarticle&artid=
inurl:"index.php?option=com_spa"
inurl:"photo_album.php?alb_id="
intext : "Website by conceptinternetltd"
Powered by PHP Melody 1.5.3
inurl:"guestbook.admin.php?action=settings"
"Developed by Bispage.com"
Script créé par Funewik - Dezign-Box © France
"by in-link" or "Powered by In-Link 2."
allintext:"Latest Pictures" Name Gender Profile Rating
inurl:"noticias.php?notiId="
Copyright 2008 Free Image & File Hosting
"PHP Gallery © 2010 PHP Weby hostgator coupon"
"Send amazing greetings to your friends and relative!"
"PHP Gallery © 2010 PHP Weby hostgator coupon"
Copyright © 2007 Agares Media. Powered by AMCMS3.
inurl:"lista_articulos.php?id_categoria="
"PHPWebAdmin for hMailServer" intitle:PHPWebAdmin -site:hmailserver.com
Copyright 2010 My Hosting. All rights reserved
"PHP Gallery © 2010 PHP Weby hostgator coupon"
"index.php?option=com_chronocontact" / "com_chronocontact"
"pages.php?page_ID=" "K9 Kreativity"
inurl:"picture.php?cat=" "Powered by PhpWebGallery 1.3.4"
"index.php?option=com_chronoconnectivity" / "com_chronoconnectivity
Powered by cP Creator v2.7.1
Powered by PHP Advanced Transfer Manager v1.10 - @2002 Bugada Andrea
Powered by iScripts EasyBiller
"Powered By phpCOIN v1.2.1" / "mod.php?mod=faq"
intext:"Powered By WorldPay" inurl:productdetail.php
inurl:"com_dbquery" OR "index.php?option=com_dbquery"
Powered by Discuz! 1.0 © 2002, Crossday Studio of 11cn.org
Power by donghungx. Copyright © 2008 AttMp3.com. All rights reserved.
"Powered by osCMax v2.0" , "Copyright @" "RahnemaCo.com"
intext:"Free Ecommerce Shopping Cart Software by ViArt" +"Your shopping cart is empty!" + "Products Search" +"Advanced Search" + "All Categories"
"powered by WonderEdit Pro"
"PHP Link Portal v1.95.1 © Big Resources, Inc."
[ Copyright 2005-2006 phpDirectorySourceâ„¢, all rights reserved ]
"index.php?option=com_sef" / "com_sef"
inurl:.asp? Powered by Comersus ASP Shopping Cart
"Powered by: Yes Solutions"
Powered by PBBoard© 2009 Version 2.0.5
inurl:/components/je-media-player.html?
"Forum Active Bulletin Board version 1.1 béta 2"
inurl:module=My_eGallery pid
Website powered by Subdreamer CMS & Sequel Theme Designed by indiqo.media
"These forums are running on" "miniBB"
intext:"Powered by Ramaas Software"
Powered by Maian Greetings v2.1
"Powered by [ iSupport 1.8 ]"
intext:"Remository 3.25. is technology by Black Sheep Research"
inurl:index.php?title=gamepage
Powered by: Maian Uploader v4.0
"Site designed and built by Powder Blue." inurl:index.php?id_page=
"Powered by MetInfo 2.0"
intext:"Marketing Web Design - Posicionamiento en Buscadores"
allintext:"Home Member Search Chat Room Forum Help/Support privacy policy"
"Developed by Infoware Solutions"
"Powered by: MyPHP Forum"
Ayemsis Emlak Pro
"Powered By CrownWeb.net!" inurl:"page.cfm"
Copyright @ 2007 Powered By Hot or Not Clone by Jnshosts.com Rate My Pic :: Home :: Advertise :: Contact us::
inurl:"contentPage.php?id=" OR inurl:"displayResource.php?id=" AND intext:"Website by Mile High Creative"
inurl:com_jepoll
Come from home Script ( Latest Project ) www.esmart-vision.com
"powered by zomplog"
Joomla Component com_eportfolio Upload Vulnerability
"Site designed and built Powered by GlobalWebTek."
Copyright ©2007-2009 by Kasseler CMS. All rights reserved.
inurl:inc_webblogmanager.asp
Powered by eLitius Version 1.0
inurl:index.php?option=com_races "raceId"
inurl:/phpplanner/userinfo.php?userid=
"/nuke/htmltonuke.php" - "htmltonuke.php"
"Powered by ClanAdmin Tools v1.4.2"
Powered by osCommerce | Customized by EZ-Oscommerce
inurl:"coursepage.php?id=" intext:"Web Site design by : Aim Web Design Cheshire"
Powered by One-News
"Powered by PHP Director"
"Webdesign Cosmos Solutions"
"Site designed and built by ProWeb Associates."
"Powered By Basic CMS SweetRice"
inurl:index.php?option=com_liveticker "viewticker"
"Tanyakan Pada Rumput Yang Bergoyang"
"Devana is an open source project !"
"sitio web diseñado por www.toronja.com.pe"
E-Commerce Engine Copyright © 2005 osCSS
Powered by Ac4p.com Gallery v1.0 , Copyright© 2007 ac4p.com
Powered by Digital College 1.0 - Magtrb Soft 2010
inurl:"/wp-content/plugins/wp-shopping-cart/"
intitle:"igenus webmail login"
"Powered by FreeWebshop"
intext:"Designed by Spaceacre"
This site is powered by e107, which is released under the terms of the GNU GPL License.
"S-CMS by matteoiamma"
inurl:"cal_day.php?op=day&catview="
netGitar.com - Shop v1.0
allinurl:fullview.php?tempid=
www.stwc-counter.de
[ Powered by: RadLance v7.5 ]
Powered by CMScout (c)2005 CMScout Group
Powered by Comersus v6 Shopping Cart
"Powered by MobPartner" inurl:"chat.php"
[ Content Copyright © 2007 RadNics Gold ]
"index.php?option=com_news_portal" or "Powered by iJoomla News Portal"
inurl:"/modules/friendfinder/"
allinurl:forum_answer.php?que_id=
"Powered by EPay Enterprise" inurl:"shop.htm?cid=" | nurl:"shop.php?cid="
"Copyright 2004 easy-content forums"
"Website by WebSolutions.ca"
"Powered by Nukedit"
Powered by Gbook MX v4.1.0 ©2003 Magtrb Soft
Powered by SLAED CMS © 2005-2008 SLAED. All rights reserved.
myAlbum-P 2.0
[ Software Directory Powered by SoftDirec 1.05 ]
"By Geeklog" "Created this page in" +seconds +powered
inurl:"xampp/biorhythm.php"
inurl:"/modules/glossaire/"
index.php?option=com_is
Powered by Ninja Designs This is a port of WordPress
Copyright 1999-2010 Rocksalt International Pty Ltd. All rights reserved
inurl:"/modules/wfsection/"
intext:"phpbb - auction" inurl:"auction"
Powered by Forums W-Agora
intitle:admbook intitle:version filetype:php
inurl:"com_icrmbasic"
index.php?option=com_mambads
"AlumniServer project"
Powered by PHP F1 (Max's Photo Album)
"Powered by LightNEasy"
"The Merchant Project"
intitle:"Directory Listing For /" + inurl:webdav tomcat
"Search Projects" intitle:"The ultimate project website"
Powered by Dodo, Bubo & Misty. Feed us!
allinurl:"shop.htm?shopMGID="
"By Geeklog" "Created this page in" +seconds +powered inurl:public_html
"Powered by LifeType" "RSS 0.90" "RSS 1.0" "RSS 2.0" "Valid XHTML 1.0 Strict and CSS"
inurl:pmwiki.php +"Page last modified on" | PmWikiPhilosophy
"Powered by UPB"
"Powered by Claroline" -demo
"Galerie 3.2 © 2004 by progressive"
"Powered By Pligg" + "Legal: License and Source"
"toendaCMS is Free Software released under the GNU/GPL License." | "powered by toendaCMS" -inurl:demo
"Powered by cpCommerce"
"propulsé par JBlog"
"Help * Contact * Imprint * Sitemap" | "powered by papoo" | "powered by cms papoo"
"Help * Contact * Imprint * Sitemap" | "powered by papoo" | "powered by cms papoo"
"100% | 50% | 25%" "Back to gallery" inurl:"show.php?imageid="
"Powered by PHP-Update" -site:www.php-update.co.uk
"powered by jaws" | "powered by the jaws project" | inurl:?gadget=search
"FlatNuke" "Valid HTML 4.01!" "Valid CSS!" "Get RSS 2.0 Feed" "Get RSS
"Powered by BLOG:CMS"|"Powered by blogcms.com"|"2003-2004, Radek Hulán"
"FlatNuke" "Valid HTML 4.01!" "Valid CSS!" "Get RSS 2.0 Feed" "Get RSS
"Powered by PHP Photo Album"
"Site powered by GuppY" | "Site créé avec GuppY" +inurl:lng=
"This site is powered by e107"|inurl:e107_plugins|e107_handlers|e107_files
intext:"This site is using phpGraphy" | intitle:"my phpgraphy site"
inurl:"lists/?p=subscribe" | inurl:"lists/index.php?p=subscribe"
"Powered by sendcard - an advanced PHP e-card program"
"This is a Free & Open Source mailing list manager"
intitle:"X7 Chat Help Center"|"Powered By X7 Chat"
SmarterMail Enterprise 7.1
("powered by nocc" intitle:"NOCC Webmail") -site:sourceforge.net -Zoekinalles.nl -analysis
inurl:inc_photogallerymanager.asp
inurl:"tr.php?id=" Short Url & Url Tracker
"Powered by Burning Board Lite 1.0.2" or "Powered by Burning Board 2.3.6"
Copyright . Nucleus CMS v3.22 . Valid XHTML 1.0 Strict . Valid CSS . Back to top
"propulsé par DotClear" "fil atom" "fil rss" +commentaires
"powered by php photo album" -demo2 -pitanje"
allinurl:com_pccookbook
inurl:"section.php?name=singers"
Powered by v1.14 powered by philboard v1.14
inurl:index.php%"Submit%Articles"%"Member%Login"%"Top%Authors"
allinurl: "wordspew-rss.php"
allinurl: com_clasifier
allinurl: "com_galeria"
Powered by hwdVideoShare
allinurl: modules-php-name-Siir
allinurl: "modules/wfdownloads/viewcat.php?cid"
allinurl: "modules/eEmpregos/index.php"
Powered by Active PHP Bookmarks v1.1.02
powered by Site Sift
"Create your own free webring and bring traffic to your website. Join now, it's free!"
inurl:com_joomladate
"powered by ILIAS"
allinurl: "index.php?option=com_doc"
Powered by GL-SH DEAF forum 6.5.5 final.
inurl:com_simpleshop
inurl:"index.php?pageid=" Property Listings
"Powered by Smoothflash"
display_blog.php
Snipe Gallery v.3.1.5 by Snipe.Net
Powered by AspDownload
DA Mailing List System V2 Powered by DigitalArakan.Net
Powered By AJ Auction Web
''showad.php?listingid=''
"Powered by My PHP Indexer 1.0"
allinurl: "com_rapidrecipe"user_id
allinurl: "modules/dictionary"
"RS MAXSOFT"
"2007 RADIOZAZA www.radiozaza.de? istek hatti Version 2.5"
allinurl: "index.php?p=poll"showresult
allinurl: "com_joovideo" detail
content_by_cat.asp?contentid ''catid''
Powered By AlstraSoft Video Share Enterprise
"Powered by PG Real Estate Solution - real estate web site design"
"Powered by PG Roomate Finder Solution - roommate estate web site design"
allinurl: com_pcchess "user_id"
Powered by PHP upload - unijimpe.
"Powered by FubarForum v1.6"
inurl:cfaq/index.php?catid=
''name Kose_Yazilari op viewarticle artid''
inurl: modifyform.html?code=
allinurl: com_ricette
out.php?linkid=1
" ActiveKB v1.5 Copyright ©"
allinurl:"com_garyscookbook"
inurl:"index.php?conteudo="
inurl:"section.php?name=singers"
inurl:cat1.php?catID= "Spaceacre"
"Powered by FubarForum v1.6"
intext:©2003-2008 RC v3.1 Developed by: GA Soft
details.php?p_id=
allinurl:"modules/photo/viewcat.php?id"
powered by 35mm Slide Gallery
allinurl:"com_simpleshop"
powered by vBulletin 3.8.4
intitle:Web Calendar system v 3.30 inurl:.asp
inurl:index.php?page=en_jobseekers
webwizguestbook_license.asp
allinurl: aid "com_xfaq"
inurl:modules/flashgames/
inurl:index.php?option=com_mediaslide
inurl:"com_biblestudy"
inurl:"com_dashboard"
inurl:"com_jcollection "
"Affiliate Network Pro"
index.php?option=com_pcchess
Powered By: Forest Blog v1.3.2
intext:"Powered by phpFastNews"
Powered by phpDatingClub
"Powered by: Censura"
inurl:com_clanlist
"This script created by www.script.canavari.com"
inurl:classified/product_desc.php?id=
allinurl:"members.asp?action"
inurl:btg_oglas
Powered by lineaCMS © 2006 lineaPHP Group
"Powered by Scripteen Free Image Hosting Script V 2.3"
inurl:"com_jvideodirect "
"Siteman Version 1.1.9"
"SimpleBlog 2.3 by 8pixel.net"
inurl:/squirrelcart/
inurl:com_markt
"powered by EQdkp"
intitle:"Login to Calendar"
"WebCalendar v1.0.4"
inurl:"com_bfsurvey"
anyInventory, the most flexible and powerful web-based inventory system
inurl:bemarket
inurl:"com_jashowcase "
Powered by React - www.react.nl
"qjForum"
"Powered by cifshanghai.com"
allinurl:"detResolucion.php?tipodoc_id="
"Powered By : Yamamah Version 1.00"
Powered by osCSS
inurl:"index.php?option=com_prime"
"2006 by www.mani-stats-reader.de.vu"
"powered by: WebLeague"
"All Rights Reserved. Powered by DieselScripts.com"
intitle:Web Calendar system v 3.40 inurl:.asp
inurl:index.php?option=com_noticia
inurl:guestbook.php "Advanced GuestBook" "powered by phpbb"
inurl:index.php?option=com_portfolio
allinurl:"/ubbthreads/"
"powered by zomplog"
inurl:"/cgi-bin/ourspace/"
inurl:index.php?option=com_joomradio
"Powered by xeCMS"
Power by PHP Classifieds
"powered by clipshare"
inurl:"com_dailymeals"
inurl:"/k12.tr/?part="
inurl:"com_clan"
"Powered by WSN Guest"
allinurl: com_paxxgallery "userid"
inurl:"index2.php?option=rss" OR "powered By Limbo CMS"
"Powered by ezContents Version 1.4.5"
powered by CMSbright © websens
allinurl: com_quiz"tid"
inurl:"com_biographies"
inurl"com_gurujibook"
inurl:/system/article/alltopics.php OR inurl:/system/user/index.php
Realizzato con WSC CMS by Dynamicsoft
"Powered by Knowledge Base"
allinurl:"com_extcalendar"
intitle:"Jax Formmailer - Administration"
Powered by: Linkarityâ
inurl:index.php?option=com_yanc
allinurl: "index.php?p=gallerypic img_id"
inurl:classified.php phpbazar
intext:"Powered by Firebrand Technologies"
"Designed and Developed by Debliteck Ltd"
Supernews 2.6
"powered by ezUserManager"
Powered by: PreProjects
allintitle: "MCgallery 0.5b"
TRUC 0.11.0 :: © 2006 by ASDIS :
contact_frm.php
Powered by Natterchat v1.12
"Instant Free File Uploader"
Powered by Webiz inurl:'wmt/webpages
"Powered by xchangeboard"
allinurl: com_mcquiz "tid"
inurl:"com_productbook"
inurl: "com_alphacontent"
"Powered by: PreProjects"
"Powered by SoftbizScripts" inurl:store_info.php
inurl:"com_avosbillets"
"Powered By Aardvark Topsites PHP 4.2.2"
inurl:"com_projectfork"
intext:"Powered by PHPCityPortal.com"
intitle:"jGallery"
"Powered by Download 3000"
intitle:"zFeeder admin panel"
Powered by WebStudio
inurl:"select_file2.php"
"powered by Gradman"
"Designed and Developed by Debliteck Ltd"
"Powered by mlffat"
inurl:"/squirrelcart/" -squirrelcart.com
Engine powered by easyLink V1.1.0.
allintext: "This site is powered by IndexScript"
©2005 Ocean12 Technologies. All rights reserved
"powered by PassWiki"
"software 2004-2005 by randshop"
"powered by phpEmployment"
inurl:"wp-download.php?dl_id="
"© 2004 PHPKick.de Version 0.8"
"Powered by VS PANEL"
"powered by phpmydirectory" OR intext:"2001-2006 phpMyDirectory.com"
intext:"Kalimat news system v 1.0"
Powered by: PhotoPost PHP 4.6
"Powered by Maian Recipe v1.0"
"Powered by CommonSense CMS"
"Eyeland Studio Inc. All Rights Reserved." inurl:game.php
"powered by Pagetool"
powered by jshop
/modules/mx_links/
inurl:"?pageNum_RSnews"&view
inurl:index.php?option=com_directory
"Powered By DynamicPAD"
"Powered by : elkagroup.com"
"com_joom12pic"
"Starting bid" "Powered by SoftbizScripts"
"Liberum Help Desk, Copyright (C) 2001 Doug Luxem. Please view the license
allinurl:"jokes.php?catagorie="
"Created by weenCompany"
intext:"Powered by eStore v1.0.2"
"Powered by: Elite Gaming Ladders v3.2"
php-addressbook v3.1.5
"Powered by ParsBlogger"
intitle:"vrnews v1"
inurl:"customer_testimonials.php"
"Powered by Espinas IT"
"Powered by iNetScripts"
Maintained with the Ocean12 Poll Manager Pro v1.00
allinurl: "com_glossary"
"© 2009 Azimut Technologie"
inurl:buyer/about_us.php?BuyerID
Maintained with the Ocean12 Calendar Manager Gold v2.04
pagerank-0-topliste.html OR pagerank-0-tipp.html
Copyright © 2007 BrowserCRM Ltd
Powered by UCenter inurl:shop.php?ac=view
"Sinapis by scripter.ch"
"Powered by BosClassifieds Classified Ads System"
"Powered by RGameScript"
inurl:"/files/redirect.asp"
"Easy-Clanpage v2.2"
inurl:"/plugins/ImageManager/manager.php"
"com_joomlaflashfun"
Powered by BKWorks ProPHP Version 0.50 Beta 1
Powered by Sisfo Kampus 2006
inurl:"sticker/sticker.php?id="
inurl:quizinfo.php
"Powered by Md-Pro"
inurl:"index.php?option=com_simpleboard"
inurl:"tradeCategory.php?id= "
inurl:"com_omphotogallery"
inurl:"sinagb.php"
inurl:csc_article_details.php
inurl:index.php?page=img Powered By Mini File Host
allinurl:com_pccookbook
"Powered by LDU"
intext:"powered by tincan ltd"
"REALTOR 747 - Version 4.11"
inurl:"view_group.php?group_id="
"CzarNews v1.12 " | "CzarNews v1.13" | "CzarNews v1.14 "
inurl:"filebase.php" "Powered by phpBB"
allinurl: "name Sections op viewarticle artid"
"Powered by samart-cms"
Ultimate-Fun-Book 1.02
allinurl: "modules/dictionary/detail.php?id"
"Copyright (C) 2000 Phorum Development Team"
inurl:flashblog.html OR inurl:/flashblog/
"Powered By CMS-BRD"
"inurl:/admin/" "ImageVue"
"TROforum 0.1"
"Uploader by CeleronDude."
"Review Script" "Phil Taylor"
intitle:Mp3 ToolBox 1.0
Powered by: Maian Greetings v2.1
allinurl: "com_alberghi" detail
"Powered By phpBB Garage 1.2.0"
inurl:index.php?option=com_ynews
"Powie's PSCRIPT MatchMaker 4.05"
inurl:etkinlikbak.asp
"Copyright 2008 ImenAfzar ver :2.0.0.0"
allinurl:com_comprofiler
inurl:"com_joomlaradiov5"
"powered by phpAdBoard"
"Powered by Quick.Cms"
"Powered by wpQuiz" inurl:index.php
"Powered by UCStats version 1.1"
"Powered by CCLeague Pro"
intitle:Bilder Galerie 1.1 or intitle:Bilder Galerie
"Powered by: PostGuestbook 0.6.1"
"powered by sunshop"
Powered by SkaDate Dating
inurl:"ibase site:de"
"Powered by sNews"
"Powered by Gravy Media"
inurl:"index.php?option=com_djiceshoutbox"
inurl:com_filiale
"Powered By AV Arcade"
Powered by NATTERCHAT v 1.1
ogrencimezunlar.php
inurl:index.php?option=com_yanc "listid"
Powered by 6rbScript
powered by vpasp v 6.50
allinurl:"/questcms/"
inurl:com_eQuotes
"Powered by Xplode CMS"
Powered by Jewelry Cart Software
"Diseño Web Hernest Consulting S.L."
inurl:com_cpg
inurl:ratelink.php?lnkid=
"CNStats 2.9"
"Browse with Interactive Map"
intext:"Powered By Azaronline.com"
Powered by ephpscripts
"powered by Blog System"
"Powered by DWdirectory"
"2005 www.frank-karau.de" | "2006 www.frank-karau.de"
inurl:jgs_treffen.php
"Powered by SoftbizScripts" inurl:"searchresult.php?sbcat_id="
Powered by SNETWORKS PHP CLASSIFIEDS
inurl:Editor/assetmanager/assetmanager.asp
inurl:makaledetay.asp?id=
inurl: Powered by Traidnt UP Version 1.0.
inurl:"com_linkr"
inurl:"com_janews"
inurl:"com_sectionex"
inurl:"com_rokdownloads"
inurl:"com_ganalytics"
inurl:/phpfootball/
"Search Adult Directory:"
inurl:forum_answer.php?que_id
allinurl:index.php?act=publ
inurl:"com_cartweberp"
"PHPAuction GPL Enhanced V2.51 by AuctionCode.com"
inurl:com_doqment
intext:PHPhotoalbum v0.5
"Powered by OnePound"
"Powered By : Yamamah Version 1.00"
"powered by SnoGrafx"
allinurl:"xGb.php"
"Powered by ForumApp"
inurl:/component/jeeventcalendar/
allinurl: page_id album "photo"
"Powered by beamospetition 1.0.12"
"Powered by 68kb"
"powered by devalcms v1.4.a"
inurl:com_webring
inurl:hikaye.asp?id=
intext:Design by: runt communications
Copyright Agares Media phpautovideo
"Powered by DVHome.cn"
"powered by ExtCalendar v2"
"Search | Invite | Mail | Blog | Forum"
"AcmlmBoard v1.A2"
inurl:index.php?option=com_mambads
inurl:"modules.php?name=My_eGallery"
"Marketplace Version 1.1.1"
"Powered by Ajax Portal 3.0"
"Powered By IP.Board 3.0.0 Beta 5"
"MunzurSoft Wep Portal W3"
Powered by Blox CMS from TownNews.com
allinurl :"wp-content/plugins/st_newsletter"
"© 2008 DevWorx - devworx.somee.com"
inurl:"links_showcat.php?"
Powered by SH-News 3.0
"CaLogic Calendars V1.2.2"
inurl:"com_pollxt"
Powered by PHP Links from DeltaScripts
inurl:index.php?option=com_calendario
Powered by PNphpBB2 / Powered por PNphpBB2
"Powered by Nukedit"
Powered by "vcart 3.3.2"
Powered by SkaLinks
"Généré par KDPics v1.18"
inurl:"nabopoll/"
allinurl :"modules/eblog"
Powered By DataLife Engine
"© Sabdrimer CMS"
AlstraSoft Web "ESE"
Powered by Maian Cart v1.1
Thyme 1. © 2006 eXtrovert Software LLC. All rights reserved
eXV2 MyAnnonces
"BlogMe PHP created by Gamma Scripts"
inurl:"/go/_files/?file="
inurl:"option=com_camelcitydb2"
Powered by PacerCMS
inurl:com_expshop
intitle:"ITech Bids"
"Script réalisé par BinGo PHP"
Powered by CS-Cart - Shopping Cart Software
inurl:com_colophon
" Powered by JTL-Shop 2"
"Powered by PHP Shop from DeltaScripts"
"Powered by sNews " inurl:index.php?id=