metasploit-framework/modules/auxiliary/scanner/http/git_scanner.rb

114 lines
3.3 KiB
Ruby
Raw Normal View History

2015-11-19 09:16:32 +00:00
##
2017-07-24 13:26:21 +00:00
# This module requires Metasploit: https://metasploit.com/download
2015-11-19 09:16:32 +00:00
# Current source: https://github.com/rapid7/metasploit-framework
##
2016-03-08 13:02:44 +00:00
class MetasploitModule < Msf::Auxiliary
2015-11-19 09:16:32 +00:00
include Msf::Exploit::Remote::HttpClient
include Msf::Auxiliary::Scanner
include Msf::Auxiliary::Report
def initialize
super(
'Name' => 'HTTP Git Scanner',
2015-11-24 16:50:21 +00:00
'Description' => %q(
2015-11-25 01:57:56 +00:00
This module can detect situations where there may be information
disclosure vulnerabilities that occur when a Git repository is made
available over HTTP.
2015-11-24 17:52:07 +00:00
),
'Author' => [
'Nixawk', # module developer
'Jon Hart <jon_hart[at]rapid7.com>' # improved metasploit module
],
2015-11-19 09:16:32 +00:00
'References' => [
['URL', 'https://github.com/git/git/blob/master/Documentation/technical/index-format.txt']
],
'License' => MSF_LICENSE
)
register_options(
[
OptString.new('TARGETURI', [true, 'The test path to .git directory', '/.git/']),
OptBool.new('GIT_INDEX', [true, 'Check index file in .git directory', true]),
2015-11-24 16:57:19 +00:00
OptBool.new('GIT_CONFIG', [true, 'Check config file in .git directory', true]),
OptString.new('UserAgent', [ true, 'The HTTP User-Agent sent in the request', 'git/1.7.9.5' ])
]
)
2015-11-19 09:16:32 +00:00
end
def req(filename)
send_request_cgi(
'uri' => normalize_uri(target_uri, filename)
)
2015-11-19 09:16:32 +00:00
end
def git_index_parse(resp)
return if resp.blank? || resp.length < 12 # A 12-byte header
signature = resp[0, 4]
return unless signature == 'DIRC'
2015-11-19 09:16:32 +00:00
version = resp[4, 4].unpack('N')[0].to_i
entries_count = resp[8, 4].unpack('N')[0].to_i
2015-11-19 09:16:32 +00:00
return unless version && entries_count
2015-11-24 17:52:07 +00:00
[version, entries_count]
2015-11-19 09:16:32 +00:00
end
def git_index
res = req('index')
2015-11-24 17:43:05 +00:00
index_uri = git_uri('index')
unless res
vprint_error("#{index_uri} - No response received")
return
end
2015-11-24 17:43:05 +00:00
vprint_status("#{index_uri} - HTTP/#{res.proto} #{res.code} #{res.message}")
2015-11-24 17:52:07 +00:00
return unless res.code == 200
version, count = git_index_parse(res.body)
return unless version && count
print_good("#{full_uri} - git repo (version #{version}) found with #{count} files")
report_note(
host: rhost,
port: rport,
proto: 'tcp',
type: 'git_index_disclosure',
data: { uri: index_uri, version: version, entries_count: count }
)
2015-11-19 09:16:32 +00:00
end
def git_config
res = req('config')
2015-11-24 17:43:05 +00:00
config_uri = git_uri('config')
unless res
vprint_error("#{config_uri} - No response received")
return
end
2015-11-24 17:43:05 +00:00
vprint_status("#{config_uri} - HTTP/#{res.proto} #{res.code} #{res.message}")
return unless res.code == 200 && res.body =~ /\[(?:branch|core|remote)\]/
2015-11-24 17:43:05 +00:00
print_good("#{config_uri} - git config file found")
report_note(
host: rhost,
port: rport,
proto: 'tcp',
2015-11-24 17:52:07 +00:00
type: 'git_config_disclosure',
data: { uri: config_uri }
)
2015-11-24 17:52:07 +00:00
path = store_loot('config', 'text/plain', rhost, res.body, config_uri)
print_good("Saved file to: #{path}")
end
2015-11-24 17:43:05 +00:00
def git_uri(path)
2015-11-24 17:52:07 +00:00
full_uri =~ %r{/$} ? "#{full_uri}#{path}" : "#{full_uri}/#{path}"
2015-11-24 17:43:05 +00:00
end
def run_host(_target_host)
vprint_status("#{full_uri} - scanning git disclosure")
git_index if datastore['GIT_INDEX']
git_config if datastore['GIT_CONFIG']
2015-11-19 09:16:32 +00:00
end
end