File: level1-router.rb

package info (click to toggle)
whatweb 0.4.9-2
  • links: PTS
  • area: main
  • in suites: buster
  • size: 21,188 kB
  • sloc: ruby: 33,652; sh: 614; makefile: 42
file content (41 lines) | stat: -rw-r--r-- 1,057 bytes parent folder | download | duplicates (2)
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
##
# 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
##
Plugin.define "Level1-Router" do
author "Brendan Coles <bcoles@gmail.com>" # 2012-02-12
version "0.1"
description "Level1 Router"
website "http://uk.level1.com/"

# Google results as at 2012-02-12 #
# 3 for intitle:"WBR" intitle:"Wireless Broadband NAT Router Web-Console"

# Dorks #
dorks [
'intitle:"WBR" intitle:"Wireless Broadband NAT Router Web-Console"'
]



# Matches #
matches [

# Frameset # Title # Model Detection
{ :model=>/<TITLE>(WBR-[^\s]+) Wireless Broadband NAT Router Web-Console<\/TITLE>/ },

# /status.htm
{ :url=>"/status.htm", :string=>/<!--TR><TD>MAC Address<\/TD><TD ALIGN=CENTER COLSPAN=2>([A-F\d\-]{17})<\/TD><\/TR-->/ },

# /bg_logo1.jpg
{ :url=>"/bg_logo1.jpg", :md5=>"b78c9744264dadba05ba0d00d62a97b6" },

# HTML Comment
{ :certainty=>25, :text=>'<!---CAS:0003--><HTML>' },

]

end