mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
44 lines
1.1 KiB
Ruby
44 lines
1.1 KiB
Ruby
##
|
|
# 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.
|
|
# https://www.morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "Open-Freeway"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2010-06-05
|
|
]
|
|
version "0.1"
|
|
description "Freeway is by far the largest and most fully featured Open Source eCommerce platform. It doesn't just sell products but extends to sell in some very fancy new ways and is very configurable."
|
|
website "http://www.openfreeway.org/"
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'"Copyright * Zacware" "Welcome Guest" "Advanced Search" "Shopping Cart" "Checkout"'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
{ :certainty=>75,
|
|
:ghdb=>'+"Copyright * Zacware" +"Welcome Guest" +"Advanced Search" +"Shopping Cart" +"Checkout"'
|
|
},
|
|
|
|
{:name=>'default html',
|
|
:text=>'<body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" onLoad="javascript:move_cart()">'
|
|
}
|
|
|
|
]
|
|
|
|
passive do
|
|
m=[]
|
|
m << {:name=>"fEcom Cookie", :certainty=>75 } if @headers["set-cookie"] =~ /fEcom=/
|
|
m
|
|
end
|
|
|
|
end
|
|
|