Sha256: d89cf2fc1c763935ab225e972bdf80a6f82d968d6d364ff7fd6f882be52ff6fe

Contents?: true

Size: 715 Bytes

Versions: 6

Compression:

Stored size: 715 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
##
# Version 0.2 #
# Fixed regex to return multiple frames
##
WhatWeb::Plugin.define "Frame" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2010-10-13
  @version = "0.2"
  @description = "This plugin detects instances of frame and iframe HTML elements."

  # Google results as at 2010-10-13 #
  # 213 for "your browser does not support frames"

  # Matches #
  @matches = [

    # Detect (i)frame
    { regexp: /<i?frame\s+/i }

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

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