mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
30 lines
950 B
Ruby
30 lines
950 B
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 "CDK Connected Website"
|
|
authors [
|
|
"Bhavin Senjaliya <bhavin.senjaliya@gmail.com>", # 2016-08-19
|
|
"Andrew Horton", # v0.2 # 2017-11-27 # Updated description. Added website. Added assets-cdk.com and x-nitra-side. Changed name..
|
|
]
|
|
version "0.2"
|
|
description "CDK creates websites for the automotive industry. CDK Connected Store is an eCommerce platform."
|
|
website "https://www.cdkglobal.com/"
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
{ :text => 'src="https://media-cf.assets-cdk.com/', :name => "scripts from assets-cdk.com" },
|
|
|
|
{ :search => "headers[X-Nitra-Side]", :regexp => /./},
|
|
|
|
# Cookie
|
|
{ :search => "headers[set-cookie]", :regexp => /^nitraside/, :name=>"nitraside cookie" },
|
|
|
|
]
|
|
|
|
end
|