mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
46 lines
1.3 KiB
Ruby
46 lines
1.3 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://morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "OSSIM"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2011-04-15
|
|
]
|
|
version "0.1"
|
|
description "AlienVault OSSIM (Open Source Security Information Management). Its goal is to provide a comprehensive compilation of tools which, when working together, grant network/security administrators with a detailed view over each and every aspect of his or her networks, hosts, physical access devices, server, etc."
|
|
website "http://alienvault.com/community"
|
|
|
|
# ShodanHQ results as at 2011-04-15 #
|
|
# 152 for OSSIM
|
|
|
|
# Google results as at 2011-04-15 #
|
|
# 5 for intitle:"AlienVault - Open Source SIM" Maximized User Password
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'intitle:"AlienVault - Open Source SIM" Maximized User Password'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# Default Title
|
|
{ :text=>'<title> AlienVault - Open Source SIM </title>' },
|
|
|
|
# Table HTML
|
|
{ :text=>'<table align="center" style="padding:1px;background-color:#f2f2f2;border-color:#aaaaaa" class=nobborder><tr><td class="nobborder">' },
|
|
|
|
# Table HTML
|
|
{ :text=>'<table align="center" cellspacing=4 cellpadding=2 style="background-color:#eeeeee;border-color:#dedede">' },
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|