File: demandware.rb

package info (click to toggle)
whatweb 0.6.1-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 23,948 kB
  • sloc: ruby: 43,493; sh: 213; makefile: 41
file content (27 lines) | stat: -rw-r--r-- 739 bytes parent folder | download | duplicates (2)
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
#
# Version 0.2 # 2016-08-19 # Bhavin Senjaliya <bhavin.senjaliya@gmail.com>
# Add cookies
#
##
Plugin.define do
name "DemandWare eCommerce System"
authors [
  "Claudio Salazar <csalazar at spect dot cl>",
]
version "0.2"
description "Digital commerce for the changing face of retail."
website "https://www.demandware.com/"

matches [

	{:regexp=>/\/demandware.store\//, :certainty => 25 },

	# Cookie 
	{ :search => "headers[set-cookie]", :regexp => /cqcid/, :name=>"cqcid cookie" },
	{ :search => "headers[set-cookie]", :regexp => /dwac_/, :name=>"dwac_ cookie" },
	{ :search => "headers[set-cookie]", :regexp => /dwac_/, :name=>"dwac_ cookie" },
	{ :search => "headers[set-cookie]", :regexp => /dwsid/, :name=>"dwsid cookie" },
	
]

end