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
|
##
# Version 0.3 # 2016-08-19 # "Bhavin Senjaliya <bhavin.senjaliya@gmail.com>"
# Added affiliate cookie
##
# Version 0.2 Andrew Horton
# Added website parameter
##
# 2014-11-04 # Napz
##
##
# 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://morningstarsecurity.com/research/whatweb
##
Plugin.define do
name "3dcart"
authors [
"Napz <napzs@rocketmail.com>", # 2014-11-04
"Andrew Horton", # v0.2 # Added website parameter.
"Bhavin Senjaliya <bhavin.senjaliya@gmail.com>", # v0.3 # 2016-08-19 # Added affiliate cookie.
]
version "0.3"
description "3dcart - The 3dcart Shopping Cart Software is a complete ecommerce solution for anyone."
website "http://www.3dcart.com/"
# Dorks #
dorks [
'"powered by 3dcart"'
]
# Matches #
matches [
# HTML Comment
{ :text=>'<!--START: 3dcart stats-->' },
{ :text=>'<!--END: 3dcart stats-->' },
{ :search=>"headers[set-cookie]", :regexp=>/3dvisit/ },
{ :search => "headers[set-cookie]", :regexp => /^affiliate\s/, :name=>"affiliate cookie", :certainty => 25 },
]
end
|