File: meta-refresh.rb

package info (click to toggle)
whatweb 0.4.8~git20161009-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 8,588 kB
  • ctags: 540
  • sloc: ruby: 33,376; sh: 612; makefile: 42
file content (49 lines) | stat: -rw-r--r-- 1,091 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
##
# 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.3 # 2011-01-31 #
# Updated regex
##
# Version 0.2
# renamed from Meta-Refresh to Meta-Refresh-Redirect
# Expanded description
##
Plugin.define "Meta-Refresh-Redirect" do
author "Brendan Coles <bcoles@gmail.com>" # 2010-08-26
version "0.3"
description "Meta refresh tag is a deprecated URL element that can be
used to optionally wait x seconds before reloading the current page or loading a
new page. More info: https://secure.wikimedia.org/wikipedia/en/wiki/Meta_refresh"

# Google results as at 2011-01-31 #
# 2,510,000 for "you will be redirected in * seconds"



# Matches #
matches [

# Extract URL from Meta Tag


]

def passive

	x=@body.scan(Target::meta_refresh_regex).flatten

	unless x.empty?
		meta_refresh= x.first
		meta_refresh = decode_html_entities(meta_refresh)

		[{:string=>meta_refresh}]
	else
		[]
	end
end

end