This repository has been archived by the owner on Oct 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
background_worker.rb
601 lines (524 loc) · 18.2 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
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
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,
:timeout => 90000000,
: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, :content_type => 'application/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
# task details
def self.task(task_id)
url = "https://#{@server}/v1/task/#{task_id}"
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
# Rules
def self.rules()
url = "https://#{@server}/v1/rules"
return self.get(url)
end
# Download a rules file
def self.rule(rules_id)
url = "https://#{@server}/v1/rules/#{rules_id}"
return self.get(url)
end
# wordlists
def self.wordlists()
url = "https://#{@server}/v1/wordlist"
return self.get(url)
end
def self.get_updateSmartWordlist()
url = "https://#{@server}/v1/updateSmartWordlist"
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)
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
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?('Guess.Mask.')
status['Guess_Mask'] = 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
if get_os == 'win'
#This does not work on win, need to figure out how to get the pid of hashcat
else
pid = `ps -ef | grep hashcat | grep hc_cracked_ | grep -v 'ps -ef' | grep -v 'sh \-c' | awk '{print $2}'`
end
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 rules files to the master server's rules files
# if this agent is missing a rules file it will download them before taking jobs from queue.
def sync_rules_files()
local_rulesfile_checksums = []
server_rules = Api.rules()
server_rules = JSON.parse(server_rules)
if server_rules['type'] == 'Error'
return false
end
# get our local list of rules
localchecksums = Dir["control/rules/*.checksum"]
unless localchecksums.empty?
localchecksums.each do |checksumfile|
# do nasty hack to get checksum from filename
# TODO this should be filec ontents with rulesfilename.checksum as the file name
checksum = checksumfile.split('/')[2].split('.checksum')[0]
local_rulesfile_checksums << checksum
end
end
server_rules['rules'].each do |server_rulesfile|
# if our remote rules file checksum dont match our local rules file checksumchecksums, than download rulesfile by id
unless local_rulesfile_checksums.include? server_rulesfile['checksum']
puts "you need to download #{server_rulesfile['name']} = #{server_rulesfile['checksum']}"
puts "Downloading..."
local_rulesfile = Api.rule(server_rulesfile['id'])
File.open(server_rulesfile['path'], 'wb') do |f|
f << local_rulesfile
end
# generate checksums for newly downloaded file
checksum = Digest::SHA2.hexdigest(File.read(server_rulesfile['path']))
File.open("control/rules/#{checksum}" + ".checksum", 'wb') do |f|
f.puts "#{checksum} #{server_rulesfile['path'].split("/")[-1]}"
end
end
end
end
# this funtion check the host operating system to we can resolve
# differences between win, mac, linux
def get_os()
host_os = RbConfig::CONFIG['host_os']
case host_os
when /mswin|msys|mingw|cygwin|bccwin|wince|emc/
host_os='win'
when /darwin|mac os/ #provide mac support
host_os='mac'
else
host_os='lin'
end
return host_os
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 local checksums, than download wordlist by id
unless localwordlists.include? wl['checksum']
puts "you need to download #{wl['name']} = #{wl['checksum']}"
puts "Downloading..."
filename = wl['path'].split('/')[-1]
File.open('control/tmp/' + filename + '.gz', 'wb') {|f|
block = proc { |response|
response.read_body do |chunk|
f.write chunk
end
}
# Have to create our own request since response is not in json format
options = JSON.parse(File.read('config/agent_config.json'))
@server = options['master_ip'] + ":" + options['port']
@uuid = options['uuid']
url = "https://#{@server}/v1/wordlist/#{wl['id']}"
RestClient::Request.new(
method: :get,
url: url,
cookies: {:agent_uuid => @uuid},
timeout: 43200,
verify_ssl: false,
block_response: block
).execute
}
cmd = "mv control/tmp/#{filename}.gz control/wordlists/"
`#{cmd}`
puts "Unpacking...."
cmd = "gunzip -f control/wordlists/#{filename}.gz"
`#{cmd}`
# Renaming
#cmd = "mv control/wordlists/#{wl['name']} #{wl['path']}"
#`#{cmd}`
# generate checksums for newly downloaded file
puts "Calculating checksum"
checksum = ''
case get_os
when /mac/ #provide mac support
checksum = `shasum -a 256 "#{wl['path']}"`
else
checksum = `sha256sum "#{wl['path']}"`
end
File.open("control/wordlists/#{checksum.split(' ')[0]}" + ".checksum", 'wb') do |f|
f.puts "#{checksum.split(' ')[0]} #{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)
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 perfstats
if heartbeat['type'] == 'message' and heartbeat['msg'] == 'Authorized'
payload['agent_status'] = 'Syncing'
#sync_rules_files
Api.stats(hc_devices, hc_perfstats)
end
if heartbeat['type'] == 'message' and heartbeat['msg'] == 'START'
# Sync up before jobs starts
payload['agent_status'] = 'Syncing'
Api.post_heartbeat(payload)
sync_wordlists
sync_rules_files
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', 'wb') 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()
p "DEBUG: jobtask: " + jobtask.to_s
# Check to see if we're using Smart Wordlist and if so, calculate it and download it
p "DEBUG: jobtask['task_id']" + jobtask['task_id'].to_s
task = JSON.parse(Api.task(jobtask['task_id']))
p "DEBUG TASK: " + task.to_s
wordlists = JSON.parse(Api.wordlists)
wordlists['wordlists'].each do |wordlist|
if wordlist['id'].to_i == task['wl_id'].to_i
if wordlist['name'] == 'Smart Wordlist'
p "We're using a smart wordlist, forcing an update"
Api.get_updateSmartWordlist
# Remote file may have changed, now we need to sync
p 'Update Complete'
p 'syncing wordlists'
sync_wordlists
p 'Sync complete'
end
end
end
# 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, 'wb') 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
run_time = 0
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}_#{jobtask['task_id']}.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
if get_os == 'win'
puts "Killing #{pid}"
system("taskkill /f /pid #{pid}")
else
`kill -9 #{pid}`
end
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