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 55
|
##
# 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 # 2011-03-06 #
# Updated OS detection
##
Plugin.define "RackCorp-CDN" do
author "Brendan Coles <bcoles@gmail.com>" # 2011-01-30
version "0.2"
description "RackCorp Content Delivery Network - RackCorp is the preferred hosting provider for critical websites around the world. They specialise in high-uptime, high-reliability, and fast hosting services. Their systems serve some very large content delivery networks (CDN's), allowing them to serve Over a Petabyte of data every month globally from a variety of locations including Australia, US, UK, Germany, and Canada. - homepage: http://www.rackcorp.com/"
# ShodanHQ results as at 2011-01-30 #
# 50 for rackcorpcdn
# Australia 21 # United States 14 # Germany 10 # United Kingdom 4 # India 1 #
# Examples #
examples %w|
67.19.61.116
78.129.148.29
124.158.19.20
124.158.19.21
124.158.19.26
124.158.19.27
124.158.19.28
124.158.19.29
124.158.19.30
124.158.19.42
124.158.19.62
124.158.19.72
124.158.19.74
124.158.19.75
124.158.19.91
188.72.255.43
203.145.50.164
207.44.231.225
|
# Passive #
def passive
m=[]
# HTTP Server Header # Server and OS Detection #
# Web servers are Apache or Nginx # OS is Linux
# As per : http://blog.rackcorp.com/?p=31
m << { :version=>@headers["server"].scan(/^[\s]*rackcorpcdn\/([\d\.]{3,6})/), :string=>"Apache or Nginx", :os=>"Linux" } if @headers["server"] =~ /^[\s]*rackcorpcdn\/[\d\.]{3,6}/
# Return passive matches
m
end
end
|