mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
39 lines
1.1 KiB
Ruby
39 lines
1.1 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 "Mercurial"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2011-08-16
|
|
]
|
|
version "0.1"
|
|
description "Mercurial is a free, distributed source control management tool."
|
|
website "http://mercurial.selenic.com/"
|
|
|
|
# Google results as at 2011-08-16 #
|
|
# 462 for Mercurial summary shortlog changelog graph tags branches files changeset bz2 zip gz
|
|
# 239 for Mercurial summary shortlog changelog graph tags branches files changeset bz2 zip gz inurl:shortlog
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'Mercurial summary shortlog changelog graph tags branches files changeset bz2 zip gz'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
{ :text=>'<a href="http://mercurial.selenic.com/" title="Mercurial" style="float: right;">Mercurial</a>' },
|
|
|
|
# Powered by link
|
|
{ :regexp=>/<div id="powered-by">[\s]+<p><a href="http:\/\/mercurial\.selenic\.com\/" title="Mercurial">/ },
|
|
|
|
]
|
|
|
|
end
|
|
|