forked from hashview/hashview-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
background_worker.rb
457 lines (393 loc) · 13.6 KB
/
background_worker.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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
require 'rest-client'
require 'benchmark'
$hashcatbinpath = JSON.parse(File.read('config/agent_config.json'))['hc_binary_path']
# one day, when I grow up...I'll be a ruby dev
# api calls
class Api
# obtain remote ip and port from local config
begin
options = JSON.parse(File.read('config/agent_config.json'))
@server = options['master_ip'] + ":" + options['port']
@uuid = options['uuid']
@hashcatbinpath = options['hc_binary_path']
rescue
"Error reading config/agent_config.json. Did you run rake db:provision_agent ???"
end
######### generic api handling of GET and POST request ###########
def self.get(url)
begin
response = RestClient::Request.execute(
:method => :get,
:url => url,
:cookies => {:agent_uuid => @uuid},
:verify_ssl => false
)
return response.body
rescue RestClient::Exception => e
puts e
return '{"error_msg": "api call failed"}'
rescue Errno::ECONNREFUSED => err
puts err
return '{"error_msg": "connection refused from remote host"}'
end
end
def self.post(url, payload)
begin
response = RestClient::Request.execute(
:method => :post,
:url => url,
:payload => payload.to_json,
:headers => {:accept => :json},
:cookies => {:agent_uuid => @uuid},
:verify_ssl => false
)
return response.body
rescue RestClient::Exception => e
puts e
return '{"error_msg": "api call failed"}'
rescue Errno::ECONNREFUSED => err
puts err
return '{"error_msg": "connection refused from remote host"}'
end
end
######### specific api functions #############
# post heartbeat is used when agent is working
def self.post_heartbeat(payload)
url = "https://#{@server}/v1/agents/#{@uuid}/heartbeat"
puts "HEARTBEETING"
return self.post(url, payload)
end
# change status of jobtask
def self.post_jobtask_status(jobtask_id, status)
url = "https://#{@server}/v1/jobtask/#{jobtask_id}/status"
payload = {}
payload['status'] = status
payload['jobtask_id'] = jobtask_id
return self.post(url, payload)
end
# change status of taskqueue item
def self.post_queue_status(taskqueue_id, status)
url = "https://#{@server}/v1/queue/#{taskqueue_id}/status"
payload = {}
payload['status'] = status
payload['taskqueue_id'] = taskqueue_id
payload['agent_uuid'] = @uuid
return self.post(url, payload)
end
# get next item in queue
def self.queue
url = "https://#{@server}/v1/queue"
return self.get(url)
end
# get specific item from queue (must already be assigned to agent)
def self.queue_by_id(id)
url = "https://#{@server}/v1/queue/#{id}"
return self.get(url)
end
# remove item from queue
def self.queue_remove(queue_id)
url = "https://#{@server}/v1/queue/#{queue_id}/remove"
return self.get(url)
end
# jobtask details
def self.jobtask(jobtask_id)
url = "https://#{@server}/v1/jobtask/#{jobtask_id}"
return self.get(url)
end
# job details
def self.job(job_id)
url = "https://#{@server}/v1/job/#{job_id}"
return self.get(url)
end
# download hashfile
def self.hashfile(jobtask_id, hashfile_id)
url = "https://#{@server}/v1/jobtask/#{jobtask_id}/hashfile/#{hashfile_id}"
return self.get(url)
end
# wordlists
def self.wordlists()
url = "https://#{@server}/v1/wordlist"
return self.get(url)
end
# download a wordlist
def self.wordlist(wordlist_id)
url = "https://#{@server}/v1/wordlist/#{wordlist_id}"
return self.get(url)
end
# save wordlist to disk
def self.save_wordlist(localpath='control/wordlists/thisisjustatest.txt')
File.write(localpath)
end
# upload crack file
def self.upload_crackfile(jobtask_id, crack_file, run_time=0)
url = "https://#{@server}/v1/jobtask/#{jobtask_id}/crackfile/upload"
puts "attempting upload #{crack_file}"
begin
request = RestClient::Request.new(
:method => :post,
:url => url,
:payload => {
:multipart => true,
:file => File.new(crack_file, 'rb'),
:runtime => run_time
},
:cookies => {:agent_uuid => @uuid},
:verify_ssl => false
)
response = request.execute
rescue RestClient::Exception => e
puts e
return '{error_msg: \'api call failed\'}'
end
end
def self.stats(hc_devices, hc_perfstats)
url = "https://#{@server}/v1/agents/#{@uuid}/stats"
payload = {}
payload['cpu_count'] = hc_devices['cpus']
payload['gpu_count'] = hc_devices['gpus']
payload['benchmark'] = hc_perfstats
puts payload
return self.post(url, payload)
end
end
# parses hashcat output
def hashcatParser(filepath)
status = {}
File.open(filepath).each_line do |line|
if line.start_with?('Time.Started.')
status['Time_Started'] = line.split(': ')[-1].strip
elsif line.start_with?('Time.Estimated.')
status['Time_Estimated'] = line.split(': ')[-1].strip
elsif line.start_with?('Recovered.')
status['Recovered'] = line.split(': ')[-1].strip
elsif line.start_with?('Input.Mode.')
status['Input_Mode'] = line.split(': ')[-1].strip
elsif line.start_with?('Speed.Dev.')
item = line.split(': ')
gpu = item[0].gsub!('Speed.Dev.', 'Speed Dev ').gsub!('.', '')
status[gpu] = line.split(': ')[-1].strip
elsif line.start_with?('HWMon.Dev.')
item = line.split('.: ')
gpu = item[0].gsub!('HWMon.Dev.', 'HWMon Dev ').gsub!('.', '')
status[gpu] = line.split('.: ')[-1].strip
end
end
return status
end
def hashcatDeviceParser(output)
gpus = 0
cpus = 0
output.each_line do |line|
if line.include?('Type')
if line.split(': ')[-1].strip.include?('CPU')
cpus += 1
elsif line.split(': ')[-1].strip.include?('GPU')
gpus += 1
end
end
end
puts "agent has #{cpus} CPUs"
puts "agent has #{gpus} GPUs"
return cpus, gpus
end
def hashcatBenchmarkParser(output)
max_speed = ""
output.each_line do |line|
if line.start_with?('Speed.Dev.#')
max_speed = line.split(': ')[-1].to_s
end
end
puts "agent max cracking speed (single NTLM hash):\n #{max_speed}"
return max_speed
end
def getHashcatPid
pid = `ps -ef | grep hashcat | grep hc_cracked_ | grep -v 'ps -ef' | grep -v 'sh \-c' | awk '{print $2}'`
return pid.chomp
end
# replace the placeholder binary path with the user defined path to hashcat binary
def replaceHashcatBinPath(cmd)
cmd = cmd.gsub('@HASHCATBINPATH@', $hashcatbinpath)
return cmd
end
# this function compares the agents local wordlists to the master server's wordlists
# if this agent is missing wordlists it will download them before taking jobs from queue.
def sync_wordlists()
localwordlists = []
wordlists = Api.wordlists()
wordlists = JSON.parse(wordlists)
if wordlists['type'] == 'Error'
return false
end
# get our local list of wordlists
localchecksums = Dir["control/wordlists/*.checksum"]
unless localchecksums.empty?
localchecksums.each do |checksumfile|
# do nasty hack to get checksum from filename
checksum = checksumfile.split('/')[2].split('.checksum')[0]
localwordlists << checksum
end
end
wordlists['wordlists'].each do |wl|
# if our remote wordlists dont match our loccal checksums, than download wordlist by id
unless localwordlists.include? wl['checksum']
puts "you need to download #{wl['name']} = #{wl['checksum']}"
wordlist = Api.wordlist(wl['id'])
File.open(wl['path'], 'wb') do |f|
# do not use f.puts - we want << (or .write i think) b/c it writes with no formatting
# this writes without modifying our newlines and thus the checksum of the file will be correct
f << wordlist
end
# generate checksums for newly downloaded file
checksum = Digest::SHA2.hexdigest(File.read(wl['path']))
File.open("control/wordlists/#{checksum}" + ".checksum", 'w') do |f|
f.puts "#{checksum} #{wl['path'].split("/")[-1]}"
end
end
end
end
# this function provides the master server with basic information about the agent
def hc_benchmark()
cmd = $hashcatbinpath + ' -b -m 1000'
hc_perfstats = `#{cmd}`
return hc_perfstats
end
def hc_device_list()
cmd = $hashcatbinpath + ' -I'
hc_devices = `#{cmd}`
return hc_devices
end
# is hashcat working? if so, how fast are you? provide basic information to master server
hc_cpus, hc_gpus = hashcatDeviceParser(hc_device_list)
hc_devices = {}
hc_devices['gpus'] = hc_gpus
hc_devices['cpus'] = hc_cpus
hc_perfstats = hashcatBenchmarkParser(hc_benchmark)
#Api.stats(hc_devices, hc_perfstats)
# download latest wordlists everytime we start
# TODO reenable once you can detect whether we are authorized or not
#sync_wordlists
while(1)
sleep(4)
# find pid
pid = getHashcatPid
# wait a bit to avoid race condition
if !pid.nil? and File.exist?('control/tmp/agent_current_task.txt')
sleep(10)
pid = getHashcatPid
end
# ok either do nothing or start working
if pid.nil?
puts "AGENT IS WORKING RIGHT NOW"
else
# if we have taskqueue tmp file locally, delete it
File.delete('control/tmp/agent_current_task.txt') if File.exist?('control/tmp/agent_current_task.txt')
# send heartbeat without hashcat status
payload = {}
payload['agent_status'] = 'Idle'
payload['hc_benchmark'] = 'example data'
payload['hc_status'] = ''
heartbeat = Api.post_heartbeat(payload)
puts '======================================'
heartbeat = JSON.parse(heartbeat)
puts heartbeat
# upon initial authorization sync wordlists
if heartbeat['type'] == 'message' and heartbeat['msg'] == 'Authorized'
payload['agent_status'] = 'Syncing'
Api.post_heartbeat(payload)
sync_wordlists
Api.stats(hc_devices, hc_perfstats)
end
if heartbeat['type'] == 'message' and heartbeat['msg'] == 'START'
jdata = Api.queue_by_id(heartbeat['task_id'])
jdata = JSON.parse(jdata)
# we must have an item from the queue before we start processing
if jdata['type'] != 'Error'
# save task data to tmp to signify we are working
File.open('control/tmp/agent_current_task.txt', 'w') do |f|
f.write(jdata)
end
# take queue item and set status to running
Api.post_queue_status(jdata['id'], 'Running')
# set the jobtask to running
Api.post_jobtask_status(jdata['jobtask_id'], 'Running')
# we need job details for hashfile id
job = Api.job(jdata['job_id'])
job = JSON.parse(job)
# we need to get task_id which is stored in jobtasks
jobtask = JSON.parse(Api.jobtask(jdata['jobtask_id']))
# we dont need to download the wordlist b/c we are local agent, we already have them
# wordlists Api.wordlists()
# puts wordlists
#puts Api.wordlist()
# generate hashfile via api
hashes = Api.hashfile(jobtask['id'], job['hashfile_id'])
# write hashes to local filesystem
hashfile = "control/hashes/hashfile_#{jdata['job_id']}_#{jobtask['task_id']}.txt"
puts hashfile
File.open(hashfile, 'w') do |f|
f.puts hashes
end
# get our hashcat command and sub out the binary path
cmd = jdata['command']
cmd = replaceHashcatBinPath(cmd)
puts cmd
# this variable is used to determine if the job was canceled
@canceled = false
# # thread off hashcat
thread1 = Thread.new {
@run_time = Benchmark.realtime do
system(cmd)
end
}
@jobid = jdata['job_id']
# # continue to hearbeat while running job. look for a stop command
catch :mainloop do
while thread1.status do
sleep 4
puts "WORKING IN THREAD"
puts "WORKING ON ID: #{jdata['id']}"
payload = {}
payload['agent_status'] = 'Working'
payload['agent_task'] = jdata['id']
# provide hashcat status with hearbeat
payload['hc_status'] = hashcatParser("control/outfiles/hcoutput_#{@jobid}.txt")
heartbeat = Api.post_heartbeat(payload)
heartbeat = JSON.parse(heartbeat)
if heartbeat['msg'] == 'Canceled'
@canceled = true
Thread.kill(thread1)
# for some reason hashcat doesnt always get killed when terminating the thread.
# manually kill it to be certain
pid = getHashcatPid
if pid
`kill -9 #{pid}`
end
throw :mainloop
end
end
end
# set jobtask status to importing
# commenting out now that we are chunking
Api.post_queue_status(jdata['id'], 'Importing')
# upload results
crack_file = 'control/outfiles/hc_cracked_' + jdata['job_id'].to_s + '_' + jobtask['task_id'].to_s + '.txt'
if File.exist?(crack_file)
Api.upload_crackfile(jobtask['id'], crack_file, @run_time)
else
puts "No successful cracks for this task. Skipping upload."
end
# remove task data tmp file
File.delete('control/tmp/agent_current_task.txt') if File.exist?('control/tmp/agent_current_task.txt')
# change status to completed for jobtask
# commenting out now that we are chunking
# if @canceled
# Api.post_jobtask_status(jdata['jobtask_id'], 'Canceled')
# else
# Api.post_jobtask_status(jdata['jobtask_id'], 'Completed')
# end
# set taskqueue item to complete and remove from queue
Api.post_queue_status(jdata['id'], 'Completed')
end
end
end
end