File: opencms.rb

package info (click to toggle)
whatweb 0.4.8~git20141014-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 8,456 kB
  • ctags: 706
  • sloc: ruby: 31,354; sh: 614; makefile: 39
file content (54 lines) | stat: -rw-r--r-- 1,428 bytes parent folder | download
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
50
51
52
53
54
##
# 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-03-21 # Brendan Coles <bcoles@gmail.com>
# Updated regex
##
# Version 0.2 # 2011-03-06 # Andrew Horton
# fixed examples= bug
##
Plugin.define "OpenCms" do
author "Emilio Casbas" #mostly
version "0.3"
description "OpenCms, professional and easy to use CMS. - Homepage: http://www.opencms.org/"

# ShodanHQ results as at 2011-03-21 #
# 528 for opencms



# Matches #
matches [

# Meta Generator
{ :regexp=>/<meta name="generator"[^>]+content="OpenCms"( \/)?>/ },

# Version Detection # Meta Generator
{ :version=>/<meta name="generator"[^>]+content="Opencms version ([\d\.]+)"( \/)?>/ },

# Relative link or img tag # /(opencms|export)/(sites|system)/
{ :certainty=>75, :regexp=>/<(link|img)[^>]+(href|src)="[^"^:]*\/(opencms|export)\/(sites|system)\/[^"]+"[^>]*>/ },

# Relative link or img tag # /opencms/
{ :certainty=>25, :regexp=>/<(link|img)[^>]+(href|src)="[^"^:]*\/opencms\/[^"]+"[^>]*>/ },

]

# Passive #
def passive
	m=[]

	# Version Detection # HTTP Server Header
	m << {:name=>"HTTP Server String", :version=>@headers["server"].scan(/^OpenCms\/([a-z\d\.]+)/) } if @headers["server"] =~ /^OpenCms\/[a-z\d\.]+/

	# Return passive matches
	m
end

end