File: OpenSSL.rb

package info (click to toggle)
whatweb 0.4.8~git20120606-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 7,956 kB
  • sloc: ruby: 53,738; sh: 577; makefile: 34
file content (39 lines) | stat: -rw-r--r-- 1,125 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
##
# 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 "OpenSSL" do
author "Brendan Coles <bcoles@gmail.com>" # 2010-10-25
version "0.1"
description "The OpenSSL Project is a collaborative effort to develop a robust, commercial-grade, full-featured, and Open Source toolkit implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well as a full-strength general purpose cryptography library. - homepage: http://www.openssl.org/"

# 2159865 ShodanHQ results for "Server: OpenSSL"
examples %w|
209.162.204.63
165.106.1.68
199.236.118.36
24.131.115.87
81.92.160.211
174.120.221.119
199.237.207.103
212.159.99.18
74.80.179.75
66.147.225.92
67.214.171.147
|

# HTTP Header
def passive
	m=[]

	# Version detection
	m << { :version=>@headers["server"].scan(/[^\r^\n]*OpenSSL\/([^\s^\r^\n]+)/).flatten } if @headers["server"].to_s =~ /[^\r^\n]*OpenSSL\/([^\s^\r^\n]+)/

	m

end

end