File: gCards.rb

package info (click to toggle)
whatweb 0.4.8~git20120606-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 7,956 kB
  • sloc: ruby: 53,738; sh: 577; makefile: 34
file content (98 lines) | stat: -rw-r--r-- 3,016 bytes parent folder | download
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
##
# This file is part of WhatWeb and may be subject to
# redistribution and commercial restrictions. Please see the WhatWeb
# web site for more information on licensing and terms of use.
# http://www.morningstarsecurity.com/research/whatweb
##
Plugin.define "gCards" do
author "Brendan Coles <bcoles@gmail.com>" # 2011-03-15
version "0.1"
description "gCards is a free PHP-based eCard system that is easy to setup and use. gCards simple Administration Console allows the administrator to upload images (JPEGs of GIFs), add eCard categories, and modify existing settings - Note: This project is dormant - no further updates will be done - Homepage: http://www.gregphoto.net/gcards/index.php"

# Google results as at 2011-03-15 #
# 359 for "powered by gcards"
# 11 for intitle:"eCards Administration Console Login" inurl:login.php

# Dorks #
dorks [
'"powered by gcards"',
'intitle:"eCards Administration Console Login" inurl:login.php'
]

# Examples #
examples %w|
demo.centipaid.com/gcards/
www.buddhistchannel.tv/gcards/
www.luckenbooth.com/gcards/
packardgoose.ploeg.ws/gcards/
www.fun-system.com/_fun_system/gallery/login.php
www.teesarchaeology.com/ecard/login.php
www.vozao.com.br/gcards/
www.nvak.no/misc/postcard/
www.valqueireonline.com.br/webcards/
200.215.63.48/cartoes/
www.webcards.francisconi.com.br/login.php
www.thaigarden.com/database/english/gcards/
www.floridacards.com/gcards/
www.militaryecard.com
www.cccturtle.org/gcards/
www.digischool.nl/gcards/
www.christmasgreetingsonline.com/gcards/index.php
dns.calnek.com/gcards/
haikeralam.com/gcards/
www.cholangiocarcinoma.org/gcards/
www.komputerkraft.com/gcards/
www.drive-infilm.com/cards/
www.garlynzoo.com/gcards/
www.tina-turner.nl/gcards/
www.tauferberg.com/gcards/
www.schnattertante.de/qcard/
www.route66university.com/gcards/
conserveturtles.com/gcards/
www.seaturtletracking.com/gcards/
helmutkuhn.com/gcards/
www.vastu-vidya.org/ecards/
www.twoweekwait.com/ecards/
www.kooikerforum.nl/gcards/
www.goojf.com/gcards/
www.webbocah.org/gcards/
www.karlheinz-ulmer.com/gcards/
barefootlabradors.com/gcards/
blackorwhite.nl/ecards/gcards/
www.revolucion13.com/gcards/
ecards.kalaiyalive.com
ecards.mayastepien.nl
learn-energy.net/kidscorner/postcards/
www.mailcards.org
postcards.heathernova.info
www.barbiexmas.com/cards/
mymerrychristmas.com/greetings/
www.merrygreetings.com
helpingseaturtles.com/gcards/
www.vastu-vidya.eu/ecards/
www.cambridgeart.com/cgi-bin/gcards/
www.blackadderhall.com/ecards/
www.stephens.edu/alumnae/extras/cards/
www.xsitecreator.com/hotecards/
www.bulguide.com/ecards/
www.archdiocese.la/ecards/
www.landsbyporten.no/gcards/
|

# Matches #
matches [

# Compose Link
{ :certainty=>75, :text=>'<a href="compose.php?imageid=' },

# Admin Page # Default Title
{ :text=>"<title>eCards Administration Console Login</title>" },

# Version Detection
{ :version=>/<td>(Driftet av|Powered by|Un script de ) <a href="http:\/\/www.gregphoto.net\/gcards\/index.php"[^>]*>gCards<\/a> v([\d\.]+)<\/td>/, :offset=>1 },

]

end