# 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 " # 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 Sputnik" }, { text: "Powered by Sputnik" }, ] # 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