Sha256: f013d579cc2dbd0c1b59fa55c9e4594fc2d45f7d419a69ae8ee4839bd4dde278

Contents?: true

Size: 929 Bytes

Versions: 6

Compression:

Stored size: 929 Bytes

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-21 # Andrew Horton
# Moved patterns from passive function to matches[]
##
WhatWeb::Plugin.define "Microsoft-WinCE" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2011-03-13
  @version = "0.2"
  @description = "Microsoft Windows CE HTTP Server"
  @website = "http://msdn.microsoft.com/en-us/library/ms834461.aspx"

  # ShodanHQ results as at 2011-03-13 #
  # 18,324 for Microsoft-WinCE

  @matches = [
    # HTTP Server Header
    { regexp: /^Microsoft-WinCE/, search: "headers[server]" },
    # Version Detection # HTTP Server Header
    { version: /^Microsoft-WinCE\/([^\s^\r^\n]+)$/, search: "headers[server]" },

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

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