mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
49 lines
1.7 KiB
Ruby
49 lines
1.7 KiB
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://morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "Bitrix-Site-Manager"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2011-05-04
|
|
# v0.2 # 2011-11-04 # Updated matches to use :search instead of passive[].
|
|
]
|
|
version "0.1"
|
|
description "Website management, e-commerce and e-marketing solution that delivers extreme value in performance, functionality, and ease-of-use."
|
|
website "http://www.bitrixsoft.com/"
|
|
|
|
# ShodanHQ results as at 2011-05-04 #
|
|
# 226 for B-Powered-By
|
|
# 225 for B-Powered-By Bitrix SM
|
|
# 4,064 for X-Powered-CMS
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# P3P
|
|
{ :search=>"headers[p3p]", :name=>"P3P Header", :regexp=>/^policyref="\/bitrix\/p3p\.xml", CP="NON DSP COR CUR ADM DEV PSA PSD OUR UNR BUS UNI COM NAV INT DEM STA"$/ },
|
|
|
|
# Cookies
|
|
{ :search=>"headers[set-cookie]", :name=>"BITRIX_SM_SALE_UID Cookie", :regexp=>/BITRIX_SM_SALE_UID=[\d]+;/ },
|
|
{ :search=>"headers[set-cookie]", :name=>"BITRIX_SM_GUEST_ID Cookie", :regexp=>/BITRIX_SM_GUEST_ID=[\d]+;/ },
|
|
{ :search=>"headers[set-cookie]", :name=>"BITRIX_SM_LAST_VISIT Cookie", :regexp=>/BITRIX_SM_LAST_VISIT=/ },
|
|
{ :search=>"headers[set-cookie]", :name=>"BITRIX_SM_BANNERS Cookie", :regexp=>/BITRIX_SM_BANNERS=/ },
|
|
|
|
# X-Powered-CMS
|
|
{ :search=>"headers[x-powered-cms]", :name=>"X-Powered-CMS Header", :regexp=>/^Bitrix Site Manager \(/ },
|
|
|
|
# B-Powered-By
|
|
{ :search=>"headers[b-powered-by]", :name=>"B-Powered-By Header", :regexp=>/^Bitrix SM \(/ },
|
|
|
|
# Version Detection # B-Powered-By
|
|
{ :search=>"headers[b-powered-by]", :name=>"B-Powered-By Header", :version=>/^Bitrix SM\/([\d\.]+) \(/ },
|
|
|
|
]
|
|
|
|
end
|
|
|