Sha256: f84cb4a15c454185e77642ff8ce1c4abaee2d0eeb0eead68dae61d80aede5652

Contents?: true

Size: 803 Bytes

Versions: 6

Compression:

Stored size: 803 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
##
WhatWeb::Plugin.define "CL-HTTP" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2011-08-15
  @version = "0.1"
  @description = "Common Lisp Hypermedia Server (CL-HTTP) - HTTP server"
  @website = "http://www.cl-http.org:8001/cl-http/"

  # ShodanHQ results as at 2011-08-15 #
  # 25 for CL-HTTP

  # Matches #
  @matches = [

    # Version Detection # HTTP Server Header
    { search: "headers[server]", version: /^CL-HTTP\/([^\s]+)/ },
    { search: "headers[server]", string: /^CL-HTTP\/[^\s]+ \(([^\)]+)\)/ },

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

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