1 ## 2 # This file is part of WhatWeb and may be subject to 3 # redistribution and commercial restrictions. Please see the WhatWeb 4 # web site for more information on licensing and terms of use. 5 # https://www.morningstarsecurity.com/research/whatweb 6 ## 7 Plugin.define do 8 name "AdaptCMS" 9 authors [ 10 "Brendan Coles <bcoles@gmail.com>", # 2010-10-12 11 ] 12 version "0.1" 13 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" 14 website "http://www.adaptsoftware.org/article/1/Projects/AdaptCMS/" 15 16 # Google results as at 2010-10-12 # 17 # 7 for "powered by AdaptCMS" 18 19 # Dorks # 20 dorks [ 21 '"powered by AdaptCMS"' 22 ] 23 24 25 26 matches [ 27 28 # Version detection 29 { :version=>/Powered by <a href="http:\/\/www.adaptcms.com">[<b>]*AdaptCMS([^<]*)<\/a>/ }, 30 31 # Powered by <a href="http://www.adaptcms.com">AdaptCMS</a>, <a href="http://www.adaptbb.com">AdaptBB</a>. 32 # Powered by <a href="http://www.adaptcms.com"><b>AdaptCMS</a> 33 # Powered by <a href="http://www.adaptcms.com"><b>AdaptCMS Lite</a> 34 # Powered by <a href="http://www.adaptcms.com">AdaptCMS Pro</a> 35 36 ] 37 38 end 39