forked from urbanadventurer/WhatWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadaptcms.rb
36 lines (26 loc) · 1.08 KB
/
adaptcms.rb
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
##
# 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 "AdaptCMS" do
author "Brendan Coles <[email protected]>" # 2010-10-12
version "0.1"
description "AdaptCMS is a PHP CMS that is made for complete control of your website, easiness of use and easily adaptable to any type of website"
website "http://www.adaptsoftware.org/article/1/Projects/AdaptCMS/"
# Google results as at 2010-10-12 #
# 7 for "powered by AdaptCMS"
# Dorks #
dorks [
'"powered by AdaptCMS"'
]
matches [
# Version detection
{ :version=>/Powered by <a href="http:\/\/www.adaptcms.com">[<b>]*AdaptCMS([^<]*)<\/a>/ },
# Powered by <a href="http://www.adaptcms.com">AdaptCMS</a>, <a href="http://www.adaptbb.com">AdaptBB</a>.
# Powered by <a href="http://www.adaptcms.com"><b>AdaptCMS</a>
# Powered by <a href="http://www.adaptcms.com"><b>AdaptCMS Lite</a>
# Powered by <a href="http://www.adaptcms.com">AdaptCMS Pro</a>
]
end