Sha256: 2a407b9639c1f9ca47370dffebb14d6e535ae669ccd3c88fcac5a56745664e15

Contents?: true

Size: 1.16 KB

Versions: 6

Compression:

Stored size: 1.16 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-20 # Andrew Horton
# Moved patterns from passive function to matches[]
##
WhatWeb::Plugin.define "Karrigell" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2011-05-30
  @version = "0.2"
  @description = "Karrigell is a flexible Python web framework, with a clear and intuitive syntax. It is independent from any database, ORM or templating engine, and lets the programmer choose between a variety of coding styles."
  @website = "http://karrigell.sourceforge.net/en/index.html"

  # ShodanHQ results as at 2011-05-30 #
  # 69 for Karrigell
  #  6 for Karrigell -Python

  @matches = [

    { regexp: /^Karrigell/, search: "headers[server]" },

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

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

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

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