mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-23 14:42:25 +02:00
Added documentation and logging added cachedump and lsadump Fixed requested issues fixed encoding issues added requirement Framework: Move cache_clear function to the framework Documentation: Document self.config slightly better Linux/Mac: Refactor *nix Utilities classes Automagic: Fix issue in recent refactor Add elf parsing and symbol retrieval for linux kernel modules Fixes on coding style Linux: Restore accidentally dropped kobject definition Core: Rerun yapf across the codebase. First attempt and better DTB and ASLR validation. Debugging statements left in. Mac: Stash the verified ASLR shift and improve logging Linux: Support stashing the KASLR Remove extra debug prints added hashdump Added documentation and logging Linux - stash the Linux kernel virtual address Hashdump: Reformat and convert to proper byte handling Registry: Fix error message Caching: Only cache remote files Yarascan: Move most of yarascanning into a versionable plugin This refactors common yara tasks, so we can use the plugin versioning to keep track of changes to the YaraScanner class. Core: Refactor versioning and associated requirements Configuration: Improve the VersionableInterface documentation Plugins: Remove unnecessary dependency for yarascan Objects: Add a convenience function for validating enum values Objects: Update enumeration method to is_valid_choice Core: Maintain 3.5.3 compatibility created tty_check.py; edited automagic/linux.py to add kernel tracking abilities fixed some formatting for tty_check.py Fixed tty_check not finding the ttyhook module added some documentation Removed unnecessary code from tty_check.py added docs to automagic methods, fixed missing return types, changed parameters to be more specific added kernel string to linux constants file; changed automagic methods so that they reconstruct the kernel object within the method for consistancy with other methods added parameter type to generate_kernel_handler_info Updated imports to reflect new location of utility class; plugins are no longer outputing anything so commiting for Andrew to take a look at removed debugging print statements fixed bug causing no output when tty_check is run Windows.info: Refactor windows.info as classmethods Linux: Fix plugin case and re-run yapf created keyboard_notifiers removed extra whitespace Yapf: Minor reformats for recent plugins Codebase: Ensure all conversions to bytes handle unicode All conversions using `latin-1` have been converted to `raw_unicode_escape` which is like `latin-1`, but handles unicode characters appropriately (with a `\u` prefix). Since this is like `latin-1` it should have no impact on things that ran previously, but those that would fail with a unicode error now will present an encoded unicode string. There may be situations where the binary representation of unicode would be better (timeliner file output?), but those can be changed when/if it's determined necessary. Fixes #274. Linux: Fix keyboard_notifiers copyright year Renderers: Fix the pretty renderer when no rows are emitted Timeliner: Sort results and provide a filter Sorts the results (as stated). Note that user interfaces may decide to sort their results in an order of their choosing. Also added a parameter that can be provided multiple times to only allow plugins that match (any of) the parameters provided. Timeliner: Actually make use of the TextIoWrapper Windows: Add a version to the info plugin now its got classmethods CLI: Add additional help about 'vol.py plugin --help' created linux_check_idt; plugin currently is not finding the module names for each entry in idt table fix copyright year fixed poor variable name, removed unnecessary code added address mask to fix issue with kernel tracking CLI: Revert epilog changes Update lsadump.py I'm not sure why your are getting this error since it works fine for me, but this may fix it
138 lines
6.0 KiB
Python
138 lines
6.0 KiB
Python
# This file is Copyright 2020 Volatility Foundation and licensed under the Volatility Software License 1.0
|
|
# which is available at https://www.volatilityfoundation.org/license/vsl-v1.0
|
|
#
|
|
|
|
from volatility.framework import interfaces, renderers
|
|
from volatility.framework.configuration import requirements
|
|
from volatility.framework.renderers import format_hints
|
|
from volatility.framework.layers import intel
|
|
from volatility.plugins.windows.registry import hivelist
|
|
from volatility.plugins.windows import hashdump, lsadump, poolscanner
|
|
from Crypto.Hash import HMAC
|
|
from Crypto.Cipher import ARC4, AES
|
|
from struct import unpack
|
|
|
|
|
|
class Cachedump(interfaces.plugins.PluginInterface):
|
|
"""Dumps lsa secrets from memory"""
|
|
|
|
_version = (1, 0, 0)
|
|
|
|
@classmethod
|
|
def get_requirements(cls):
|
|
return [requirements.TranslationLayerRequirement(name = 'primary',
|
|
description = 'Memory layer for the kernel',
|
|
architectures = ["Intel32", "Intel64"]),
|
|
requirements.SymbolTableRequirement(name = "nt_symbols",
|
|
description = "Windows kernel symbols"),
|
|
requirements.PluginRequirement(name = 'hivelist', plugin = hivelist.HiveList, version = (1, 0, 0)),
|
|
requirements.PluginRequirement(name = 'lsadump', plugin = lsadump.Lsadump, version = (1, 0, 0))
|
|
]
|
|
|
|
def get_nlkm(self, sechive, lsakey, is_vista_or_later):
|
|
return lsadump.Lsadump.get_secret_by_name(sechive, 'NL$KM', lsakey, is_vista_or_later)
|
|
|
|
|
|
def decrypt_hash(self, edata, nlkm, ch, xp):
|
|
if xp:
|
|
hmac_md5 = HMAC.new(nlkm, ch)
|
|
rc4key = hmac_md5.digest()
|
|
rc4 = ARC4.new(rc4key)
|
|
data = rc4.encrypt(edata)
|
|
else:
|
|
# based on Based on code from http://lab.mediaservice.net/code/cachedump.rb
|
|
aes = AES.new(nlkm[16:32], AES.MODE_CBC, ch)
|
|
data = ""
|
|
for i in range(0, len(edata), 16):
|
|
buf = edata[i : i + 16]
|
|
if len(buf) < 16:
|
|
buf += (16 - len(buf)) * "\00"
|
|
data += aes.decrypt(buf)
|
|
return data
|
|
|
|
def parse_cache_entry(self, cache_data):
|
|
(uname_len, domain_len) = unpack("<HH", cache_data[:4])
|
|
if len(cache_data[60:62]) == 0:
|
|
return (uname_len, domain_len, 0, '', '')
|
|
(domain_name_len,) = unpack("<H", cache_data[60:62])
|
|
ch = cache_data[64:80]
|
|
enc_data = cache_data[96:]
|
|
return (uname_len, domain_len, domain_name_len, enc_data, ch)
|
|
|
|
|
|
def parse_decrypted_cache(self, dec_data, uname_len,
|
|
domain_len, domain_name_len):
|
|
"""Get the data from the cache and separate it into the username, domain name, and hash data"""
|
|
uname_offset= 72
|
|
pad = 2 * ((uname_len / 2) % 2)
|
|
domain_offset= int(uname_offset+ uname_len + pad)
|
|
pad = 2 * ((domain_len / 2) % 2)
|
|
domain_name_offset= int(domain_offset+ domain_len + pad)
|
|
hashh = dec_data[:0x10]
|
|
username = dec_data[uname_offset:uname_offset+ uname_len]
|
|
username = username.decode('utf-16-le', 'replace')
|
|
domain = dec_data[domain_offset:domain_offset+ domain_len]
|
|
domain = domain.decode('utf-16-le', 'replace')
|
|
domain_name = dec_data[domain_name_offset:domain_name_offset+ domain_name_len]
|
|
domain_name = domain_name.decode('utf-16-le', 'replace')
|
|
|
|
return (username, domain, domain_name, hashh)
|
|
|
|
def _generator(self, syshive, sechive):
|
|
bootkey = hashdump.Hashdump.get_bootkey(syshive)
|
|
if not bootkey:
|
|
raise Exception('Unable to find bootkey')
|
|
|
|
is_vista_or_later = poolscanner.os_distinguisher(version_check = lambda x: x >= (6, 0),
|
|
fallback_checks = [("KdCopyDataBlock", None, True)])
|
|
vista_or_later = is_vista_or_later(context = self.context, symbol_table = self.config['nt_symbols'])
|
|
|
|
lsakey = lsadump.Lsadump.get_lsa_key(sechive, bootkey, vista_or_later)
|
|
if not lsakey:
|
|
raise Exception('Unable to find lsa key')
|
|
|
|
nlkm = self.get_nlkm(sechive, lsakey, vista_or_later)
|
|
if not nlkm:
|
|
raise Exception('Unable to find nlkma key')
|
|
|
|
cache = sechive.get_key("Cache")
|
|
if not cache:
|
|
raise Exception('Unable to find cache key')
|
|
|
|
|
|
for cache_item in cache.get_values():
|
|
if cache_item.Name == "NL$Control":
|
|
continue
|
|
|
|
data = sechive.read(cache_item.Data+4, cache_item.DataLength)
|
|
if data == None:
|
|
continue
|
|
(uname_len, domain_len, domain_name_len,
|
|
enc_data, ch) = self.parse_cache_entry(data)
|
|
# Skip if nothing in this cache entry
|
|
if uname_len == 0 or len(ch) == 0:
|
|
continue
|
|
dec_data = self.decrypt_hash(enc_data, nlkm, ch, not vista_or_later)
|
|
|
|
(username, domain, domain_name,
|
|
hashh) = self.parse_decrypted_cache(dec_data, uname_len,
|
|
domain_len, domain_name_len)
|
|
yield (0,(username, domain, domain_name, hashh))
|
|
|
|
def run(self):
|
|
offset = self.config.get('offset', None)
|
|
|
|
|
|
for hive in hivelist.HiveList.list_hives(self.context,
|
|
self.config_path,
|
|
self.config['primary'],
|
|
self.config['nt_symbols'],
|
|
hive_offsets = None if offset is None else [offset]):
|
|
|
|
if hive.get_name().split('\\')[-1].upper() == 'SYSTEM':
|
|
syshive=hive
|
|
if hive.get_name().split('\\')[-1].upper() == 'SECURITY':
|
|
sechive=hive
|
|
|
|
return renderers.TreeGrid([("Username", str), ("Domain", str), ("Domain name", str), ('Hashh', bytes)],
|
|
self._generator(syshive, sechive)) |