Sha256: a6b3141eaebbcdc34e61669ed08702d6e3fbfbc9133932b1ace66627d68aff0e

Contents?: true

Size: 1.86 KB

Versions: 6

Compression:

Stored size: 1.86 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 # 2016-04-23 # Andrew Horton
# Moved patterns from passive function to matches[]
##
WhatWeb::Plugin.define "O2Micro-Firewall" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2011-03-18
  @version = "0.2"
  @description = "SifoWorks is a multi-function security gateway system that is based on O2Micro's powerful ASIC design. Apart from its firewall capabilities, SifoWorks is also equipped with several industry-leading security features such as: activating NAT and policy routing concurrently while maintaining line speed processing capability; effective log system; powerful network security mechanism, protection against ARP attacks, content filtering, IDP, DoS / DDoS protection, P2P / IM control, etc."
  @website = "http://www.o2security.com/product/productclass.php?classfiy_sn=73"

  # ShodanHQ results as at 2011-03-18 #
  # 95 for CGISESSID 01010011111100000000111110010011
  # 41 for O2micro 01010011111100000000111110010011
  # 54 for Firewall/2.3.33
  # 54 for Firewall 01010011111100000000111110010011
  # 54 for Firewall CGISESSID

  @matches = [

    # HTTP Server Header
    { regexp: /^O2micro/, search: "headers[server]" },

    # Version Detection # HTTP Server Header
    { version: /^(O2micro|Firewall)\/([\d\.]+)/, offset: 1, search: "headers[server]" },

  ]

  # Passive #
  def passive(target)
    m = []

    # HTTP Server Header and Cookie
    if target.headers["set-cookie"] =~ /^CGISESSID=01010011111100000000111110010011;/ && target.headers["server"] =~ /^(O2micro|Firewall)/
      m << { name: "HTTP Server Header and Cookie" }
    end

    # Return passive matches
    m
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
simple_whatweb-0.4.1 lib/whatweb/plugins/o2micro-firewall.rb
simple_whatweb-0.4.0 lib/whatweb/plugins/o2micro-firewall.rb
simple_whatweb-0.3.0 lib/whatweb/plugins/o2micro-firewall.rb
simple_whatweb-0.2.1 lib/whatweb/plugins/o2micro-firewall.rb
simple_whatweb-0.2.0 lib/whatweb/plugins/o2micro-firewall.rb
simple_whatweb-0.1.0 lib/whatweb/plugins/o2micro-firewall.rb