File: Gitweb.rb

package info (click to toggle)
whatweb 0.4.8~git20120606-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 7,956 kB
  • sloc: ruby: 53,738; sh: 577; makefile: 34
file content (79 lines) | stat: -rw-r--r-- 2,377 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
##
# 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.
# http://www.morningstarsecurity.com/research/whatweb
##
Plugin.define "Gitweb" do
author "Brendan Coles <bcoles@gmail.com>" # 2011-01-24
version "0.1"
description "Gitweb is a Git web interface, the one working on http://www.kernel.org/git/. It is written in Perl, and can be used as a CGI script, or as a mod_perl legacy script (run by ModPerl::Registry handler). It allows browsing a git repository (or a set of git repositories) using a web browser. - homepage: http://git.or.cz/gitwiki/Gitweb"

# Google results as at 2011-01-24 #
# 228 results for "Project" "Description" "Owner" "Last Change" "Search" "summary" "shortlog" "log" "tree" "TXT" "OPML" intitle:git

# Dorks #
dorks [
'"Project" "Description" "Owner" "Last Change" "Search" "summary" "shortlog" "log" "tree" "TXT" "OPML" intitle:git'
]

# Examples #
examples %w|
gitweb.samba.org
gitweb.kde.org
gitweb.scilab.org
git.linaro.org
git.xilinx.com
git.openfabrics.org
git.pioto.org
git.secretlab.ca
git.joshuawise.com
git.naquadah.org
gitweb.dolmen-project.org
git.koha-community.org
git.linux-mips.org
gamma.guegue.com.ni
www.gitling.com
www.mathiasdm.com/gitweb
git.biterror.net
git.obeliks.de
m2m-embedded.pl/git/
88.198.59.165/gitweb/
git.doucette.cc
www.mathiasdm.com/gitweb
git.azaqiel.org
www.nikon-workshop.de
tavernenland.nexos-it.de
209.40.201.211
9ch.in/git/
git.sfinx.od.ua
kernel.ubuntu.com/git
code.th-h.de
git.overlays.gentoo.org/gitweb/
source.djpig.de/git/
git.muteddisk.com
hostap.epitest.fi/gitweb/gitweb.cgi
git.websterwood.com
www.mutabah.net/cgi-bin/gitweb.cgi
rtime.felk.cvut.cz/gitweb/
|

# Matches #
matches [

	# Version Detection # Meta Generator
	{ :version=>/<meta name="generator" content="gitweb\/([\d\.a-z]{1,25}) git\/[\d\.a-z]{1,25}"\/>/ },

	# Version Detection # HTML Comment
	{ :version=>/<!\-\- git web interface version ([\d\.a-z]{1,25}), \(C\) 2005-2006, Kay Sievers <kay.sievers@vrfy.org>, Christian Gierke \-\->/ },

	# Git Version Detection # HTML Comment
	{ :module=>/<!\-\- git core binaries version ([\d\.a-z]{1,25}) \-\->/ },

	# Git Version Detection # Meta Generator
	{ :module=>/<meta name="generator" content="gitweb\/[\d\.a-z]{1,25} git\/([\d\.a-z]{1,25})"\/>/ },

]

end