Sha256: 05c54e492e6063c645fce0d7da35c070b3957bbc1f9660dd352465b49efe745e

Contents?: true

Size: 1.3 KB

Versions: 6

Compression:

Stored size: 1.3 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-21 # Andrew Horton
# Moved patterns from passive function to matches[]
# added website parameter
##
WhatWeb::Plugin.define "MacHTTP" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2011-06-04
  @version = "0.2"
  @description = "MacHTTP is a webserver designed to run on Mac OS versions 7.x through 9.x. It was written by software developer Chuck Shotton and was originally shareware; it is now available in source code form from SourceForge.net under the Perl Artistic License. It is still used on some older Macintosh hardware. It was later commercialized as WebSTAR, sold originally by StarNine and later bought by Quarterdeck Software. - More Info: http://en.wikipedia.org/wiki/MacHTTP"
  @website = "http://www.machttp.org/downloads/machttp/"

  # ShodanHQ results as at 2011-06-04 #
  # 40 for machttp

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

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

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

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