Sha256: 6f5d8429ca05c160280f63fefa9357dce6a5c2f5ecb5069c336d90e80933cfe3

Contents?: true

Size: 1.13 KB

Versions: 6

Compression:

Stored size: 1.13 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
##
WhatWeb::Plugin.define "Sputnik" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2011-04-21
  @version = "0.1"
  @description = "Sputnik - An Extensible Wiki Engine in Lua - Sputnik is a content management system designed for extensibility. It works as a wiki out of the box, but can be extended into other things."
  @website = "http://sputnik.freewisdom.org/"

  # 128 for "Powered by Sputnik"

  # Dorks #
  @dorks = [
    '"Powered by Sputnik"'
  ]

  # Matches #
  @matches = [

    # Powered by text
    { text: "Powered by <a href='http://sputnik.freewisdom.org/'>Sputnik</a>" },
    { text: "Powered by <a href='http://spu.tnik.org/'>Sputnik</a>" },

  ]

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

    # Sputnik Cookie
    m << { name: "Sputnik Cookie" } if target.headers["set-cookie"] =~ /^Sputnik_[a-z\d]{32}=/

    # 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/sputnik.rb
simple_whatweb-0.4.0 lib/whatweb/plugins/sputnik.rb
simple_whatweb-0.3.0 lib/whatweb/plugins/sputnik.rb
simple_whatweb-0.2.1 lib/whatweb/plugins/sputnik.rb
simple_whatweb-0.2.0 lib/whatweb/plugins/sputnik.rb
simple_whatweb-0.1.0 lib/whatweb/plugins/sputnik.rb