forked from urbanadventurer/WhatWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
## | ||
# 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 "DynamicWeb" do | ||
author "Guillaume Delacour <[email protected]>" # 2017-04-15 | ||
version "0.1" | ||
description "Dynamicweb is the All-In-One Platform for Content Management, Ecommerce, Digital Marketing and Integration." | ||
website "https://dynamicweb.com/" | ||
|
||
# Matches # | ||
matches [ | ||
# Version in Meta Generator | ||
{ :version=>/<meta name="generator" content="Dynamicweb ([^\s]+)"/ }, | ||
# comment | ||
{ :certainty=>100, :regexp=>/\(c\) 1999-(20[\d]{2}) Dynamicweb Software A\/S/ }, | ||
# Set-Cookie | ||
{ :certainty=>75, :search=>"headers[set-cookie]", :regexp=>/Dynamicweb/ }, | ||
] | ||
end |