mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
61 lines
1.7 KiB
Ruby
61 lines
1.7 KiB
Ruby
##
|
|
# 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.
|
|
# https://www.morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "Bomgar"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2011-05-31
|
|
]
|
|
version "0.1"
|
|
description "Bomgar simplifies support by letting technicians control remote computers, servers, smartphones and network devices over the internet or network. With Bomgar, a support rep can see what customers see or control their computers for support."
|
|
website "http://www.bomgar.com/remotedesktopaccess/"
|
|
|
|
# ShodanHQ results as at 2011-05-31 #
|
|
# 3,453 for Bomgar
|
|
|
|
# Google results as at 2012-01-29 #
|
|
# 590 for "Bomgar Corporation. Redistribution Prohibited. All Rights Reserved. " "Access Software for Help Desk Support"
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'"Bomgar Corporation. Redistribution Prohibited. All Rights Reserved. " "Access Software for Help Desk Support"'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# Powered by logo
|
|
{ :text=>'<img src="/content/poweredby.jpg" alt="Remote Support by BOMGAR"/>' },
|
|
|
|
# Aggressive # /content/poweredby.jpg
|
|
{ :url=>"/content/poweredby.jpg", :md5=>"11a7db4d9e6f72253c60a3f649c5a157" },
|
|
|
|
]
|
|
|
|
# Passive #
|
|
passive do
|
|
m=[]
|
|
|
|
# HTTP Server Header
|
|
if @headers["server"] =~ /^Bomgar$/
|
|
|
|
m << { :name=>"HTTP Server Header" }
|
|
|
|
# Version Detection # HTML Comment
|
|
m << { :version=>@body.scan(/<!--Product Version: ([\d\.]+)-->/) } if @body =~ /<!--Product Version: ([\d\.]+)-->/
|
|
m << { :version=>@body.scan(/<!--Bomgar Version: ([\d\.]+)-->/) } if @body =~ /<!--Bomgar Version: ([\d\.]+)-->/
|
|
|
|
end
|
|
|
|
# Return passive matches
|
|
m
|
|
end
|
|
|
|
end
|
|
|