Sha256: 0e43116e5adc47e03b8f7ab6f2d466fc65a922b2f5260e62dc1a441e05af88a1
Contents?: true
Size: 1.17 KB
Versions: 6
Compression:
Stored size: 1.17 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 "x-pingback" do @author = "Brendan Coles <bcoles@gmail.com>" # 2010-10-28 @version = "0.1" @description = "A pingback is one of three types of linkbacks, methods for Web authors to request notification when somebody links to one of their documents. This enables authors to keep track of who is linking to, or referring to their articles. Some weblog software, such as Movable Type, Serendipity, WordPress and Telligent Community, support automatic pingbacks where all the links in a published article can be pinged when the article is published. - More info: http://en.wikipedia.org/wiki/Pingback" # ShodanHQ results as at 2010-10-28 # # 111,664 ShodanHQ results for x-pingback # Passive # def passive(target) m = [] # X-Pingback HTTP Header m << { string: target.headers["x-pingback"] } unless target.headers["x-pingback"].nil? # Return passive matches m end end
Version data entries
6 entries across 6 versions & 1 rubygems