Sha256: c17406239b5de51180009a685185a94cc5a2d0ee87d8f924db75f88b37781a66

Contents?: true

Size: 1.83 KB

Versions: 6

Compression:

Stored size: 1.83 KB

Contents

# frozen_string_literal: true

##
# 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
##
# Version 0.2 # 2011-11-04 #
# Updated matches to use :search instead of passive[]
##
WhatWeb::Plugin.define "Bitrix-Site-Manager" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2011-05-04
  @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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
simple_whatweb-0.4.1 lib/whatweb/plugins/bitrix-site-manager.rb
simple_whatweb-0.4.0 lib/whatweb/plugins/bitrix-site-manager.rb
simple_whatweb-0.3.0 lib/whatweb/plugins/bitrix-site-manager.rb
simple_whatweb-0.2.1 lib/whatweb/plugins/bitrix-site-manager.rb
simple_whatweb-0.2.0 lib/whatweb/plugins/bitrix-site-manager.rb
simple_whatweb-0.1.0 lib/whatweb/plugins/bitrix-site-manager.rb