mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
42 lines
1.2 KiB
Ruby
42 lines
1.2 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 "Gitorious"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2011-08-13
|
|
]
|
|
version "0.1"
|
|
description "Gitorious provides open source infrastructure for hosting open source projects that use Git - Requires: Ruby."
|
|
website "https://gitorious.org/gitorious"
|
|
|
|
# ShodanHQ results as at 2011-08-13 #
|
|
# 79 for _gitorious_sess
|
|
|
|
# Google results as at 2011-08-13 #
|
|
# 103 for intitle:"Gitorious" "Gitorious is a great way of collaborating on distributed open source projects" "About Gitorious" "Dashboard" "Login"
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'intitle:"Gitorious" "Gitorious is a great way of collaborating on distributed open source projects" "About Gitorious" "Dashboard" "Login"'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# Powered by footer
|
|
{ :regexp=>/<a href="http:\/\/gitorious\.org"><img alt="Poweredby" src="\/images\/\.\.\/img\/poweredby\.png\?[\d]+" title="Powered by Gitorious" \/><\/a><\/div>/ },
|
|
|
|
# _gitorious_sess Cookie
|
|
{ :search=>"headers[set-cookie]", :regexp=>/_gitorious_sess=[^-]+--[^;]+; domain=/ },
|
|
|
|
]
|
|
|
|
end
|
|
|