mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
48 lines
1.4 KiB
Ruby
48 lines
1.4 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 "Mailman"
|
|
authors [
|
|
"Tonmoy Saikia",
|
|
"Brendan Coles <bcoles@gmail.com>", # v0.2 # 2011-03-05 # Updated version detection.
|
|
]
|
|
version "0.2"
|
|
description "Mailman is free software for managing electronic mail discussion and e-newsletter lists. WEB:http://www.gnu.org/software/mailman/index.html"
|
|
|
|
# Google results as at 2011-03-05 #
|
|
# 443 for inurl:mailman "Delivered by Mailman"
|
|
# 300 for inurl:mailman "Delivered by Mailman" inurl:edu
|
|
# 205 for inurl:mailman "Delivered by Mailman" inurl:gov
|
|
# 25 for inurl:mailman "Delivered by Mailman" inurl:mil
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'inurl:mailman "Delivered by Mailman"'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# GHDB Match
|
|
{ :certainty=>25, :ghdb=>'inurl:mailman "Delivered by Mailman"'},
|
|
|
|
# Mailing list listinfo links
|
|
{ :regexp=>/<td><a[^>]+href="[^"]+\/listinfo\/[^"]+"><strong>[^<]+<\/strong><\/a><\/td>/ },
|
|
|
|
# Version Detection # Delivered by logo
|
|
{ :version=>/<td><img src="[^"]+\/mailman.jpg" alt="Delivered by Mailman"[^>]+><br>version (\d.\d.[0-9a-z]+)/ },
|
|
|
|
# Version Detection # Delivered by text
|
|
{ :version=>/<td><a href="http:\/\/www.gnu.org\/software\/mailman\/index.html">Delivered by Mailman<br>version (\d.\d.[0-9a-z]+)<\/a>/ },
|
|
|
|
]
|
|
|
|
end
|
|
|