32 lines
917 B
Python
32 lines
917 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
class CMEModule:
|
|
'''
|
|
Module by Shutdown and Podalirius
|
|
|
|
Initial module:
|
|
https://github.com/ShutdownRepo/CrackMapExec-MachineAccountQuota
|
|
|
|
Authors:
|
|
Shutdown: @_nwodtuhs
|
|
Podalirius: @podalirius_
|
|
'''
|
|
|
|
def options(self, context, module_options):
|
|
pass
|
|
|
|
name = 'MAQ'
|
|
description = 'Retrieves the MachineAccountQuota domain-level attribute'
|
|
supported_protocols = ['ldap']
|
|
opsec_safe = True
|
|
multiple_hosts = False
|
|
|
|
def on_login(self, context, connection):
|
|
result = []
|
|
context.log.info('Getting the MachineAccountQuota')
|
|
searchFilter = '(objectClass=*)'
|
|
attributes = ['ms-DS-MachineAccountQuota']
|
|
result = connection.search(searchFilter, attributes)
|
|
context.log.highlight("MachineAccountQuota: %d" % result[0]['attributes'][0]['vals'][0])
|