mirror of
https://github.com/lgandx/Responder.git
synced 2025-08-20 05:13:34 -07:00
Ported MultiRelay to python3 + enhancements.
This commit is contained in:
parent
24e7b7c667
commit
4bddf50b5c
82 changed files with 64692 additions and 4466 deletions
|
@ -0,0 +1 @@
|
|||
pass
|
|
@ -0,0 +1 @@
|
|||
pass
|
211
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/atsvc.py
Normal file
211
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/atsvc.py
Normal file
|
@ -0,0 +1,211 @@
|
|||
# SECUREAUTH LABS. Copyright 2018 SecureAuth Corporation. All rights reserved.
|
||||
#
|
||||
# This software is provided under under a slightly modified version
|
||||
# of the Apache Software License. See the accompanying LICENSE file
|
||||
# for more information.
|
||||
#
|
||||
# Author: Alberto Solino (@agsolino)
|
||||
#
|
||||
# Description:
|
||||
# [MS-TSCH] ATSVC Interface implementation
|
||||
#
|
||||
# Best way to learn how to use these calls is to grab the protocol standard
|
||||
# so you understand what the call does, and then read the test case located
|
||||
# at https://github.com/SecureAuthCorp/impacket/tree/master/tests/SMB_RPC
|
||||
#
|
||||
# Some calls have helper functions, which makes it even easier to use.
|
||||
# They are located at the end of this file.
|
||||
# Helper functions start with "h"<name of the call>.
|
||||
# There are test cases for them too.
|
||||
#
|
||||
from impacket.dcerpc.v5.ndr import NDRCALL, NDRSTRUCT, NDRPOINTER, NDRUniConformantArray
|
||||
from impacket.dcerpc.v5.dtypes import DWORD, LPWSTR, UCHAR, ULONG, LPDWORD, NULL
|
||||
from impacket import hresult_errors
|
||||
from impacket.uuid import uuidtup_to_bin
|
||||
from impacket.dcerpc.v5.rpcrt import DCERPCException
|
||||
|
||||
MSRPC_UUID_ATSVC = uuidtup_to_bin(('1FF70682-0A51-30E8-076D-740BE8CEE98B','1.0'))
|
||||
|
||||
class DCERPCSessionError(DCERPCException):
|
||||
def __init__(self, error_string=None, error_code=None, packet=None):
|
||||
DCERPCException.__init__(self, error_string, error_code, packet)
|
||||
|
||||
def __str__( self ):
|
||||
key = self.error_code
|
||||
if key in hresult_errors.ERROR_MESSAGES:
|
||||
error_msg_short = hresult_errors.ERROR_MESSAGES[key][0]
|
||||
error_msg_verbose = hresult_errors.ERROR_MESSAGES[key][1]
|
||||
return 'TSCH SessionError: code: 0x%x - %s - %s' % (self.error_code, error_msg_short, error_msg_verbose)
|
||||
else:
|
||||
return 'TSCH SessionError: unknown error code: 0x%x' % self.error_code
|
||||
|
||||
################################################################################
|
||||
# CONSTANTS
|
||||
################################################################################
|
||||
ATSVC_HANDLE = LPWSTR
|
||||
# 2.3.1 Constant Values
|
||||
CNLEN = 15
|
||||
DNLEN = CNLEN
|
||||
UNLEN = 256
|
||||
MAX_BUFFER_SIZE = (DNLEN+UNLEN+1+1)
|
||||
|
||||
# 2.3.7 Flags
|
||||
TASK_FLAG_INTERACTIVE = 0x1
|
||||
TASK_FLAG_DELETE_WHEN_DONE = 0x2
|
||||
TASK_FLAG_DISABLED = 0x4
|
||||
TASK_FLAG_START_ONLY_IF_IDLE = 0x10
|
||||
TASK_FLAG_KILL_ON_IDLE_END = 0x20
|
||||
TASK_FLAG_DONT_START_IF_ON_BATTERIES = 0x40
|
||||
TASK_FLAG_KILL_IF_GOING_ON_BATTERIES = 0x80
|
||||
TASK_FLAG_RUN_ONLY_IF_DOCKED = 0x100
|
||||
TASK_FLAG_HIDDEN = 0x200
|
||||
TASK_FLAG_RUN_IF_CONNECTED_TO_INTERNET = 0x400
|
||||
TASK_FLAG_RESTART_ON_IDLE_RESUME = 0x800
|
||||
TASK_FLAG_SYSTEM_REQUIRED = 0x1000
|
||||
TASK_FLAG_RUN_ONLY_IF_LOGGED_ON = 0x2000
|
||||
|
||||
################################################################################
|
||||
# STRUCTURES
|
||||
################################################################################
|
||||
# 2.3.4 AT_INFO
|
||||
class AT_INFO(NDRSTRUCT):
|
||||
structure = (
|
||||
('JobTime',DWORD),
|
||||
('DaysOfMonth',DWORD),
|
||||
('DaysOfWeek',UCHAR),
|
||||
('Flags',UCHAR),
|
||||
('Command',LPWSTR),
|
||||
)
|
||||
|
||||
class LPAT_INFO(NDRPOINTER):
|
||||
referent = (
|
||||
('Data',AT_INFO),
|
||||
)
|
||||
|
||||
# 2.3.6 AT_ENUM
|
||||
class AT_ENUM(NDRSTRUCT):
|
||||
structure = (
|
||||
('JobId',DWORD),
|
||||
('JobTime',DWORD),
|
||||
('DaysOfMonth',DWORD),
|
||||
('DaysOfWeek',UCHAR),
|
||||
('Flags',UCHAR),
|
||||
('Command',LPWSTR),
|
||||
)
|
||||
|
||||
class AT_ENUM_ARRAY(NDRUniConformantArray):
|
||||
item = AT_ENUM
|
||||
|
||||
class LPAT_ENUM_ARRAY(NDRPOINTER):
|
||||
referent = (
|
||||
('Data',AT_ENUM_ARRAY),
|
||||
)
|
||||
|
||||
# 2.3.5 AT_ENUM_CONTAINER
|
||||
class AT_ENUM_CONTAINER(NDRSTRUCT):
|
||||
structure = (
|
||||
('EntriesRead',DWORD),
|
||||
('Buffer',LPAT_ENUM_ARRAY),
|
||||
)
|
||||
|
||||
################################################################################
|
||||
# RPC CALLS
|
||||
################################################################################
|
||||
# 3.2.5.2.1 NetrJobAdd (Opnum 0)
|
||||
class NetrJobAdd(NDRCALL):
|
||||
opnum = 0
|
||||
structure = (
|
||||
('ServerName',ATSVC_HANDLE),
|
||||
('pAtInfo', AT_INFO),
|
||||
)
|
||||
|
||||
class NetrJobAddResponse(NDRCALL):
|
||||
structure = (
|
||||
('pJobId',DWORD),
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
# 3.2.5.2.2 NetrJobDel (Opnum 1)
|
||||
class NetrJobDel(NDRCALL):
|
||||
opnum = 1
|
||||
structure = (
|
||||
('ServerName',ATSVC_HANDLE),
|
||||
('MinJobId', DWORD),
|
||||
('MaxJobId', DWORD),
|
||||
)
|
||||
|
||||
class NetrJobDelResponse(NDRCALL):
|
||||
structure = (
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
# 3.2.5.2.3 NetrJobEnum (Opnum 2)
|
||||
class NetrJobEnum(NDRCALL):
|
||||
opnum = 2
|
||||
structure = (
|
||||
('ServerName',ATSVC_HANDLE),
|
||||
('pEnumContainer', AT_ENUM_CONTAINER),
|
||||
('PreferedMaximumLength', DWORD),
|
||||
('pResumeHandle', DWORD),
|
||||
)
|
||||
|
||||
class NetrJobEnumResponse(NDRCALL):
|
||||
structure = (
|
||||
('pEnumContainer', AT_ENUM_CONTAINER),
|
||||
('pTotalEntries', DWORD),
|
||||
('pResumeHandle',LPDWORD),
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
# 3.2.5.2.4 NetrJobGetInfo (Opnum 3)
|
||||
class NetrJobGetInfo(NDRCALL):
|
||||
opnum = 3
|
||||
structure = (
|
||||
('ServerName',ATSVC_HANDLE),
|
||||
('JobId', DWORD),
|
||||
)
|
||||
|
||||
class NetrJobGetInfoResponse(NDRCALL):
|
||||
structure = (
|
||||
('ppAtInfo', LPAT_INFO),
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
################################################################################
|
||||
# OPNUMs and their corresponding structures
|
||||
################################################################################
|
||||
OPNUMS = {
|
||||
0 : (NetrJobAdd,NetrJobAddResponse ),
|
||||
1 : (NetrJobDel,NetrJobDelResponse ),
|
||||
2 : (NetrJobEnum,NetrJobEnumResponse ),
|
||||
3 : (NetrJobGetInfo,NetrJobGetInfoResponse ),
|
||||
}
|
||||
|
||||
################################################################################
|
||||
# HELPER FUNCTIONS
|
||||
################################################################################
|
||||
def hNetrJobAdd(dce, serverName = NULL, atInfo = NULL):
|
||||
netrJobAdd = NetrJobAdd()
|
||||
netrJobAdd['ServerName'] = serverName
|
||||
netrJobAdd['pAtInfo'] = atInfo
|
||||
return dce.request(netrJobAdd)
|
||||
|
||||
def hNetrJobDel(dce, serverName = NULL, minJobId = 0, maxJobId = 0):
|
||||
netrJobDel = NetrJobDel()
|
||||
netrJobDel['ServerName'] = serverName
|
||||
netrJobDel['MinJobId'] = minJobId
|
||||
netrJobDel['MaxJobId'] = maxJobId
|
||||
return dce.request(netrJobDel)
|
||||
|
||||
def hNetrJobEnum(dce, serverName = NULL, pEnumContainer = NULL, preferedMaximumLength = 0xffffffff):
|
||||
netrJobEnum = NetrJobEnum()
|
||||
netrJobEnum['ServerName'] = serverName
|
||||
netrJobEnum['pEnumContainer']['Buffer'] = pEnumContainer
|
||||
netrJobEnum['PreferedMaximumLength'] = preferedMaximumLength
|
||||
return dce.request(netrJobEnum)
|
||||
|
||||
def hNetrJobGetInfo(dce, serverName = NULL, jobId = 0):
|
||||
netrJobGetInfo = NetrJobGetInfo()
|
||||
netrJobGetInfo['ServerName'] = serverName
|
||||
netrJobGetInfo['JobId'] = jobId
|
||||
return dce.request(netrJobGetInfo)
|
127
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/bkrp.py
Normal file
127
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/bkrp.py
Normal file
|
@ -0,0 +1,127 @@
|
|||
# SECUREAUTH LABS. Copyright 2018 SecureAuth Corporation. All rights reserved.
|
||||
#
|
||||
# This software is provided under under a slightly modified version
|
||||
# of the Apache Software License. See the accompanying LICENSE file
|
||||
# for more information.
|
||||
#
|
||||
# Author: Alberto Solino (@agsolino)
|
||||
#
|
||||
# Description:
|
||||
# [MS-BKRP] Interface implementation
|
||||
#
|
||||
# Best way to learn how to use these calls is to grab the protocol standard
|
||||
# so you understand what the call does, and then read the test case located
|
||||
# at https://github.com/SecureAuthCorp/impacket/tree/master/tests/SMB_RPC
|
||||
#
|
||||
# Some calls have helper functions, which makes it even easier to use.
|
||||
# They are located at the end of this file.
|
||||
# Helper functions start with "h"<name of the call>.
|
||||
# There are test cases for them too.
|
||||
#
|
||||
# ToDo:
|
||||
# [ ] 2.2.2 Client-Side-Wrapped Secret
|
||||
from __future__ import division
|
||||
from __future__ import print_function
|
||||
from impacket.dcerpc.v5.ndr import NDRCALL, NDRPOINTER, NDRUniConformantArray
|
||||
from impacket.dcerpc.v5.dtypes import DWORD, NTSTATUS, GUID, RPC_SID, NULL
|
||||
from impacket.dcerpc.v5.rpcrt import DCERPCException
|
||||
from impacket import system_errors
|
||||
from impacket.uuid import uuidtup_to_bin, string_to_bin
|
||||
from impacket.structure import Structure
|
||||
|
||||
MSRPC_UUID_BKRP = uuidtup_to_bin(('3dde7c30-165d-11d1-ab8f-00805f14db40', '1.0'))
|
||||
|
||||
class DCERPCSessionError(DCERPCException):
|
||||
def __init__(self, error_string=None, error_code=None, packet=None):
|
||||
DCERPCException.__init__(self, error_string, error_code, packet)
|
||||
|
||||
def __str__( self ):
|
||||
key = self.error_code
|
||||
if key in system_errors.ERROR_MESSAGES:
|
||||
error_msg_short = system_errors.ERROR_MESSAGES[key][0]
|
||||
error_msg_verbose = system_errors.ERROR_MESSAGES[key][1]
|
||||
return 'BKRP SessionError: code: 0x%x - %s - %s' % (self.error_code, error_msg_short, error_msg_verbose)
|
||||
else:
|
||||
return 'BKRP SessionError: unknown error code: 0x%x' % self.error_code
|
||||
|
||||
################################################################################
|
||||
# CONSTANTS
|
||||
################################################################################
|
||||
|
||||
BACKUPKEY_BACKUP_GUID = string_to_bin("7F752B10-178E-11D1-AB8F-00805F14DB40")
|
||||
BACKUPKEY_RESTORE_GUID_WIN2K = string_to_bin("7FE94D50-178E-11D1-AB8F-00805F14DB40")
|
||||
BACKUPKEY_RETRIEVE_BACKUP_KEY_GUID = string_to_bin("018FF48A-EABA-40C6-8F6D-72370240E967")
|
||||
BACKUPKEY_RESTORE_GUID = string_to_bin("47270C64-2FC7-499B-AC5B-0E37CDCE899A")
|
||||
|
||||
################################################################################
|
||||
# STRUCTURES
|
||||
################################################################################
|
||||
class BYTE_ARRAY(NDRUniConformantArray):
|
||||
item = 'c'
|
||||
|
||||
class PBYTE_ARRAY(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', BYTE_ARRAY),
|
||||
)
|
||||
|
||||
# 2.2.4.1 Rc4EncryptedPayload Structure
|
||||
class Rc4EncryptedPayload(Structure):
|
||||
structure = (
|
||||
('R3', '32s=""'),
|
||||
('MAC', '20s=""'),
|
||||
('SID', ':', RPC_SID),
|
||||
('Secret', ':'),
|
||||
)
|
||||
|
||||
# 2.2.4 Secret Wrapped with Symmetric Key
|
||||
class WRAPPED_SECRET(Structure):
|
||||
structure = (
|
||||
('SIGNATURE', '<L=1'),
|
||||
('Payload_Length', '<L=0'),
|
||||
('Ciphertext_Length', '<L=0'),
|
||||
('GUID_of_Wrapping_Key', '16s=""'),
|
||||
('R2', '68s=""'),
|
||||
('_Rc4EncryptedPayload', '_-Rc4EncryptedPayload', 'self["Payload_Length"]'),
|
||||
('Rc4EncryptedPayload', ':'),
|
||||
)
|
||||
|
||||
################################################################################
|
||||
# RPC CALLS
|
||||
################################################################################
|
||||
# 3.1.4.1 BackuprKey(Opnum 0)
|
||||
class BackuprKey(NDRCALL):
|
||||
opnum = 0
|
||||
structure = (
|
||||
('pguidActionAgent', GUID),
|
||||
('pDataIn', BYTE_ARRAY),
|
||||
('cbDataIn', DWORD),
|
||||
('dwParam', DWORD),
|
||||
)
|
||||
|
||||
class BackuprKeyResponse(NDRCALL):
|
||||
structure = (
|
||||
('ppDataOut', PBYTE_ARRAY),
|
||||
('pcbDataOut', DWORD),
|
||||
('ErrorCode', NTSTATUS),
|
||||
)
|
||||
|
||||
################################################################################
|
||||
# OPNUMs and their corresponding structures
|
||||
################################################################################
|
||||
OPNUMS = {
|
||||
0 : (BackuprKey, BackuprKeyResponse),
|
||||
}
|
||||
|
||||
################################################################################
|
||||
# HELPER FUNCTIONS
|
||||
################################################################################
|
||||
def hBackuprKey(dce, pguidActionAgent, pDataIn, dwParam=0):
|
||||
request = BackuprKey()
|
||||
request['pguidActionAgent'] = pguidActionAgent
|
||||
request['pDataIn'] = pDataIn
|
||||
if pDataIn == NULL:
|
||||
request['cbDataIn'] = 0
|
||||
else:
|
||||
request['cbDataIn'] = len(pDataIn)
|
||||
request['dwParam'] = dwParam
|
||||
return dce.request(request)
|
|
@ -0,0 +1 @@
|
|||
pass
|
1863
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/dcom/comev.py
Normal file
1863
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/dcom/comev.py
Normal file
File diff suppressed because it is too large
Load diff
1090
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/dcom/oaut.py
Normal file
1090
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/dcom/oaut.py
Normal file
File diff suppressed because it is too large
Load diff
337
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/dcom/scmp.py
Normal file
337
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/dcom/scmp.py
Normal file
|
@ -0,0 +1,337 @@
|
|||
# SECUREAUTH LABS. Copyright 2018 SecureAuth Corporation. All rights reserved.
|
||||
#
|
||||
# This software is provided under under a slightly modified version
|
||||
# of the Apache Software License. See the accompanying LICENSE file
|
||||
# for more information.
|
||||
#
|
||||
# Author: Alberto Solino (@agsolino)
|
||||
#
|
||||
# Description:
|
||||
# [MS-SCMP]: Shadow Copy Management Protocol Interface implementation
|
||||
# This was used as a way to test the DCOM runtime. Further
|
||||
# testing is needed to verify it is working as expected
|
||||
#
|
||||
# Best way to learn how to use these calls is to grab the protocol standard
|
||||
# so you understand what the call does, and then read the test case located
|
||||
# at https://github.com/SecureAuthCorp/impacket/tree/master/tests/SMB_RPC
|
||||
#
|
||||
# Since DCOM is like an OO RPC, instead of helper functions you will see the
|
||||
# classes described in the standards developed.
|
||||
# There are test cases for them too.
|
||||
#
|
||||
from __future__ import division
|
||||
from __future__ import print_function
|
||||
from impacket.dcerpc.v5.ndr import NDRENUM, NDRSTRUCT, NDRUNION
|
||||
from impacket.dcerpc.v5.dcomrt import PMInterfacePointer, INTERFACE, DCOMCALL, DCOMANSWER, IRemUnknown2
|
||||
from impacket.dcerpc.v5.dtypes import LONG, LONGLONG, ULONG, WSTR
|
||||
from impacket.dcerpc.v5.enum import Enum
|
||||
from impacket.dcerpc.v5.rpcrt import DCERPCException
|
||||
from impacket import hresult_errors
|
||||
from impacket.uuid import string_to_bin
|
||||
|
||||
class DCERPCSessionError(DCERPCException):
|
||||
def __init__(self, error_string=None, error_code=None, packet=None):
|
||||
DCERPCException.__init__(self, error_string, error_code, packet)
|
||||
|
||||
def __str__( self ):
|
||||
if self.error_code in hresult_errors.ERROR_MESSAGES:
|
||||
error_msg_short = hresult_errors.ERROR_MESSAGES[self.error_code][0]
|
||||
error_msg_verbose = hresult_errors.ERROR_MESSAGES[self.error_code][1]
|
||||
return 'SCMP SessionError: code: 0x%x - %s - %s' % (self.error_code, error_msg_short, error_msg_verbose)
|
||||
else:
|
||||
return 'SCMP SessionError: unknown error code: 0x%x' % self.error_code
|
||||
|
||||
################################################################################
|
||||
# CONSTANTS
|
||||
################################################################################
|
||||
# 1.9 Standards Assignments
|
||||
CLSID_ShadowCopyProvider = string_to_bin('0b5a2c52-3eb9-470a-96e2-6c6d4570e40f')
|
||||
IID_IVssSnapshotMgmt = string_to_bin('FA7DF749-66E7-4986-A27F-E2F04AE53772')
|
||||
IID_IVssEnumObject = string_to_bin('AE1C7110-2F60-11d3-8A39-00C04F72D8E3')
|
||||
IID_IVssDifferentialSoftwareSnapshotMgmt = string_to_bin('214A0F28-B737-4026-B847-4F9E37D79529')
|
||||
IID_IVssEnumMgmtObject = string_to_bin('01954E6B-9254-4e6e-808C-C9E05D007696')
|
||||
IID_ShadowCopyProvider = string_to_bin('B5946137-7B9F-4925-AF80-51ABD60B20D5')
|
||||
|
||||
# 2.2.1.1 VSS_ID
|
||||
class VSS_ID(NDRSTRUCT):
|
||||
structure = (
|
||||
('Data','16s=b""'),
|
||||
)
|
||||
|
||||
def getAlignment(self):
|
||||
return 2
|
||||
|
||||
#2.2.1.2 VSS_PWSZ
|
||||
VSS_PWSZ = WSTR
|
||||
|
||||
# 2.2.1.3 VSS_TIMESTAMP
|
||||
VSS_TIMESTAMP = LONGLONG
|
||||
|
||||
error_status_t = LONG
|
||||
################################################################################
|
||||
# STRUCTURES
|
||||
################################################################################
|
||||
# 2.2.2.1 VSS_OBJECT_TYPE Enumeration
|
||||
class VSS_OBJECT_TYPE(NDRENUM):
|
||||
class enumItems(Enum):
|
||||
VSS_OBJECT_UNKNOWN = 0
|
||||
VSS_OBJECT_NONE = 1
|
||||
VSS_OBJECT_SNAPSHOT_SET = 2
|
||||
VSS_OBJECT_SNAPSHOT = 3
|
||||
VSS_OBJECT_PROVIDER = 4
|
||||
VSS_OBJECT_TYPE_COUNT = 5
|
||||
|
||||
# 2.2.2.2 VSS_MGMT_OBJECT_TYPE Enumeration
|
||||
class VSS_MGMT_OBJECT_TYPE(NDRENUM):
|
||||
class enumItems(Enum):
|
||||
VSS_MGMT_OBJECT_UNKNOWN = 0
|
||||
VSS_MGMT_OBJECT_VOLUME = 1
|
||||
VSS_MGMT_OBJECT_DIFF_VOLUME = 2
|
||||
VSS_MGMT_OBJECT_DIFF_AREA = 3
|
||||
|
||||
# 2.2.2.3 VSS_VOLUME_SNAPSHOT_ATTRIBUTES Enumeration
|
||||
class VSS_VOLUME_SNAPSHOT_ATTRIBUTES(NDRENUM):
|
||||
class enumItems(Enum):
|
||||
VSS_VOLSNAP_ATTR_PERSISTENT = 0x01
|
||||
VSS_VOLSNAP_ATTR_NO_AUTORECOVERY = 0x02
|
||||
VSS_VOLSNAP_ATTR_CLIENT_ACCESSIBLE = 0x04
|
||||
VSS_VOLSNAP_ATTR_NO_AUTO_RELEASE = 0x08
|
||||
VSS_VOLSNAP_ATTR_NO_WRITERS = 0x10
|
||||
|
||||
# 2.2.2.4 VSS_SNAPSHOT_STATE Enumeration
|
||||
class VSS_SNAPSHOT_STATE(NDRENUM):
|
||||
class enumItems(Enum):
|
||||
VSS_SS_UNKNOWN = 0x01
|
||||
VSS_SS_CREATED = 0x0c
|
||||
|
||||
# 2.2.2.5 VSS_PROVIDER_TYPE Enumeration
|
||||
class VSS_PROVIDER_TYPE(NDRENUM):
|
||||
class enumItems(Enum):
|
||||
VSS_PROV_UNKNOWN = 0
|
||||
|
||||
# 2.2.3.7 VSS_VOLUME_PROP Structure
|
||||
class VSS_VOLUME_PROP(NDRSTRUCT):
|
||||
structure = (
|
||||
('m_pwszVolumeName', VSS_PWSZ),
|
||||
('m_pwszVolumeDisplayName', VSS_PWSZ),
|
||||
)
|
||||
|
||||
# 2.2.3.5 VSS_MGMT_OBJECT_UNION Union
|
||||
class VSS_MGMT_OBJECT_UNION(NDRUNION):
|
||||
commonHdr = (
|
||||
('tag', ULONG),
|
||||
)
|
||||
union = {
|
||||
VSS_MGMT_OBJECT_TYPE.VSS_MGMT_OBJECT_VOLUME: ('Vol', VSS_VOLUME_PROP),
|
||||
#VSS_MGMT_OBJECT_DIFF_VOLUME: ('DiffVol', VSS_DIFF_VOLUME_PROP),
|
||||
#VSS_MGMT_OBJECT_DIFF_AREA: ('DiffArea', VSS_DIFF_AREA_PROP),
|
||||
}
|
||||
|
||||
# 2.2.3.6 VSS_MGMT_OBJECT_PROP Structure
|
||||
class VSS_MGMT_OBJECT_PROP(NDRSTRUCT):
|
||||
structure = (
|
||||
('Type', VSS_MGMT_OBJECT_TYPE),
|
||||
('Obj', VSS_MGMT_OBJECT_UNION),
|
||||
)
|
||||
|
||||
################################################################################
|
||||
# RPC CALLS
|
||||
################################################################################
|
||||
# 3.1.3 IVssEnumMgmtObject Details
|
||||
|
||||
# 3.1.3.1 Next (Opnum 3)
|
||||
class IVssEnumMgmtObject_Next(DCOMCALL):
|
||||
opnum = 3
|
||||
structure = (
|
||||
('celt', ULONG),
|
||||
)
|
||||
|
||||
class IVssEnumMgmtObject_NextResponse(DCOMANSWER):
|
||||
structure = (
|
||||
('rgelt', VSS_MGMT_OBJECT_PROP),
|
||||
('pceltFetched', ULONG),
|
||||
('ErrorCode', error_status_t),
|
||||
)
|
||||
|
||||
# 3.1.2.1 Next (Opnum 3)
|
||||
class IVssEnumObject_Next(DCOMCALL):
|
||||
opnum = 3
|
||||
structure = (
|
||||
('celt', ULONG),
|
||||
)
|
||||
|
||||
class IVssEnumObject_NextResponse(DCOMANSWER):
|
||||
structure = (
|
||||
('rgelt', VSS_MGMT_OBJECT_PROP),
|
||||
('pceltFetched', ULONG),
|
||||
('ErrorCode', error_status_t),
|
||||
)
|
||||
|
||||
class GetProviderMgmtInterface(DCOMCALL):
|
||||
opnum = 3
|
||||
structure = (
|
||||
('ProviderId', VSS_ID),
|
||||
('InterfaceId', VSS_ID),
|
||||
)
|
||||
|
||||
class GetProviderMgmtInterfaceResponse(DCOMANSWER):
|
||||
structure = (
|
||||
('ppItf', PMInterfacePointer),
|
||||
('ErrorCode', error_status_t),
|
||||
)
|
||||
|
||||
class QueryVolumesSupportedForSnapshots(DCOMCALL):
|
||||
opnum = 4
|
||||
structure = (
|
||||
('ProviderId', VSS_ID),
|
||||
('IContext', LONG),
|
||||
)
|
||||
|
||||
class QueryVolumesSupportedForSnapshotsResponse(DCOMANSWER):
|
||||
structure = (
|
||||
('ppEnum', PMInterfacePointer),
|
||||
('ErrorCode', error_status_t),
|
||||
)
|
||||
|
||||
class QuerySnapshotsByVolume(DCOMCALL):
|
||||
opnum = 5
|
||||
structure = (
|
||||
('pwszVolumeName', VSS_PWSZ),
|
||||
('ProviderId', VSS_ID),
|
||||
)
|
||||
|
||||
class QuerySnapshotsByVolumeResponse(DCOMANSWER):
|
||||
structure = (
|
||||
('ppEnum', PMInterfacePointer),
|
||||
('ErrorCode', error_status_t),
|
||||
)
|
||||
|
||||
# 3.1.4.4.5 QueryDiffAreasForVolume (Opnum 6)
|
||||
class QueryDiffAreasForVolume(DCOMCALL):
|
||||
opnum = 6
|
||||
structure = (
|
||||
('pwszVolumeName', VSS_PWSZ),
|
||||
)
|
||||
|
||||
class QueryDiffAreasForVolumeResponse(DCOMANSWER):
|
||||
structure = (
|
||||
('ppEnum', PMInterfacePointer),
|
||||
('ErrorCode', error_status_t),
|
||||
)
|
||||
|
||||
# 3.1.4.4.6 QueryDiffAreasOnVolume (Opnum 7)
|
||||
class QueryDiffAreasOnVolume(DCOMCALL):
|
||||
opnum = 7
|
||||
structure = (
|
||||
('pwszVolumeName', VSS_PWSZ),
|
||||
)
|
||||
|
||||
class QueryDiffAreasOnVolumeResponse(DCOMANSWER):
|
||||
structure = (
|
||||
('ppEnum', PMInterfacePointer),
|
||||
('ErrorCode', error_status_t),
|
||||
)
|
||||
|
||||
|
||||
################################################################################
|
||||
# OPNUMs and their corresponding structures
|
||||
################################################################################
|
||||
OPNUMS = {
|
||||
}
|
||||
|
||||
################################################################################
|
||||
# HELPER FUNCTIONS AND INTERFACES
|
||||
################################################################################
|
||||
class IVssEnumMgmtObject(IRemUnknown2):
|
||||
def __init__(self, interface):
|
||||
IRemUnknown2.__init__(self, interface)
|
||||
self._iid = IID_IVssEnumMgmtObject
|
||||
|
||||
def Next(self, celt):
|
||||
request = IVssEnumMgmtObject_Next()
|
||||
request['ORPCthis'] = self.get_cinstance().get_ORPCthis()
|
||||
request['ORPCthis']['flags'] = 0
|
||||
request['celt'] = celt
|
||||
resp = self.request(request, self._iid, uuid = self.get_iPid())
|
||||
return resp
|
||||
|
||||
class IVssEnumObject(IRemUnknown2):
|
||||
def __init__(self, interface):
|
||||
IRemUnknown2.__init__(self, interface)
|
||||
self._iid = IID_IVssEnumObject
|
||||
|
||||
def Next(self, celt):
|
||||
request = IVssEnumObject_Next()
|
||||
request['ORPCthis'] = self.get_cinstance().get_ORPCthis()
|
||||
request['ORPCthis']['flags'] = 0
|
||||
request['celt'] = celt
|
||||
dce = self.connect()
|
||||
resp = dce.request(request, self._iid, uuid = self.get_iPid())
|
||||
return resp
|
||||
|
||||
class IVssSnapshotMgmt(IRemUnknown2):
|
||||
def __init__(self, interface):
|
||||
IRemUnknown2.__init__(self, interface)
|
||||
self._iid = IID_IVssSnapshotMgmt
|
||||
|
||||
def GetProviderMgmtInterface(self, providerId = IID_ShadowCopyProvider, interfaceId = IID_IVssDifferentialSoftwareSnapshotMgmt):
|
||||
req = GetProviderMgmtInterface()
|
||||
classInstance = self.get_cinstance()
|
||||
req['ORPCthis'] = classInstance.get_ORPCthis()
|
||||
req['ORPCthis']['flags'] = 0
|
||||
req['ProviderId'] = providerId
|
||||
req['InterfaceId'] = interfaceId
|
||||
resp = self.request(req, self._iid, uuid = self.get_iPid())
|
||||
return IVssDifferentialSoftwareSnapshotMgmt(INTERFACE(classInstance, ''.join(resp['ppItf']['abData']), self.get_ipidRemUnknown(), target = self.get_target()))
|
||||
|
||||
def QueryVolumesSupportedForSnapshots(self, providerId, iContext):
|
||||
req = QueryVolumesSupportedForSnapshots()
|
||||
classInstance = self.get_cinstance()
|
||||
req['ORPCthis'] = classInstance.get_ORPCthis()
|
||||
req['ORPCthis']['flags'] = 0
|
||||
req['ProviderId'] = providerId
|
||||
req['IContext'] = iContext
|
||||
resp = self.request(req, self._iid, uuid = self.get_iPid())
|
||||
return IVssEnumMgmtObject(INTERFACE(self.get_cinstance(), ''.join(resp['ppEnum']['abData']), self.get_ipidRemUnknown(),target = self.get_target()))
|
||||
|
||||
def QuerySnapshotsByVolume(self, volumeName, providerId = IID_ShadowCopyProvider):
|
||||
req = QuerySnapshotsByVolume()
|
||||
classInstance = self.get_cinstance()
|
||||
req['ORPCthis'] = classInstance.get_ORPCthis()
|
||||
req['ORPCthis']['flags'] = 0
|
||||
req['pwszVolumeName'] = volumeName
|
||||
req['ProviderId'] = providerId
|
||||
try:
|
||||
resp = self.request(req, self._iid, uuid = self.get_iPid())
|
||||
except DCERPCException as e:
|
||||
print(e)
|
||||
from impacket.winregistry import hexdump
|
||||
data = e.get_packet()
|
||||
hexdump(data)
|
||||
kk = QuerySnapshotsByVolumeResponse(data)
|
||||
kk.dump()
|
||||
#resp.dump()
|
||||
return IVssEnumObject(INTERFACE(self.get_cinstance(), ''.join(resp['ppEnum']['abData']), self.get_ipidRemUnknown(), target = self.get_target()))
|
||||
|
||||
class IVssDifferentialSoftwareSnapshotMgmt(IRemUnknown2):
|
||||
def __init__(self, interface):
|
||||
IRemUnknown2.__init__(self, interface)
|
||||
self._iid = IID_IVssDifferentialSoftwareSnapshotMgmt
|
||||
|
||||
def QueryDiffAreasOnVolume(self, pwszVolumeName):
|
||||
req = QueryDiffAreasOnVolume()
|
||||
classInstance = self.get_cinstance()
|
||||
req['ORPCthis'] = classInstance.get_ORPCthis()
|
||||
req['ORPCthis']['flags'] = 0
|
||||
req['pwszVolumeName'] = pwszVolumeName
|
||||
resp = self.request(req, self._iid, uuid = self.get_iPid())
|
||||
return IVssEnumMgmtObject(INTERFACE(self.get_cinstance(), ''.join(resp['ppEnum']['abData']), self.get_ipidRemUnknown(), target = self.get_target()))
|
||||
|
||||
def QueryDiffAreasForVolume(self, pwszVolumeName):
|
||||
req = QueryDiffAreasForVolume()
|
||||
classInstance = self.get_cinstance()
|
||||
req['ORPCthis'] = classInstance.get_ORPCthis()
|
||||
req['ORPCthis']['flags'] = 0
|
||||
req['pwszVolumeName'] = pwszVolumeName
|
||||
resp = self.request(req, self._iid, uuid = self.get_iPid())
|
||||
return IVssEnumMgmtObject(INTERFACE(self.get_cinstance(), ''.join(resp['ppEnum']['abData']), self.get_ipidRemUnknown(), target = self.get_target()))
|
267
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/dcom/vds.py
Normal file
267
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/dcom/vds.py
Normal file
|
@ -0,0 +1,267 @@
|
|||
# SECUREAUTH LABS. Copyright 2018 SecureAuth Corporation. All rights reserved.
|
||||
#
|
||||
# This software is provided under under a slightly modified version
|
||||
# of the Apache Software License. See the accompanying LICENSE file
|
||||
# for more information.
|
||||
#
|
||||
# Author: Alberto Solino (@agsolino)
|
||||
#
|
||||
# Description:
|
||||
# [MS-VDS]: Virtual Disk Service (VDS) Protocol
|
||||
# This was used as a way to test the DCOM runtime. Further
|
||||
# testing is needed to verify it is working as expected
|
||||
#
|
||||
# Best way to learn how to use these calls is to grab the protocol standard
|
||||
# so you understand what the call does, and then read the test case located
|
||||
# at https://github.com/SecureAuthCorp/impacket/tree/master/tests/SMB_RPC
|
||||
#
|
||||
# Since DCOM is like an OO RPC, instead of helper functions you will see the
|
||||
# classes described in the standards developed.
|
||||
# There are test cases for them too.
|
||||
#
|
||||
from __future__ import division
|
||||
from __future__ import print_function
|
||||
from impacket.dcerpc.v5.ndr import NDRSTRUCT, NDRUniConformantVaryingArray, NDRENUM
|
||||
from impacket.dcerpc.v5.dcomrt import DCOMCALL, DCOMANSWER, IRemUnknown2, PMInterfacePointer, INTERFACE
|
||||
from impacket.dcerpc.v5.dtypes import LPWSTR, ULONG, DWORD, SHORT, GUID
|
||||
from impacket.dcerpc.v5.rpcrt import DCERPCException
|
||||
from impacket.dcerpc.v5.enum import Enum
|
||||
from impacket import hresult_errors
|
||||
from impacket.uuid import string_to_bin
|
||||
|
||||
class DCERPCSessionError(DCERPCException):
|
||||
def __init__(self, error_string=None, error_code=None, packet=None):
|
||||
DCERPCException.__init__(self, error_string, error_code, packet)
|
||||
|
||||
def __str__( self ):
|
||||
if self.error_code in hresult_errors.ERROR_MESSAGES:
|
||||
error_msg_short = hresult_errors.ERROR_MESSAGES[self.error_code][0]
|
||||
error_msg_verbose = hresult_errors.ERROR_MESSAGES[self.error_code][1]
|
||||
return 'VDS SessionError: code: 0x%x - %s - %s' % (self.error_code, error_msg_short, error_msg_verbose)
|
||||
else:
|
||||
return 'VDS SessionError: unknown error code: 0x%x' % (self.error_code)
|
||||
|
||||
################################################################################
|
||||
# CONSTANTS
|
||||
################################################################################
|
||||
# 1.9 Standards Assignments
|
||||
CLSID_VirtualDiskService = string_to_bin('7D1933CB-86F6-4A98-8628-01BE94C9A575')
|
||||
IID_IEnumVdsObject = string_to_bin('118610B7-8D94-4030-B5B8-500889788E4E')
|
||||
IID_IVdsAdviseSink = string_to_bin('8326CD1D-CF59-4936-B786-5EFC08798E25')
|
||||
IID_IVdsAsync = string_to_bin('D5D23B6D-5A55-4492-9889-397A3C2D2DBC')
|
||||
IID_IVdsServiceInitialization = string_to_bin('4AFC3636-DB01-4052-80C3-03BBCB8D3C69')
|
||||
IID_IVdsService = string_to_bin('0818A8EF-9BA9-40D8-A6F9-E22833CC771E')
|
||||
IID_IVdsSwProvider = string_to_bin('9AA58360-CE33-4F92-B658-ED24B14425B8')
|
||||
IID_IVdsProvider = string_to_bin('10C5E575-7984-4E81-A56B-431F5F92AE42')
|
||||
|
||||
error_status_t = ULONG
|
||||
|
||||
# 2.2.1.1.3 VDS_OBJECT_ID
|
||||
VDS_OBJECT_ID = GUID
|
||||
|
||||
################################################################################
|
||||
# STRUCTURES
|
||||
################################################################################
|
||||
# 2.2.2.1.3.1 VDS_SERVICE_PROP
|
||||
class VDS_SERVICE_PROP(NDRSTRUCT):
|
||||
structure = (
|
||||
('pwszVersion',LPWSTR),
|
||||
('ulFlags',ULONG),
|
||||
)
|
||||
|
||||
class OBJECT_ARRAY(NDRUniConformantVaryingArray):
|
||||
item = PMInterfacePointer
|
||||
|
||||
# 2.2.2.7.1.1 VDS_PROVIDER_TYPE
|
||||
class VDS_PROVIDER_TYPE(NDRENUM):
|
||||
class enumItems(Enum):
|
||||
VDS_PT_UNKNOWN = 0
|
||||
VDS_PT_SOFTWARE = 1
|
||||
VDS_PT_HARDWARE = 2
|
||||
VDS_PT_VIRTUALDISK = 3
|
||||
VDS_PT_MAX = 4
|
||||
|
||||
# 2.2.2.7.2.1 VDS_PROVIDER_PROP
|
||||
class VDS_PROVIDER_PROP(NDRSTRUCT):
|
||||
structure = (
|
||||
('id',VDS_OBJECT_ID),
|
||||
('pwszName',LPWSTR),
|
||||
('guidVersionId',GUID),
|
||||
('pwszVersion',LPWSTR),
|
||||
('type',VDS_PROVIDER_TYPE),
|
||||
('ulFlags',ULONG),
|
||||
('ulStripeSizeFlags',ULONG),
|
||||
('sRebuildPriority',SHORT),
|
||||
)
|
||||
|
||||
################################################################################
|
||||
# RPC CALLS
|
||||
################################################################################
|
||||
|
||||
# 3.4.5.2.5.1 IVdsServiceInitialization::Initialize (Opnum 3)
|
||||
class IVdsServiceInitialization_Initialize(DCOMCALL):
|
||||
opnum = 3
|
||||
structure = (
|
||||
('pwszMachineName', LPWSTR),
|
||||
)
|
||||
|
||||
class IVdsServiceInitialization_InitializeResponse(DCOMANSWER):
|
||||
structure = (
|
||||
('ErrorCode', error_status_t),
|
||||
)
|
||||
|
||||
# 3.4.5.2.4.1 IVdsService::IsServiceReady (Opnum 3)
|
||||
class IVdsService_IsServiceReady(DCOMCALL):
|
||||
opnum = 3
|
||||
structure = (
|
||||
)
|
||||
|
||||
class IVdsService_IsServiceReadyResponse(DCOMANSWER):
|
||||
structure = (
|
||||
('ErrorCode', error_status_t),
|
||||
)
|
||||
|
||||
# 3.4.5.2.4.2 IVdsService::WaitForServiceReady (Opnum 4)
|
||||
class IVdsService_WaitForServiceReady(DCOMCALL):
|
||||
opnum = 4
|
||||
structure = (
|
||||
)
|
||||
|
||||
class IVdsService_WaitForServiceReadyResponse(DCOMANSWER):
|
||||
structure = (
|
||||
('ErrorCode', error_status_t),
|
||||
)
|
||||
|
||||
# 3.4.5.2.4.3 IVdsService::GetProperties (Opnum 5)
|
||||
class IVdsService_GetProperties(DCOMCALL):
|
||||
opnum = 5
|
||||
structure = (
|
||||
)
|
||||
|
||||
class IVdsService_GetPropertiesResponse(DCOMANSWER):
|
||||
structure = (
|
||||
('pServiceProp', VDS_SERVICE_PROP),
|
||||
('ErrorCode', error_status_t),
|
||||
)
|
||||
|
||||
# 3.4.5.2.4.4 IVdsService::QueryProviders (Opnum 6)
|
||||
class IVdsService_QueryProviders(DCOMCALL):
|
||||
opnum = 6
|
||||
structure = (
|
||||
('masks', DWORD),
|
||||
)
|
||||
|
||||
class IVdsService_QueryProvidersResponse(DCOMANSWER):
|
||||
structure = (
|
||||
('ppEnum', PMInterfacePointer),
|
||||
('ErrorCode', error_status_t),
|
||||
)
|
||||
|
||||
# 3.1.1.1 IEnumVdsObject Interface
|
||||
# 3.4.5.2.1.1 IEnumVdsObject::Next (Opnum 3)
|
||||
class IEnumVdsObject_Next(DCOMCALL):
|
||||
opnum = 3
|
||||
structure = (
|
||||
('celt', ULONG),
|
||||
)
|
||||
|
||||
class IEnumVdsObject_NextResponse(DCOMANSWER):
|
||||
structure = (
|
||||
('ppObjectArray', OBJECT_ARRAY),
|
||||
('pcFetched', ULONG),
|
||||
('ErrorCode', error_status_t),
|
||||
)
|
||||
# 3.4.5.2.14.1 IVdsProvider::GetProperties (Opnum 3)
|
||||
class IVdsProvider_GetProperties(DCOMCALL):
|
||||
opnum = 3
|
||||
structure = (
|
||||
)
|
||||
|
||||
class IVdsProvider_GetPropertiesResponse(DCOMANSWER):
|
||||
structure = (
|
||||
('pProviderProp', VDS_PROVIDER_PROP),
|
||||
('ErrorCode', error_status_t),
|
||||
)
|
||||
|
||||
################################################################################
|
||||
# OPNUMs and their corresponding structures
|
||||
################################################################################
|
||||
OPNUMS = {
|
||||
}
|
||||
|
||||
################################################################################
|
||||
# HELPER FUNCTIONS AND INTERFACES
|
||||
################################################################################
|
||||
class IEnumVdsObject(IRemUnknown2):
|
||||
def Next(self, celt=0xffff):
|
||||
request = IEnumVdsObject_Next()
|
||||
request['ORPCthis'] = self.get_cinstance().get_ORPCthis()
|
||||
request['ORPCthis']['flags'] = 0
|
||||
request['celt'] = celt
|
||||
try:
|
||||
resp = self.request(request, uuid = self.get_iPid())
|
||||
except Exception as e:
|
||||
resp = e.get_packet()
|
||||
# If it is S_FALSE(1) means less items were returned
|
||||
if resp['ErrorCode'] != 1:
|
||||
raise
|
||||
interfaces = list()
|
||||
for interface in resp['ppObjectArray']:
|
||||
interfaces.append(IRemUnknown2(INTERFACE(self.get_cinstance(), ''.join(interface['abData']), self.get_ipidRemUnknown(), target = self.get_target())))
|
||||
return interfaces
|
||||
|
||||
class IVdsProvider(IRemUnknown2):
|
||||
def GetProperties(self):
|
||||
request = IVdsProvider_GetProperties()
|
||||
request['ORPCthis'] = self.get_cinstance().get_ORPCthis()
|
||||
request['ORPCthis']['flags'] = 0
|
||||
resp = self.request(request, uuid = self.get_iPid())
|
||||
return resp
|
||||
|
||||
class IVdsServiceInitialization(IRemUnknown2):
|
||||
def __init__(self, interface):
|
||||
IRemUnknown2.__init__(self, interface)
|
||||
|
||||
def Initialize(self):
|
||||
request = IVdsServiceInitialization_Initialize()
|
||||
request['ORPCthis'] = self.get_cinstance().get_ORPCthis()
|
||||
request['ORPCthis']['flags'] = 0
|
||||
request['pwszMachineName'] = '\x00'
|
||||
resp = self.request(request, uuid = self.get_iPid())
|
||||
return resp
|
||||
|
||||
class IVdsService(IRemUnknown2):
|
||||
def __init__(self, interface):
|
||||
IRemUnknown2.__init__(self, interface)
|
||||
|
||||
def IsServiceReady(self):
|
||||
request = IVdsService_IsServiceReady()
|
||||
request['ORPCthis'] = self.get_cinstance().get_ORPCthis()
|
||||
request['ORPCthis']['flags'] = 0
|
||||
try:
|
||||
resp = self.request(request, uuid = self.get_iPid())
|
||||
except Exception as e:
|
||||
resp = e.get_packet()
|
||||
return resp
|
||||
|
||||
def WaitForServiceReady(self):
|
||||
request = IVdsService_WaitForServiceReady()
|
||||
request['ORPCthis'] = self.get_cinstance().get_ORPCthis()
|
||||
request['ORPCthis']['flags'] = 0
|
||||
resp = self.request(request, uuid = self.get_iPid())
|
||||
return resp
|
||||
|
||||
def GetProperties(self):
|
||||
request = IVdsService_GetProperties()
|
||||
request['ORPCthis'] = self.get_cinstance().get_ORPCthis()
|
||||
request['ORPCthis']['flags'] = 0
|
||||
resp = self.request(request, uuid = self.get_iPid())
|
||||
return resp
|
||||
|
||||
def QueryProviders(self, masks):
|
||||
request = IVdsService_QueryProviders()
|
||||
request['ORPCthis'] = self.get_cinstance().get_ORPCthis()
|
||||
request['ORPCthis']['flags'] = 0
|
||||
request['masks'] = masks
|
||||
resp = self.request(request, uuid = self.get_iPid())
|
||||
return IEnumVdsObject(INTERFACE(self.get_cinstance(), ''.join(resp['ppEnum']['abData']), self.get_ipidRemUnknown(), target = self.get_target()))
|
3250
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/dcom/wmi.py
Normal file
3250
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/dcom/wmi.py
Normal file
File diff suppressed because it is too large
Load diff
1903
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/dcomrt.py
Normal file
1903
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/dcomrt.py
Normal file
File diff suppressed because it is too large
Load diff
1018
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/dhcpm.py
Executable file
1018
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/dhcpm.py
Executable file
File diff suppressed because it is too large
Load diff
1517
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/drsuapi.py
Normal file
1517
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/drsuapi.py
Normal file
File diff suppressed because it is too large
Load diff
542
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/dtypes.py
Normal file
542
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/dtypes.py
Normal file
|
@ -0,0 +1,542 @@
|
|||
# SECUREAUTH LABS. Copyright 2018 SecureAuth Corporation. All rights reserved.
|
||||
#
|
||||
# This software is provided under under a slightly modified version
|
||||
# of the Apache Software License. See the accompanying LICENSE file
|
||||
# for more information.
|
||||
#
|
||||
# Author: Alberto Solino (@agsolino)
|
||||
#
|
||||
# Description:
|
||||
# [MS-DTYP] Interface mini implementation
|
||||
#
|
||||
from __future__ import division
|
||||
from __future__ import print_function
|
||||
from struct import pack
|
||||
from six import binary_type
|
||||
|
||||
from impacket.dcerpc.v5.ndr import NDRULONG, NDRUHYPER, NDRSHORT, NDRLONG, NDRPOINTER, NDRUniConformantArray, \
|
||||
NDRUniFixedArray, NDR, NDRHYPER, NDRSMALL, NDRPOINTERNULL, NDRSTRUCT, \
|
||||
NDRUSMALL, NDRBOOLEAN, NDRUSHORT, NDRFLOAT, NDRDOUBLEFLOAT, NULL
|
||||
|
||||
DWORD = NDRULONG
|
||||
BOOL = NDRULONG
|
||||
UCHAR = NDRUSMALL
|
||||
SHORT = NDRSHORT
|
||||
NULL = NULL
|
||||
|
||||
class LPDWORD(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', DWORD),
|
||||
)
|
||||
|
||||
class PSHORT(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', SHORT),
|
||||
)
|
||||
|
||||
class PBOOL(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', BOOL),
|
||||
)
|
||||
|
||||
class LPBYTE(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', NDRUniConformantArray),
|
||||
)
|
||||
PBYTE = LPBYTE
|
||||
|
||||
# 2.2.4 BOOLEAN
|
||||
BOOLEAN = NDRBOOLEAN
|
||||
|
||||
# 2.2.6 BYTE
|
||||
BYTE = NDRUSMALL
|
||||
|
||||
# 2.2.7 CHAR
|
||||
CHAR = NDRSMALL
|
||||
class PCHAR(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', CHAR),
|
||||
)
|
||||
|
||||
class WIDESTR(NDRUniFixedArray):
|
||||
def getDataLen(self, data, offset=0):
|
||||
return data.find(b'\x00\x00\x00', offset)+3-offset
|
||||
|
||||
def __setitem__(self, key, value):
|
||||
if key == 'Data':
|
||||
try:
|
||||
self.fields[key] = value.encode('utf-16le')
|
||||
except UnicodeDecodeError:
|
||||
import sys
|
||||
self.fields[key] = value.decode(sys.getfilesystemencoding()).encode('utf-16le')
|
||||
|
||||
self.data = None # force recompute
|
||||
else:
|
||||
return NDR.__setitem__(self, key, value)
|
||||
|
||||
def __getitem__(self, key):
|
||||
if key == 'Data':
|
||||
return self.fields[key].decode('utf-16le')
|
||||
else:
|
||||
return NDR.__getitem__(self,key)
|
||||
|
||||
class STR(NDRSTRUCT):
|
||||
commonHdr = (
|
||||
('MaximumCount', '<L=len(Data)'),
|
||||
('Offset','<L=0'),
|
||||
('ActualCount','<L=len(Data)'),
|
||||
)
|
||||
commonHdr64 = (
|
||||
('MaximumCount', '<Q=len(Data)'),
|
||||
('Offset','<Q=0'),
|
||||
('ActualCount','<Q=len(Data)'),
|
||||
)
|
||||
structure = (
|
||||
('Data',':'),
|
||||
)
|
||||
|
||||
def dump(self, msg = None, indent = 0):
|
||||
if msg is None:
|
||||
msg = self.__class__.__name__
|
||||
if msg != '':
|
||||
print("%s" % msg, end=' ')
|
||||
# Here just print the data
|
||||
print(" %r" % (self['Data']), end=' ')
|
||||
|
||||
def __setitem__(self, key, value):
|
||||
if key == 'Data':
|
||||
try:
|
||||
if not isinstance(value, binary_type):
|
||||
self.fields[key] = value.encode('utf-8')
|
||||
else:
|
||||
# if it is a binary type (str in Python 2, bytes in Python 3), then we assume it is a raw buffer
|
||||
self.fields[key] = value
|
||||
except UnicodeDecodeError:
|
||||
import sys
|
||||
self.fields[key] = value.decode(sys.getfilesystemencoding()).encode('utf-8')
|
||||
self.fields['MaximumCount'] = None
|
||||
self.fields['ActualCount'] = None
|
||||
self.data = None # force recompute
|
||||
else:
|
||||
return NDR.__setitem__(self, key, value)
|
||||
|
||||
def __getitem__(self, key):
|
||||
if key == 'Data':
|
||||
try:
|
||||
return self.fields[key].decode('utf-8')
|
||||
except UnicodeDecodeError:
|
||||
# if we could't decode it, we assume it is a raw buffer
|
||||
return self.fields[key]
|
||||
else:
|
||||
return NDR.__getitem__(self,key)
|
||||
|
||||
def getDataLen(self, data, offset=0):
|
||||
return self["ActualCount"]
|
||||
|
||||
class LPSTR(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', STR),
|
||||
)
|
||||
|
||||
class WSTR(NDRSTRUCT):
|
||||
commonHdr = (
|
||||
('MaximumCount', '<L=len(Data)//2'),
|
||||
('Offset','<L=0'),
|
||||
('ActualCount','<L=len(Data)//2'),
|
||||
)
|
||||
commonHdr64 = (
|
||||
('MaximumCount', '<Q=len(Data)//2'),
|
||||
('Offset','<Q=0'),
|
||||
('ActualCount','<Q=len(Data)//2'),
|
||||
)
|
||||
structure = (
|
||||
('Data',':'),
|
||||
)
|
||||
|
||||
def dump(self, msg = None, indent = 0):
|
||||
if msg is None:
|
||||
msg = self.__class__.__name__
|
||||
if msg != '':
|
||||
print("%s" % msg, end=' ')
|
||||
# Here just print the data
|
||||
print(" %r" % (self['Data']), end=' ')
|
||||
|
||||
def getDataLen(self, data, offset=0):
|
||||
return self["ActualCount"]*2
|
||||
|
||||
def __setitem__(self, key, value):
|
||||
if key == 'Data':
|
||||
try:
|
||||
self.fields[key] = value.encode('utf-16le')
|
||||
except UnicodeDecodeError:
|
||||
import sys
|
||||
self.fields[key] = value.decode(sys.getfilesystemencoding()).encode('utf-16le')
|
||||
self.fields['MaximumCount'] = None
|
||||
self.fields['ActualCount'] = None
|
||||
self.data = None # force recompute
|
||||
else:
|
||||
return NDR.__setitem__(self, key, value)
|
||||
|
||||
def __getitem__(self, key):
|
||||
if key == 'Data':
|
||||
return self.fields[key].decode('utf-16le')
|
||||
else:
|
||||
return NDR.__getitem__(self,key)
|
||||
|
||||
class LPWSTR(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', WSTR),
|
||||
)
|
||||
|
||||
# 2.2.5 BSTR
|
||||
BSTR = LPWSTR
|
||||
|
||||
# 2.2.8 DOUBLE
|
||||
DOUBLE = NDRDOUBLEFLOAT
|
||||
class PDOUBLE(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', DOUBLE),
|
||||
)
|
||||
|
||||
# 2.2.15 FLOAT
|
||||
FLOAT = NDRFLOAT
|
||||
class PFLOAT(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', FLOAT),
|
||||
)
|
||||
|
||||
# 2.2.18 HRESULT
|
||||
HRESULT = NDRLONG
|
||||
class PHRESULT(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', HRESULT),
|
||||
)
|
||||
|
||||
# 2.2.19 INT
|
||||
INT = NDRLONG
|
||||
class PINT(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', INT),
|
||||
)
|
||||
|
||||
# 2.2.26 LMSTR
|
||||
LMSTR = LPWSTR
|
||||
|
||||
# 2.2.27 LONG
|
||||
LONG = NDRLONG
|
||||
class LPLONG(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', LONG),
|
||||
)
|
||||
|
||||
PLONG = LPLONG
|
||||
|
||||
# 2.2.28 LONGLONG
|
||||
LONGLONG = NDRHYPER
|
||||
|
||||
class PLONGLONG(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', LONGLONG),
|
||||
)
|
||||
|
||||
# 2.2.31 LONG64
|
||||
LONG64 = NDRUHYPER
|
||||
class PLONG64(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', LONG64),
|
||||
)
|
||||
|
||||
# 2.2.32 LPCSTR
|
||||
LPCSTR = LPSTR
|
||||
|
||||
# 2.2.36 NET_API_STATUS
|
||||
NET_API_STATUS = DWORD
|
||||
|
||||
# 2.2.52 ULONG_PTR
|
||||
ULONG_PTR = NDRULONG
|
||||
# 2.2.10 DWORD_PTR
|
||||
DWORD_PTR = ULONG_PTR
|
||||
|
||||
# 2.3.2 GUID and UUID
|
||||
class GUID(NDRSTRUCT):
|
||||
structure = (
|
||||
('Data','16s=b""'),
|
||||
)
|
||||
|
||||
def getAlignment(self):
|
||||
return 4
|
||||
|
||||
class PGUID(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', GUID),
|
||||
)
|
||||
|
||||
UUID = GUID
|
||||
PUUID = PGUID
|
||||
|
||||
# 2.2.37 NTSTATUS
|
||||
NTSTATUS = DWORD
|
||||
|
||||
# 2.2.45 UINT
|
||||
UINT = NDRULONG
|
||||
class PUINT(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', UINT),
|
||||
)
|
||||
|
||||
# 2.2.50 ULONG
|
||||
ULONG = NDRULONG
|
||||
class PULONG(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', ULONG),
|
||||
)
|
||||
|
||||
LPULONG = PULONG
|
||||
|
||||
# 2.2.54 ULONGLONG
|
||||
ULONGLONG = NDRUHYPER
|
||||
class PULONGLONG(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', ULONGLONG),
|
||||
)
|
||||
|
||||
# 2.2.57 USHORT
|
||||
USHORT = NDRUSHORT
|
||||
class PUSHORT(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', USHORT),
|
||||
)
|
||||
|
||||
# 2.2.59 WCHAR
|
||||
WCHAR = WSTR
|
||||
PWCHAR = LPWSTR
|
||||
|
||||
# 2.2.61 WORD
|
||||
WORD = NDRUSHORT
|
||||
class PWORD(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', WORD),
|
||||
)
|
||||
LPWORD = PWORD
|
||||
|
||||
# 2.3.1 FILETIME
|
||||
class FILETIME(NDRSTRUCT):
|
||||
structure = (
|
||||
('dwLowDateTime', DWORD),
|
||||
('dwHighDateTime', LONG),
|
||||
)
|
||||
|
||||
class PFILETIME(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', FILETIME),
|
||||
)
|
||||
|
||||
# 2.3.3 LARGE_INTEGER
|
||||
LARGE_INTEGER = NDRHYPER
|
||||
class PLARGE_INTEGER(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', LARGE_INTEGER),
|
||||
)
|
||||
|
||||
# 2.3.5 LUID
|
||||
class LUID(NDRSTRUCT):
|
||||
structure = (
|
||||
('LowPart', DWORD),
|
||||
('HighPart', LONG),
|
||||
)
|
||||
|
||||
# 2.3.8 RPC_UNICODE_STRING
|
||||
class RPC_UNICODE_STRING(NDRSTRUCT):
|
||||
# Here we're doing some tricks to make this data type
|
||||
# easier to use. It's exactly the same as defined. I changed the
|
||||
# Buffer name for Data, so users can write directly to the datatype
|
||||
# instead of writing to datatype['Buffer'].
|
||||
# The drawback is you cannot directly access the Length and
|
||||
# MaximumLength fields.
|
||||
# If you really need it, you will need to do it this way:
|
||||
# class TT(NDRCALL):
|
||||
# structure = (
|
||||
# ('str1', RPC_UNICODE_STRING),
|
||||
# )
|
||||
#
|
||||
# nn = TT()
|
||||
# nn.fields['str1'].fields['MaximumLength'] = 30
|
||||
structure = (
|
||||
('Length','<H=0'),
|
||||
('MaximumLength','<H=0'),
|
||||
('Data',LPWSTR),
|
||||
)
|
||||
|
||||
def __setitem__(self, key, value):
|
||||
if key == 'Data' and isinstance(value, NDR) is False:
|
||||
try:
|
||||
value.encode('utf-16le')
|
||||
except UnicodeDecodeError:
|
||||
import sys
|
||||
value = value.decode(sys.getfilesystemencoding())
|
||||
self['Length'] = len(value)*2
|
||||
self['MaximumLength'] = len(value)*2
|
||||
return NDRSTRUCT.__setitem__(self, key, value)
|
||||
|
||||
def dump(self, msg = None, indent = 0):
|
||||
if msg is None:
|
||||
msg = self.__class__.__name__
|
||||
if msg != '':
|
||||
print("%s" % msg, end=' ')
|
||||
|
||||
if isinstance(self.fields['Data'] , NDRPOINTERNULL):
|
||||
print(" NULL", end=' ')
|
||||
elif self.fields['Data']['ReferentID'] == 0:
|
||||
print(" NULL", end=' ')
|
||||
else:
|
||||
return self.fields['Data'].dump('',indent)
|
||||
|
||||
class PRPC_UNICODE_STRING(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', RPC_UNICODE_STRING ),
|
||||
)
|
||||
|
||||
# 2.3.9 OBJECT_TYPE_LIST
|
||||
ACCESS_MASK = DWORD
|
||||
class OBJECT_TYPE_LIST(NDRSTRUCT):
|
||||
structure = (
|
||||
('Level', WORD),
|
||||
('Remaining',ACCESS_MASK),
|
||||
('ObjectType',PGUID),
|
||||
)
|
||||
|
||||
class POBJECT_TYPE_LIST(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', OBJECT_TYPE_LIST ),
|
||||
)
|
||||
|
||||
# 2.3.13 SYSTEMTIME
|
||||
class SYSTEMTIME(NDRSTRUCT):
|
||||
structure = (
|
||||
('wYear', WORD),
|
||||
('wMonth', WORD),
|
||||
('wDayOfWeek', WORD),
|
||||
('wDay', WORD),
|
||||
('wHour', WORD),
|
||||
('wMinute', WORD),
|
||||
('wSecond', WORD),
|
||||
('wMilliseconds', WORD),
|
||||
)
|
||||
|
||||
class PSYSTEMTIME(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', SYSTEMTIME ),
|
||||
)
|
||||
|
||||
# 2.3.15 ULARGE_INTEGER
|
||||
class ULARGE_INTEGER(NDRSTRUCT):
|
||||
structure = (
|
||||
('QuadPart', LONG64),
|
||||
)
|
||||
|
||||
class PULARGE_INTEGER(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', ULARGE_INTEGER),
|
||||
)
|
||||
|
||||
# 2.4.2.3 RPC_SID
|
||||
class DWORD_ARRAY(NDRUniConformantArray):
|
||||
item = '<L'
|
||||
|
||||
class RPC_SID_IDENTIFIER_AUTHORITY(NDRUniFixedArray):
|
||||
align = 1
|
||||
align64 = 1
|
||||
def getDataLen(self, data, offset=0):
|
||||
return 6
|
||||
|
||||
class RPC_SID(NDRSTRUCT):
|
||||
structure = (
|
||||
('Revision',NDRSMALL),
|
||||
('SubAuthorityCount',NDRSMALL),
|
||||
('IdentifierAuthority',RPC_SID_IDENTIFIER_AUTHORITY),
|
||||
('SubAuthority',DWORD_ARRAY),
|
||||
)
|
||||
def getData(self, soFar = 0):
|
||||
self['SubAuthorityCount'] = len(self['SubAuthority'])
|
||||
return NDRSTRUCT.getData(self, soFar)
|
||||
|
||||
def fromCanonical(self, canonical):
|
||||
items = canonical.split('-')
|
||||
self['Revision'] = int(items[1])
|
||||
self['IdentifierAuthority'] = b'\x00\x00\x00\x00\x00' + pack('B',int(items[2]))
|
||||
self['SubAuthorityCount'] = len(items) - 3
|
||||
for i in range(self['SubAuthorityCount']):
|
||||
self['SubAuthority'].append(int(items[i+3]))
|
||||
|
||||
def formatCanonical(self):
|
||||
ans = 'S-%d-%d' % (self['Revision'], ord(self['IdentifierAuthority'][5:6]))
|
||||
for i in range(self['SubAuthorityCount']):
|
||||
ans += '-%d' % self['SubAuthority'][i]
|
||||
return ans
|
||||
|
||||
class PRPC_SID(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', RPC_SID),
|
||||
)
|
||||
|
||||
PSID = PRPC_SID
|
||||
|
||||
# 2.4.3 ACCESS_MASK
|
||||
GENERIC_READ = 0x80000000
|
||||
GENERIC_WRITE = 0x40000000
|
||||
GENERIC_EXECUTE = 0x20000000
|
||||
GENERIC_ALL = 0x10000000
|
||||
MAXIMUM_ALLOWED = 0x02000000
|
||||
ACCESS_SYSTEM_SECURITY = 0x01000000
|
||||
SYNCHRONIZE = 0x00100000
|
||||
WRITE_OWNER = 0x00080000
|
||||
WRITE_DACL = 0x00040000
|
||||
READ_CONTROL = 0x00020000
|
||||
DELETE = 0x00010000
|
||||
|
||||
# 2.4.5.1 ACL--RPC Representation
|
||||
class ACL(NDRSTRUCT):
|
||||
structure = (
|
||||
('AclRevision',NDRSMALL),
|
||||
('Sbz1',NDRSMALL),
|
||||
('AclSize',NDRSHORT),
|
||||
('AceCount',NDRSHORT),
|
||||
('Sbz2',NDRSHORT),
|
||||
)
|
||||
|
||||
class PACL(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', ACL),
|
||||
)
|
||||
|
||||
# 2.4.6.1 SECURITY_DESCRIPTOR--RPC Representation
|
||||
class SECURITY_DESCRIPTOR(NDRSTRUCT):
|
||||
structure = (
|
||||
('Revision',UCHAR),
|
||||
('Sbz1',UCHAR),
|
||||
('Control',USHORT),
|
||||
('Owner',PSID),
|
||||
('Group',PSID),
|
||||
('Sacl',PACL),
|
||||
('Dacl',PACL),
|
||||
)
|
||||
|
||||
# 2.4.7 SECURITY_INFORMATION
|
||||
OWNER_SECURITY_INFORMATION = 0x00000001
|
||||
GROUP_SECURITY_INFORMATION = 0x00000002
|
||||
DACL_SECURITY_INFORMATION = 0x00000004
|
||||
SACL_SECURITY_INFORMATION = 0x00000008
|
||||
LABEL_SECURITY_INFORMATION = 0x00000010
|
||||
UNPROTECTED_SACL_SECURITY_INFORMATION = 0x10000000
|
||||
UNPROTECTED_DACL_SECURITY_INFORMATION = 0x20000000
|
||||
PROTECTED_SACL_SECURITY_INFORMATION = 0x40000000
|
||||
PROTECTED_DACL_SECURITY_INFORMATION = 0x80000000
|
||||
ATTRIBUTE_SECURITY_INFORMATION = 0x00000020
|
||||
SCOPE_SECURITY_INFORMATION = 0x00000040
|
||||
BACKUP_SECURITY_INFORMATION = 0x00010000
|
||||
|
||||
SECURITY_INFORMATION = DWORD
|
||||
class PSECURITY_INFORMATION(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', SECURITY_INFORMATION),
|
||||
)
|
754
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/enum.py
Normal file
754
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/enum.py
Normal file
|
@ -0,0 +1,754 @@
|
|||
"""Python Enumerations"""
|
||||
|
||||
import sys as _sys
|
||||
|
||||
__all__ = ['Enum', 'IntEnum', 'unique']
|
||||
|
||||
pyver = float('%s.%s' % _sys.version_info[:2])
|
||||
|
||||
try:
|
||||
any
|
||||
except NameError:
|
||||
def any(iterable):
|
||||
for element in iterable:
|
||||
if element:
|
||||
return True
|
||||
return False
|
||||
|
||||
|
||||
class _RouteClassAttributeToGetattr(object):
|
||||
"""Route attribute access on a class to __getattr__.
|
||||
|
||||
This is a descriptor, used to define attributes that act differently when
|
||||
accessed through an instance and through a class. Instance access remains
|
||||
normal, but access to an attribute through a class will be routed to the
|
||||
class's __getattr__ method; this is done by raising AttributeError.
|
||||
|
||||
"""
|
||||
def __init__(self, fget=None):
|
||||
self.fget = fget
|
||||
|
||||
def __get__(self, instance, ownerclass=None):
|
||||
if instance is None:
|
||||
raise AttributeError()
|
||||
return self.fget(instance)
|
||||
|
||||
def __set__(self, instance, value):
|
||||
raise AttributeError("can't set attribute")
|
||||
|
||||
def __delete__(self, instance):
|
||||
raise AttributeError("can't delete attribute")
|
||||
|
||||
|
||||
def _is_descriptor(obj):
|
||||
"""Returns True if obj is a descriptor, False otherwise."""
|
||||
return (
|
||||
hasattr(obj, '__get__') or
|
||||
hasattr(obj, '__set__') or
|
||||
hasattr(obj, '__delete__'))
|
||||
|
||||
|
||||
def _is_dunder(name):
|
||||
"""Returns True if a __dunder__ name, False otherwise."""
|
||||
return (name[:2] == name[-2:] == '__' and
|
||||
name[2:3] != '_' and
|
||||
name[-3:-2] != '_' and
|
||||
len(name) > 4)
|
||||
|
||||
|
||||
def _is_sunder(name):
|
||||
"""Returns True if a _sunder_ name, False otherwise."""
|
||||
return (name[0] == name[-1] == '_' and
|
||||
name[1:2] != '_' and
|
||||
name[-2:-1] != '_' and
|
||||
len(name) > 2)
|
||||
|
||||
|
||||
def _make_class_unpicklable(cls):
|
||||
"""Make the given class un-picklable."""
|
||||
def _break_on_call_reduce(self):
|
||||
raise TypeError('%r cannot be pickled' % self)
|
||||
cls.__reduce__ = _break_on_call_reduce
|
||||
cls.__module__ = '<unknown>'
|
||||
|
||||
|
||||
class _EnumDict(dict):
|
||||
"""Track enum member order and ensure member names are not reused.
|
||||
|
||||
EnumMeta will use the names found in self._member_names as the
|
||||
enumeration member names.
|
||||
|
||||
"""
|
||||
def __init__(self):
|
||||
super(_EnumDict, self).__init__()
|
||||
self._member_names = []
|
||||
|
||||
def __setitem__(self, key, value):
|
||||
"""Changes anything not dundered or not a descriptor.
|
||||
|
||||
If a descriptor is added with the same name as an enum member, the name
|
||||
is removed from _member_names (this may leave a hole in the numerical
|
||||
sequence of values).
|
||||
|
||||
If an enum member name is used twice, an error is raised; duplicate
|
||||
values are not checked for.
|
||||
|
||||
Single underscore (sunder) names are reserved.
|
||||
|
||||
Note: in 3.x __order__ is simply discarded as a not necessary piece
|
||||
leftover from 2.x
|
||||
|
||||
"""
|
||||
if pyver >= 3.0 and key == '__order__':
|
||||
return
|
||||
if _is_sunder(key):
|
||||
raise ValueError('_names_ are reserved for future Enum use')
|
||||
elif _is_dunder(key):
|
||||
pass
|
||||
elif key in self._member_names:
|
||||
# descriptor overwriting an enum?
|
||||
raise TypeError('Attempted to reuse key: %r' % key)
|
||||
elif not _is_descriptor(value):
|
||||
if key in self:
|
||||
# enum overwriting a descriptor?
|
||||
raise TypeError('Key already defined as: %r' % self[key])
|
||||
self._member_names.append(key)
|
||||
super(_EnumDict, self).__setitem__(key, value)
|
||||
|
||||
|
||||
# Dummy value for Enum as EnumMeta explicitly checks for it, but of course until
|
||||
# EnumMeta finishes running the first time the Enum class doesn't exist. This
|
||||
# is also why there are checks in EnumMeta like `if Enum is not None`
|
||||
Enum = None
|
||||
|
||||
|
||||
class EnumMeta(type):
|
||||
"""Metaclass for Enum"""
|
||||
@classmethod
|
||||
def __prepare__(metacls, cls, bases):
|
||||
return _EnumDict()
|
||||
|
||||
def __new__(metacls, cls, bases, classdict):
|
||||
# an Enum class is final once enumeration items have been defined; it
|
||||
# cannot be mixed with other types (int, float, etc.) if it has an
|
||||
# inherited __new__ unless a new __new__ is defined (or the resulting
|
||||
# class will fail).
|
||||
if type(classdict) is dict:
|
||||
original_dict = classdict
|
||||
classdict = _EnumDict()
|
||||
for k, v in original_dict.items():
|
||||
classdict[k] = v
|
||||
|
||||
member_type, first_enum = metacls._get_mixins_(bases)
|
||||
#if member_type is object:
|
||||
# use_args = False
|
||||
#else:
|
||||
# use_args = True
|
||||
__new__, save_new, use_args = metacls._find_new_(classdict, member_type,
|
||||
first_enum)
|
||||
# save enum items into separate mapping so they don't get baked into
|
||||
# the new class
|
||||
members = dict((k, classdict[k]) for k in classdict._member_names)
|
||||
for name in classdict._member_names:
|
||||
del classdict[name]
|
||||
|
||||
# py2 support for definition order
|
||||
__order__ = classdict.get('__order__')
|
||||
if __order__ is None:
|
||||
__order__ = classdict._member_names
|
||||
if pyver < 3.0:
|
||||
order_specified = False
|
||||
else:
|
||||
order_specified = True
|
||||
else:
|
||||
del classdict['__order__']
|
||||
order_specified = True
|
||||
if pyver < 3.0:
|
||||
__order__ = __order__.replace(',', ' ').split()
|
||||
aliases = [name for name in members if name not in __order__]
|
||||
__order__ += aliases
|
||||
|
||||
# check for illegal enum names (any others?)
|
||||
invalid_names = set(members) & set(['mro'])
|
||||
if invalid_names:
|
||||
raise ValueError('Invalid enum member name(s): %s' % (
|
||||
', '.join(invalid_names), ))
|
||||
|
||||
# create our new Enum type
|
||||
enum_class = super(EnumMeta, metacls).__new__(metacls, cls, bases, classdict)
|
||||
enum_class._member_names_ = [] # names in random order
|
||||
enum_class._member_map_ = {} # name->value map
|
||||
enum_class._member_type_ = member_type
|
||||
|
||||
# Reverse value->name map for hashable values.
|
||||
enum_class._value2member_map_ = {}
|
||||
|
||||
# check for a __getnewargs__, and if not present sabotage
|
||||
# pickling, since it won't work anyway
|
||||
if (member_type is not object and
|
||||
member_type.__dict__.get('__getnewargs__') is None
|
||||
):
|
||||
_make_class_unpicklable(enum_class)
|
||||
|
||||
# instantiate them, checking for duplicates as we go
|
||||
# we instantiate first instead of checking for duplicates first in case
|
||||
# a custom __new__ is doing something funky with the values -- such as
|
||||
# auto-numbering ;)
|
||||
if __new__ is None:
|
||||
__new__ = enum_class.__new__
|
||||
for member_name in __order__:
|
||||
value = members[member_name]
|
||||
if not isinstance(value, tuple):
|
||||
args = (value, )
|
||||
else:
|
||||
args = value
|
||||
if member_type is tuple: # special case for tuple enums
|
||||
args = (args, ) # wrap it one more time
|
||||
if not use_args or not args:
|
||||
enum_member = __new__(enum_class)
|
||||
if not hasattr(enum_member, '_value_'):
|
||||
enum_member._value_ = value
|
||||
else:
|
||||
enum_member = __new__(enum_class, *args)
|
||||
if not hasattr(enum_member, '_value_'):
|
||||
enum_member._value_ = member_type(*args)
|
||||
value = enum_member._value_
|
||||
enum_member._name_ = member_name
|
||||
enum_member.__objclass__ = enum_class
|
||||
enum_member.__init__(*args)
|
||||
# If another member with the same value was already defined, the
|
||||
# new member becomes an alias to the existing one.
|
||||
for name, canonical_member in enum_class._member_map_.items():
|
||||
if canonical_member.value == enum_member._value_:
|
||||
enum_member = canonical_member
|
||||
break
|
||||
else:
|
||||
# Aliases don't appear in member names (only in __members__).
|
||||
enum_class._member_names_.append(member_name)
|
||||
enum_class._member_map_[member_name] = enum_member
|
||||
try:
|
||||
# This may fail if value is not hashable. We can't add the value
|
||||
# to the map, and by-value lookups for this value will be
|
||||
# linear.
|
||||
enum_class._value2member_map_[value] = enum_member
|
||||
except TypeError:
|
||||
pass
|
||||
|
||||
# in Python2.x we cannot know definition order, so go with value order
|
||||
# unless __order__ was specified in the class definition
|
||||
if not order_specified:
|
||||
enum_class._member_names_ = [
|
||||
e[0] for e in sorted(
|
||||
[(name, enum_class._member_map_[name]) for name in enum_class._member_names_],
|
||||
key=lambda t: t[1]._value_
|
||||
)]
|
||||
|
||||
# double check that repr and friends are not the mixin's or various
|
||||
# things break (such as pickle)
|
||||
if Enum is not None:
|
||||
setattr(enum_class, '__getnewargs__', Enum.__getnewargs__)
|
||||
for name in ('__repr__', '__str__', '__format__'):
|
||||
class_method = getattr(enum_class, name)
|
||||
obj_method = getattr(member_type, name, None)
|
||||
enum_method = getattr(first_enum, name, None)
|
||||
if obj_method is not None and obj_method is class_method:
|
||||
setattr(enum_class, name, enum_method)
|
||||
|
||||
# method resolution and int's are not playing nice
|
||||
# Python's less than 2.6 use __cmp__
|
||||
|
||||
if pyver < 2.6:
|
||||
|
||||
if issubclass(enum_class, int):
|
||||
setattr(enum_class, '__cmp__', getattr(int, '__cmp__'))
|
||||
|
||||
elif pyver < 3.0:
|
||||
|
||||
if issubclass(enum_class, int):
|
||||
for method in (
|
||||
'__le__',
|
||||
'__lt__',
|
||||
'__gt__',
|
||||
'__ge__',
|
||||
'__eq__',
|
||||
'__ne__',
|
||||
'__hash__',
|
||||
):
|
||||
setattr(enum_class, method, getattr(int, method))
|
||||
|
||||
# replace any other __new__ with our own (as long as Enum is not None,
|
||||
# anyway) -- again, this is to support pickle
|
||||
if Enum is not None:
|
||||
# if the user defined their own __new__, save it before it gets
|
||||
# clobbered in case they subclass later
|
||||
if save_new:
|
||||
setattr(enum_class, '__member_new__', enum_class.__dict__['__new__'])
|
||||
setattr(enum_class, '__new__', Enum.__dict__['__new__'])
|
||||
return enum_class
|
||||
|
||||
def __call__(cls, value, names=None, module=None, type=None):
|
||||
"""Either returns an existing member, or creates a new enum class.
|
||||
|
||||
This method is used both when an enum class is given a value to match
|
||||
to an enumeration member (i.e. Color(3)) and for the functional API
|
||||
(i.e. Color = Enum('Color', names='red green blue')).
|
||||
|
||||
When used for the functional API: `module`, if set, will be stored in
|
||||
the new class' __module__ attribute; `type`, if set, will be mixed in
|
||||
as the first base class.
|
||||
|
||||
Note: if `module` is not set this routine will attempt to discover the
|
||||
calling module by walking the frame stack; if this is unsuccessful
|
||||
the resulting class will not be pickleable.
|
||||
|
||||
"""
|
||||
if names is None: # simple value lookup
|
||||
return cls.__new__(cls, value)
|
||||
# otherwise, functional API: we're creating a new Enum type
|
||||
return cls._create_(value, names, module=module, type=type)
|
||||
|
||||
def __contains__(cls, member):
|
||||
return isinstance(member, cls) and member.name in cls._member_map_
|
||||
|
||||
def __delattr__(cls, attr):
|
||||
# nicer error message when someone tries to delete an attribute
|
||||
# (see issue19025).
|
||||
if attr in cls._member_map_:
|
||||
raise AttributeError(
|
||||
"%s: cannot delete Enum member." % cls.__name__)
|
||||
super(EnumMeta, cls).__delattr__(attr)
|
||||
|
||||
def __dir__(self):
|
||||
return (['__class__', '__doc__', '__members__', '__module__'] +
|
||||
self._member_names_)
|
||||
|
||||
@property
|
||||
def __members__(cls):
|
||||
"""Returns a mapping of member name->value.
|
||||
|
||||
This mapping lists all enum members, including aliases. Note that this
|
||||
is a copy of the internal mapping.
|
||||
|
||||
"""
|
||||
return cls._member_map_.copy()
|
||||
|
||||
def __getattr__(cls, name):
|
||||
"""Return the enum member matching `name`
|
||||
|
||||
We use __getattr__ instead of descriptors or inserting into the enum
|
||||
class' __dict__ in order to support `name` and `value` being both
|
||||
properties for enum members (which live in the class' __dict__) and
|
||||
enum members themselves.
|
||||
|
||||
"""
|
||||
if _is_dunder(name):
|
||||
raise AttributeError(name)
|
||||
try:
|
||||
return cls._member_map_[name]
|
||||
except KeyError:
|
||||
raise AttributeError(name)
|
||||
|
||||
def __getitem__(cls, name):
|
||||
return cls._member_map_[name]
|
||||
|
||||
def __iter__(cls):
|
||||
return (cls._member_map_[name] for name in cls._member_names_)
|
||||
|
||||
def __reversed__(cls):
|
||||
return (cls._member_map_[name] for name in reversed(cls._member_names_))
|
||||
|
||||
def __len__(cls):
|
||||
return len(cls._member_names_)
|
||||
|
||||
def __repr__(cls):
|
||||
return "<enum %r>" % cls.__name__
|
||||
|
||||
def __setattr__(cls, name, value):
|
||||
"""Block attempts to reassign Enum members.
|
||||
|
||||
A simple assignment to the class namespace only changes one of the
|
||||
several possible ways to get an Enum member from the Enum class,
|
||||
resulting in an inconsistent Enumeration.
|
||||
|
||||
"""
|
||||
member_map = cls.__dict__.get('_member_map_', {})
|
||||
if name in member_map:
|
||||
raise AttributeError('Cannot reassign members.')
|
||||
super(EnumMeta, cls).__setattr__(name, value)
|
||||
|
||||
def _create_(cls, class_name, names=None, module=None, type=None):
|
||||
"""Convenience method to create a new Enum class.
|
||||
|
||||
`names` can be:
|
||||
|
||||
* A string containing member names, separated either with spaces or
|
||||
commas. Values are auto-numbered from 1.
|
||||
* An iterable of member names. Values are auto-numbered from 1.
|
||||
* An iterable of (member name, value) pairs.
|
||||
* A mapping of member name -> value.
|
||||
|
||||
"""
|
||||
metacls = cls.__class__
|
||||
if type is None:
|
||||
bases = (cls, )
|
||||
else:
|
||||
bases = (type, cls)
|
||||
classdict = metacls.__prepare__(class_name, bases)
|
||||
__order__ = []
|
||||
|
||||
# special processing needed for names?
|
||||
if isinstance(names, str):
|
||||
names = names.replace(',', ' ').split()
|
||||
if isinstance(names, (tuple, list)) and isinstance(names[0], str):
|
||||
names = [(e, i+1) for (i, e) in enumerate(names)]
|
||||
|
||||
# Here, names is either an iterable of (name, value) or a mapping.
|
||||
for item in names:
|
||||
if isinstance(item, str):
|
||||
member_name, member_value = item, names[item]
|
||||
else:
|
||||
member_name, member_value = item
|
||||
classdict[member_name] = member_value
|
||||
__order__.append(member_name)
|
||||
# only set __order__ in classdict if name/value was not from a mapping
|
||||
if not isinstance(item, str):
|
||||
classdict['__order__'] = ' '.join(__order__)
|
||||
enum_class = metacls.__new__(metacls, class_name, bases, classdict)
|
||||
|
||||
# TODO: replace the frame hack if a blessed way to know the calling
|
||||
# module is ever developed
|
||||
if module is None:
|
||||
try:
|
||||
module = _sys._getframe(2).f_globals['__name__']
|
||||
except (AttributeError, ValueError):
|
||||
pass
|
||||
if module is None:
|
||||
_make_class_unpicklable(enum_class)
|
||||
else:
|
||||
enum_class.__module__ = module
|
||||
|
||||
return enum_class
|
||||
|
||||
@staticmethod
|
||||
def _get_mixins_(bases):
|
||||
"""Returns the type for creating enum members, and the first inherited
|
||||
enum class.
|
||||
|
||||
bases: the tuple of bases that was given to __new__
|
||||
|
||||
"""
|
||||
if not bases or Enum is None:
|
||||
return object, Enum
|
||||
|
||||
|
||||
# double check that we are not subclassing a class with existing
|
||||
# enumeration members; while we're at it, see if any other data
|
||||
# type has been mixed in so we can use the correct __new__
|
||||
member_type = first_enum = None
|
||||
for base in bases:
|
||||
if (base is not Enum and
|
||||
issubclass(base, Enum) and
|
||||
base._member_names_):
|
||||
raise TypeError("Cannot extend enumerations")
|
||||
# base is now the last base in bases
|
||||
if not issubclass(base, Enum):
|
||||
raise TypeError("new enumerations must be created as "
|
||||
"`ClassName([mixin_type,] enum_type)`")
|
||||
|
||||
# get correct mix-in type (either mix-in type of Enum subclass, or
|
||||
# first base if last base is Enum)
|
||||
if not issubclass(bases[0], Enum):
|
||||
member_type = bases[0] # first data type
|
||||
first_enum = bases[-1] # enum type
|
||||
else:
|
||||
for base in bases[0].__mro__:
|
||||
# most common: (IntEnum, int, Enum, object)
|
||||
# possible: (<Enum 'AutoIntEnum'>, <Enum 'IntEnum'>,
|
||||
# <class 'int'>, <Enum 'Enum'>,
|
||||
# <class 'object'>)
|
||||
if issubclass(base, Enum):
|
||||
if first_enum is None:
|
||||
first_enum = base
|
||||
else:
|
||||
if member_type is None:
|
||||
member_type = base
|
||||
|
||||
return member_type, first_enum
|
||||
|
||||
if pyver < 3.0:
|
||||
@staticmethod
|
||||
def _find_new_(classdict, member_type, first_enum):
|
||||
"""Returns the __new__ to be used for creating the enum members.
|
||||
|
||||
classdict: the class dictionary given to __new__
|
||||
member_type: the data type whose __new__ will be used by default
|
||||
first_enum: enumeration to check for an overriding __new__
|
||||
|
||||
"""
|
||||
# now find the correct __new__, checking to see of one was defined
|
||||
# by the user; also check earlier enum classes in case a __new__ was
|
||||
# saved as __member_new__
|
||||
__new__ = classdict.get('__new__', None)
|
||||
if __new__:
|
||||
return None, True, True # __new__, save_new, use_args
|
||||
|
||||
N__new__ = getattr(None, '__new__')
|
||||
O__new__ = getattr(object, '__new__')
|
||||
if Enum is None:
|
||||
E__new__ = N__new__
|
||||
else:
|
||||
E__new__ = Enum.__dict__['__new__']
|
||||
# check all possibles for __member_new__ before falling back to
|
||||
# __new__
|
||||
for method in ('__member_new__', '__new__'):
|
||||
for possible in (member_type, first_enum):
|
||||
try:
|
||||
target = possible.__dict__[method]
|
||||
except (AttributeError, KeyError):
|
||||
target = getattr(possible, method, None)
|
||||
if target not in [
|
||||
None,
|
||||
N__new__,
|
||||
O__new__,
|
||||
E__new__,
|
||||
]:
|
||||
if method == '__member_new__':
|
||||
classdict['__new__'] = target
|
||||
return None, False, True
|
||||
if isinstance(target, staticmethod):
|
||||
target = target.__get__(member_type)
|
||||
__new__ = target
|
||||
break
|
||||
if __new__ is not None:
|
||||
break
|
||||
else:
|
||||
__new__ = object.__new__
|
||||
|
||||
# if a non-object.__new__ is used then whatever value/tuple was
|
||||
# assigned to the enum member name will be passed to __new__ and to the
|
||||
# new enum member's __init__
|
||||
if __new__ is object.__new__:
|
||||
use_args = False
|
||||
else:
|
||||
use_args = True
|
||||
|
||||
return __new__, False, use_args
|
||||
else:
|
||||
@staticmethod
|
||||
def _find_new_(classdict, member_type, first_enum):
|
||||
"""Returns the __new__ to be used for creating the enum members.
|
||||
|
||||
classdict: the class dictionary given to __new__
|
||||
member_type: the data type whose __new__ will be used by default
|
||||
first_enum: enumeration to check for an overriding __new__
|
||||
|
||||
"""
|
||||
# now find the correct __new__, checking to see of one was defined
|
||||
# by the user; also check earlier enum classes in case a __new__ was
|
||||
# saved as __member_new__
|
||||
__new__ = classdict.get('__new__', None)
|
||||
|
||||
# should __new__ be saved as __member_new__ later?
|
||||
save_new = __new__ is not None
|
||||
|
||||
if __new__ is None:
|
||||
# check all possibles for __member_new__ before falling back to
|
||||
# __new__
|
||||
for method in ('__member_new__', '__new__'):
|
||||
for possible in (member_type, first_enum):
|
||||
target = getattr(possible, method, None)
|
||||
if target not in (
|
||||
None,
|
||||
None.__new__,
|
||||
object.__new__,
|
||||
Enum.__new__,
|
||||
):
|
||||
__new__ = target
|
||||
break
|
||||
if __new__ is not None:
|
||||
break
|
||||
else:
|
||||
__new__ = object.__new__
|
||||
|
||||
# if a non-object.__new__ is used then whatever value/tuple was
|
||||
# assigned to the enum member name will be passed to __new__ and to the
|
||||
# new enum member's __init__
|
||||
if __new__ is object.__new__:
|
||||
use_args = False
|
||||
else:
|
||||
use_args = True
|
||||
|
||||
return __new__, save_new, use_args
|
||||
|
||||
|
||||
########################################################
|
||||
# In order to support Python 2 and 3 with a single
|
||||
# codebase we have to create the Enum methods separately
|
||||
# and then use the `type(name, bases, dict)` method to
|
||||
# create the class.
|
||||
########################################################
|
||||
temp_enum_dict = {}
|
||||
temp_enum_dict['__doc__'] = "Generic enumeration.\n\n Derive from this class to define new enumerations.\n\n"
|
||||
|
||||
def __new__(cls, value):
|
||||
# all enum instances are actually created during class construction
|
||||
# without calling this method; this method is called by the metaclass'
|
||||
# __call__ (i.e. Color(3) ), and by pickle
|
||||
if type(value) is cls:
|
||||
# For lookups like Color(Color.red)
|
||||
value = value.value
|
||||
#return value
|
||||
# by-value search for a matching enum member
|
||||
# see if it's in the reverse mapping (for hashable values)
|
||||
try:
|
||||
if value in cls._value2member_map_:
|
||||
return cls._value2member_map_[value]
|
||||
except TypeError:
|
||||
# not there, now do long search -- O(n) behavior
|
||||
for member in cls._member_map_.values():
|
||||
if member.value == value:
|
||||
return member
|
||||
raise ValueError("%s is not a valid %s" % (value, cls.__name__))
|
||||
temp_enum_dict['__new__'] = __new__
|
||||
del __new__
|
||||
|
||||
def __repr__(self):
|
||||
return "<%s.%s: %r>" % (
|
||||
self.__class__.__name__, self._name_, self._value_)
|
||||
temp_enum_dict['__repr__'] = __repr__
|
||||
del __repr__
|
||||
|
||||
def __str__(self):
|
||||
return "%s.%s" % (self.__class__.__name__, self._name_)
|
||||
temp_enum_dict['__str__'] = __str__
|
||||
del __str__
|
||||
|
||||
def __dir__(self):
|
||||
added_behavior = [m for m in self.__class__.__dict__ if m[0] != '_']
|
||||
return (['__class__', '__doc__', '__module__', 'name', 'value'] + added_behavior)
|
||||
temp_enum_dict['__dir__'] = __dir__
|
||||
del __dir__
|
||||
|
||||
def __format__(self, format_spec):
|
||||
# mixed-in Enums should use the mixed-in type's __format__, otherwise
|
||||
# we can get strange results with the Enum name showing up instead of
|
||||
# the value
|
||||
|
||||
# pure Enum branch
|
||||
if self._member_type_ is object:
|
||||
cls = str
|
||||
val = str(self)
|
||||
# mix-in branch
|
||||
else:
|
||||
cls = self._member_type_
|
||||
val = self.value
|
||||
return cls.__format__(val, format_spec)
|
||||
temp_enum_dict['__format__'] = __format__
|
||||
del __format__
|
||||
|
||||
|
||||
####################################
|
||||
# Python's less than 2.6 use __cmp__
|
||||
|
||||
if pyver < 2.6:
|
||||
|
||||
def __cmp__(self, other):
|
||||
if type(other) is self.__class__:
|
||||
if self is other:
|
||||
return 0
|
||||
return -1
|
||||
return NotImplemented
|
||||
raise TypeError("unorderable types: %s() and %s()" % (self.__class__.__name__, other.__class__.__name__))
|
||||
temp_enum_dict['__cmp__'] = __cmp__
|
||||
del __cmp__
|
||||
|
||||
else:
|
||||
|
||||
def __le__(self, other):
|
||||
raise TypeError("unorderable types: %s() <= %s()" % (self.__class__.__name__, other.__class__.__name__))
|
||||
temp_enum_dict['__le__'] = __le__
|
||||
del __le__
|
||||
|
||||
def __lt__(self, other):
|
||||
raise TypeError("unorderable types: %s() < %s()" % (self.__class__.__name__, other.__class__.__name__))
|
||||
temp_enum_dict['__lt__'] = __lt__
|
||||
del __lt__
|
||||
|
||||
def __ge__(self, other):
|
||||
raise TypeError("unorderable types: %s() >= %s()" % (self.__class__.__name__, other.__class__.__name__))
|
||||
temp_enum_dict['__ge__'] = __ge__
|
||||
del __ge__
|
||||
|
||||
def __gt__(self, other):
|
||||
raise TypeError("unorderable types: %s() > %s()" % (self.__class__.__name__, other.__class__.__name__))
|
||||
temp_enum_dict['__gt__'] = __gt__
|
||||
del __gt__
|
||||
|
||||
|
||||
def __eq__(self, other):
|
||||
if type(other) is self.__class__:
|
||||
return self is other
|
||||
return NotImplemented
|
||||
temp_enum_dict['__eq__'] = __eq__
|
||||
del __eq__
|
||||
|
||||
def __ne__(self, other):
|
||||
if type(other) is self.__class__:
|
||||
return self is not other
|
||||
return NotImplemented
|
||||
temp_enum_dict['__ne__'] = __ne__
|
||||
del __ne__
|
||||
|
||||
def __getnewargs__(self):
|
||||
return (self._value_, )
|
||||
temp_enum_dict['__getnewargs__'] = __getnewargs__
|
||||
del __getnewargs__
|
||||
|
||||
def __hash__(self):
|
||||
return hash(self._name_)
|
||||
temp_enum_dict['__hash__'] = __hash__
|
||||
del __hash__
|
||||
|
||||
# _RouteClassAttributeToGetattr is used to provide access to the `name`
|
||||
# and `value` properties of enum members while keeping some measure of
|
||||
# protection from modification, while still allowing for an enumeration
|
||||
# to have members named `name` and `value`. This works because enumeration
|
||||
# members are not set directly on the enum class -- __getattr__ is
|
||||
# used to look them up.
|
||||
|
||||
@_RouteClassAttributeToGetattr
|
||||
def name(self):
|
||||
return self._name_
|
||||
temp_enum_dict['name'] = name
|
||||
del name
|
||||
|
||||
@_RouteClassAttributeToGetattr
|
||||
def value(self):
|
||||
return self._value_
|
||||
temp_enum_dict['value'] = value
|
||||
del value
|
||||
|
||||
Enum = EnumMeta('Enum', (object, ), temp_enum_dict)
|
||||
del temp_enum_dict
|
||||
|
||||
# Enum has now been created
|
||||
###########################
|
||||
|
||||
class IntEnum(int, Enum):
|
||||
"""Enum where members are also (and must be) ints"""
|
||||
|
||||
|
||||
def unique(enumeration):
|
||||
"""Class decorator that ensures only unique members exist in an enumeration."""
|
||||
duplicates = []
|
||||
for name, member in enumeration.__members__.items():
|
||||
if name != member.name:
|
||||
duplicates.append((name, member.name))
|
||||
if duplicates:
|
||||
duplicate_names = ', '.join(
|
||||
["%s -> %s" % (alias, name) for (alias, name) in duplicates]
|
||||
)
|
||||
raise ValueError('duplicate names found in %r: %s' %
|
||||
(enumeration, duplicate_names)
|
||||
)
|
||||
return enumeration
|
1383
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/epm.py
Normal file
1383
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/epm.py
Normal file
File diff suppressed because it is too large
Load diff
400
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/even.py
Normal file
400
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/even.py
Normal file
|
@ -0,0 +1,400 @@
|
|||
# SECUREAUTH LABS. Copyright 2018 SecureAuth Corporation. All rights reserved.
|
||||
#
|
||||
# This software is provided under under a slightly modified version
|
||||
# of the Apache Software License. See the accompanying LICENSE file
|
||||
# for more information.
|
||||
#
|
||||
# Author: Alberto Solino (@agsolino)
|
||||
# Itamar Mizrahi (@MrAnde7son)
|
||||
#
|
||||
# Description:
|
||||
# [MS-EVEN] Interface implementation
|
||||
#
|
||||
# Best way to learn how to use these calls is to grab the protocol standard
|
||||
# so you understand what the call does, and then read the test case located
|
||||
# at https://github.com/SecureAuthCorp/impacket/tree/master/tests/SMB_RPC
|
||||
#
|
||||
# Some calls have helper functions, which makes it even easier to use.
|
||||
# They are located at the end of this file.
|
||||
# Helper functions start with "h"<name of the call>.
|
||||
# There are test cases for them too.
|
||||
#
|
||||
from __future__ import division
|
||||
from __future__ import print_function
|
||||
from impacket.dcerpc.v5.ndr import NDRCALL, NDRSTRUCT, NDR, NDRPOINTERNULL, NDRUniConformantArray
|
||||
from impacket.dcerpc.v5.dtypes import ULONG, LPWSTR, RPC_UNICODE_STRING, LPSTR, NTSTATUS, NULL, PRPC_UNICODE_STRING, PULONG, USHORT, PRPC_SID, LPBYTE
|
||||
from impacket.dcerpc.v5.lsad import PRPC_UNICODE_STRING_ARRAY
|
||||
from impacket.structure import Structure
|
||||
from impacket import nt_errors
|
||||
from impacket.uuid import uuidtup_to_bin
|
||||
from impacket.dcerpc.v5.rpcrt import DCERPCException
|
||||
|
||||
MSRPC_UUID_EVEN = uuidtup_to_bin(('82273FDC-E32A-18C3-3F78-827929DC23EA','0.0'))
|
||||
|
||||
class DCERPCSessionError(DCERPCException):
|
||||
def __init__(self, error_string=None, error_code=None, packet=None):
|
||||
DCERPCException.__init__(self, error_string, error_code, packet)
|
||||
|
||||
def __str__( self ):
|
||||
key = self.error_code
|
||||
if key in nt_errors.ERROR_MESSAGES:
|
||||
error_msg_short = nt_errors.ERROR_MESSAGES[key][0]
|
||||
error_msg_verbose = nt_errors.ERROR_MESSAGES[key][1]
|
||||
return 'EVEN SessionError: code: 0x%x - %s - %s' % (self.error_code, error_msg_short, error_msg_verbose)
|
||||
else:
|
||||
return 'EVEN SessionError: unknown error code: 0x%x' % self.error_code
|
||||
|
||||
################################################################################
|
||||
# CONSTANTS
|
||||
################################################################################
|
||||
# 2.2.2 EventType
|
||||
EVENTLOG_SUCCESS = 0x0000
|
||||
EVENTLOG_ERROR_TYPE = 0x0001
|
||||
EVENTLOG_WARNING_TYPE = 0x0002
|
||||
EVENTLOG_INFORMATION_TYPE = 0x0004
|
||||
EVENTLOG_AUDIT_SUCCESS = 0x0008
|
||||
EVENTLOG_AUDIT_FAILURE = 0x0010
|
||||
|
||||
# 2.2.7 EVENTLOG_HANDLE_A and EVENTLOG_HANDLE_W
|
||||
#EVENTLOG_HANDLE_A
|
||||
EVENTLOG_HANDLE_W = LPWSTR
|
||||
|
||||
# 2.2.9 Constants Used in Method Definitions
|
||||
MAX_STRINGS = 0x00000100
|
||||
MAX_SINGLE_EVENT = 0x0003FFFF
|
||||
MAX_BATCH_BUFF = 0x0007FFFF
|
||||
|
||||
# 3.1.4.7 ElfrReadELW (Opnum 10)
|
||||
EVENTLOG_SEQUENTIAL_READ = 0x00000001
|
||||
EVENTLOG_SEEK_READ = 0x00000002
|
||||
|
||||
EVENTLOG_FORWARDS_READ = 0x00000004
|
||||
EVENTLOG_BACKWARDS_READ = 0x00000008
|
||||
|
||||
################################################################################
|
||||
# STRUCTURES
|
||||
################################################################################
|
||||
|
||||
class IELF_HANDLE(NDRSTRUCT):
|
||||
structure = (
|
||||
('Data','20s=""'),
|
||||
)
|
||||
def getAlignment(self):
|
||||
return 1
|
||||
|
||||
# 2.2.3 EVENTLOGRECORD
|
||||
class EVENTLOGRECORD(Structure):
|
||||
structure = (
|
||||
('Length','<L=0'),
|
||||
('Reserved','<L=0'),
|
||||
('RecordNumber','<L=0'),
|
||||
('TimeGenerated','<L=0'),
|
||||
('TimeWritten','<L=0'),
|
||||
('EventID','<L=0'),
|
||||
('EventType','<H=0'),
|
||||
('NumStrings','<H=0'),
|
||||
('EventCategory','<H=0'),
|
||||
('ReservedFlags','<H=0'),
|
||||
('ClosingRecordNumber','<L=0'),
|
||||
('StringOffset','<L=0'),
|
||||
('UserSidLength','<L=0'),
|
||||
('UserSidOffset','<L=0'),
|
||||
('DataLength','<L=0'),
|
||||
('DataOffset','<L=0'),
|
||||
('SourceName','z'),
|
||||
('Computername','z'),
|
||||
('UserSidPadding',':'),
|
||||
('_UserSid','_-UserSid', 'self["UserSidLength"]'),
|
||||
('UserSid',':'),
|
||||
('Strings',':'),
|
||||
('_Data','_-Data', 'self["DataLength"]'),
|
||||
('Data',':'),
|
||||
('Padding',':'),
|
||||
('Length2','<L=0'),
|
||||
)
|
||||
|
||||
# 2.2.4 EVENTLOG_FULL_INFORMATION
|
||||
class EVENTLOG_FULL_INFORMATION(NDRSTRUCT):
|
||||
structure = (
|
||||
('dwFull', ULONG),
|
||||
)
|
||||
|
||||
# 2.2.8 RPC_CLIENT_ID
|
||||
class RPC_CLIENT_ID(NDRSTRUCT):
|
||||
structure = (
|
||||
('UniqueProcess', ULONG),
|
||||
('UniqueThread', ULONG),
|
||||
)
|
||||
|
||||
# 2.2.12 RPC_STRING
|
||||
class RPC_STRING(NDRSTRUCT):
|
||||
structure = (
|
||||
('Length','<H=0'),
|
||||
('MaximumLength','<H=0'),
|
||||
('Data',LPSTR),
|
||||
)
|
||||
|
||||
def __setitem__(self, key, value):
|
||||
if key == 'Data' and isinstance(value, NDR) is False:
|
||||
self['Length'] = len(value)
|
||||
self['MaximumLength'] = len(value)
|
||||
return NDRSTRUCT.__setitem__(self, key, value)
|
||||
|
||||
def dump(self, msg = None, indent = 0):
|
||||
if msg is None: msg = self.__class__.__name__
|
||||
if msg != '':
|
||||
print("%s" % msg, end=' ')
|
||||
|
||||
if isinstance(self.fields['Data'] , NDRPOINTERNULL):
|
||||
print(" NULL", end=' ')
|
||||
elif self.fields['Data']['ReferentID'] == 0:
|
||||
print(" NULL", end=' ')
|
||||
else:
|
||||
return self.fields['Data'].dump('',indent)
|
||||
|
||||
################################################################################
|
||||
# RPC CALLS
|
||||
################################################################################
|
||||
# 3.1.4.9 ElfrClearELFW (Opnum 0)
|
||||
class ElfrClearELFW(NDRCALL):
|
||||
opnum = 0
|
||||
structure = (
|
||||
('LogHandle', IELF_HANDLE),
|
||||
('BackupFileName', PRPC_UNICODE_STRING),
|
||||
)
|
||||
|
||||
class ElfrClearELFWResponse(NDRCALL):
|
||||
structure = (
|
||||
('ErrorCode', NTSTATUS),
|
||||
)
|
||||
|
||||
# 3.1.4.11 ElfrBackupELFW (Opnum 1)
|
||||
class ElfrBackupELFW(NDRCALL):
|
||||
opnum = 1
|
||||
structure = (
|
||||
('LogHandle', IELF_HANDLE),
|
||||
('BackupFileName', RPC_UNICODE_STRING),
|
||||
)
|
||||
|
||||
class ElfrBackupELFWResponse(NDRCALL):
|
||||
structure = (
|
||||
('ErrorCode', NTSTATUS),
|
||||
)
|
||||
|
||||
# 3.1.4.21 ElfrCloseEL (Opnum 2)
|
||||
class ElfrCloseEL(NDRCALL):
|
||||
opnum = 2
|
||||
structure = (
|
||||
('LogHandle', IELF_HANDLE),
|
||||
)
|
||||
|
||||
class ElfrCloseELResponse(NDRCALL):
|
||||
structure = (
|
||||
('LogHandle', IELF_HANDLE),
|
||||
('ErrorCode', NTSTATUS),
|
||||
)
|
||||
|
||||
# 3.1.4.18 ElfrNumberOfRecords (Opnum 4)
|
||||
class ElfrNumberOfRecords(NDRCALL):
|
||||
opnum = 4
|
||||
structure = (
|
||||
('LogHandle', IELF_HANDLE),
|
||||
)
|
||||
|
||||
class ElfrNumberOfRecordsResponse(NDRCALL):
|
||||
structure = (
|
||||
('NumberOfRecords', ULONG),
|
||||
('ErrorCode', NTSTATUS),
|
||||
)
|
||||
|
||||
# 3.1.4.19 ElfrOldestRecord (Opnum 5)
|
||||
class ElfrOldestRecord(NDRCALL):
|
||||
opnum = 5
|
||||
structure = (
|
||||
('LogHandle', IELF_HANDLE),
|
||||
)
|
||||
|
||||
class ElfrOldestRecordResponse(NDRCALL):
|
||||
structure = (
|
||||
('OldestRecordNumber', ULONG),
|
||||
('ErrorCode', NTSTATUS),
|
||||
)
|
||||
|
||||
# 3.1.4.3 ElfrOpenELW (Opnum 7)
|
||||
class ElfrOpenELW(NDRCALL):
|
||||
opnum = 7
|
||||
structure = (
|
||||
('UNCServerName', EVENTLOG_HANDLE_W),
|
||||
('ModuleName', RPC_UNICODE_STRING),
|
||||
('RegModuleName', RPC_UNICODE_STRING),
|
||||
('MajorVersion', ULONG),
|
||||
('MinorVersion', ULONG),
|
||||
)
|
||||
|
||||
class ElfrOpenELWResponse(NDRCALL):
|
||||
structure = (
|
||||
('LogHandle', IELF_HANDLE),
|
||||
('ErrorCode', NTSTATUS),
|
||||
)
|
||||
|
||||
# 3.1.4.5 ElfrRegisterEventSourceW (Opnum 8)
|
||||
class ElfrRegisterEventSourceW(NDRCALL):
|
||||
opnum = 8
|
||||
structure = (
|
||||
('UNCServerName', EVENTLOG_HANDLE_W),
|
||||
('ModuleName', RPC_UNICODE_STRING),
|
||||
('RegModuleName', RPC_UNICODE_STRING),
|
||||
('MajorVersion', ULONG),
|
||||
('MinorVersion', ULONG),
|
||||
)
|
||||
|
||||
class ElfrRegisterEventSourceWResponse(NDRCALL):
|
||||
structure = (
|
||||
('LogHandle', IELF_HANDLE),
|
||||
('ErrorCode', NTSTATUS),
|
||||
)
|
||||
|
||||
# 3.1.4.1 ElfrOpenBELW (Opnum 9)
|
||||
class ElfrOpenBELW(NDRCALL):
|
||||
opnum = 9
|
||||
structure = (
|
||||
('UNCServerName', EVENTLOG_HANDLE_W),
|
||||
('BackupFileName', RPC_UNICODE_STRING),
|
||||
('MajorVersion', ULONG),
|
||||
('MinorVersion', ULONG),
|
||||
)
|
||||
|
||||
class ElfrOpenBELWResponse(NDRCALL):
|
||||
structure = (
|
||||
('LogHandle', IELF_HANDLE),
|
||||
('ErrorCode', NTSTATUS),
|
||||
)
|
||||
|
||||
# 3.1.4.7 ElfrReadELW (Opnum 10)
|
||||
class ElfrReadELW(NDRCALL):
|
||||
opnum = 10
|
||||
structure = (
|
||||
('LogHandle', IELF_HANDLE),
|
||||
('ReadFlags', ULONG),
|
||||
('RecordOffset', ULONG),
|
||||
('NumberOfBytesToRead', ULONG),
|
||||
)
|
||||
|
||||
class ElfrReadELWResponse(NDRCALL):
|
||||
structure = (
|
||||
('Buffer', NDRUniConformantArray),
|
||||
('NumberOfBytesRead', ULONG),
|
||||
('MinNumberOfBytesNeeded', ULONG),
|
||||
('ErrorCode', NTSTATUS),
|
||||
)
|
||||
|
||||
# 3.1.4.13 ElfrReportEventW (Opnum 11)
|
||||
class ElfrReportEventW(NDRCALL):
|
||||
opnum = 11
|
||||
structure = (
|
||||
('LogHandle', IELF_HANDLE),
|
||||
('Time', ULONG),
|
||||
('EventType', USHORT),
|
||||
('EventCategory', USHORT),
|
||||
('EventID', ULONG),
|
||||
('NumStrings', USHORT),
|
||||
('DataSize', ULONG),
|
||||
('ComputerName', RPC_UNICODE_STRING),
|
||||
('UserSID', PRPC_SID),
|
||||
('Strings', PRPC_UNICODE_STRING_ARRAY),
|
||||
('Data', LPBYTE),
|
||||
('Flags', USHORT),
|
||||
('RecordNumber', PULONG),
|
||||
('TimeWritten', PULONG),
|
||||
)
|
||||
|
||||
class ElfrReportEventWResponse(NDRCALL):
|
||||
structure = (
|
||||
('RecordNumber', PULONG),
|
||||
('TimeWritten', PULONG),
|
||||
('ErrorCode', NTSTATUS),
|
||||
)
|
||||
|
||||
################################################################################
|
||||
# OPNUMs and their corresponding structures
|
||||
################################################################################
|
||||
OPNUMS = {
|
||||
0 : (ElfrClearELFW, ElfrClearELFWResponse),
|
||||
1 : (ElfrBackupELFW, ElfrBackupELFWResponse),
|
||||
2 : (ElfrCloseEL, ElfrCloseELResponse),
|
||||
4 : (ElfrNumberOfRecords, ElfrNumberOfRecordsResponse),
|
||||
5 : (ElfrOldestRecord, ElfrOldestRecordResponse),
|
||||
7 : (ElfrOpenELW, ElfrOpenELWResponse),
|
||||
8 : (ElfrRegisterEventSourceW, ElfrRegisterEventSourceWResponse),
|
||||
9 : (ElfrOpenBELW, ElfrOpenBELWResponse),
|
||||
10 : (ElfrReadELW, ElfrReadELWResponse),
|
||||
11 : (ElfrReportEventW, ElfrReportEventWResponse),
|
||||
}
|
||||
|
||||
################################################################################
|
||||
# HELPER FUNCTIONS
|
||||
################################################################################
|
||||
def hElfrOpenBELW(dce, backupFileName = NULL):
|
||||
request = ElfrOpenBELW()
|
||||
request['UNCServerName'] = NULL
|
||||
request['BackupFileName'] = backupFileName
|
||||
request['MajorVersion'] = 1
|
||||
request['MinorVersion'] = 1
|
||||
return dce.request(request)
|
||||
|
||||
def hElfrOpenELW(dce, moduleName = NULL, regModuleName = NULL):
|
||||
request = ElfrOpenELW()
|
||||
request['UNCServerName'] = NULL
|
||||
request['ModuleName'] = moduleName
|
||||
request['RegModuleName'] = regModuleName
|
||||
request['MajorVersion'] = 1
|
||||
request['MinorVersion'] = 1
|
||||
return dce.request(request)
|
||||
|
||||
def hElfrCloseEL(dce, logHandle):
|
||||
request = ElfrCloseEL()
|
||||
request['LogHandle'] = logHandle
|
||||
resp = dce.request(request)
|
||||
return resp
|
||||
|
||||
def hElfrRegisterEventSourceW(dce, moduleName = NULL, regModuleName = NULL):
|
||||
request = ElfrRegisterEventSourceW()
|
||||
request['UNCServerName'] = NULL
|
||||
request['ModuleName'] = moduleName
|
||||
request['RegModuleName'] = regModuleName
|
||||
request['MajorVersion'] = 1
|
||||
request['MinorVersion'] = 1
|
||||
return dce.request(request)
|
||||
|
||||
def hElfrReadELW(dce, logHandle = '', readFlags = EVENTLOG_SEEK_READ|EVENTLOG_FORWARDS_READ,
|
||||
recordOffset = 0, numberOfBytesToRead = MAX_BATCH_BUFF):
|
||||
request = ElfrReadELW()
|
||||
request['LogHandle'] = logHandle
|
||||
request['ReadFlags'] = readFlags
|
||||
request['RecordOffset'] = recordOffset
|
||||
request['NumberOfBytesToRead'] = numberOfBytesToRead
|
||||
return dce.request(request)
|
||||
|
||||
def hElfrClearELFW(dce, logHandle = '', backupFileName = NULL):
|
||||
request = ElfrClearELFW()
|
||||
request['LogHandle'] = logHandle
|
||||
request['BackupFileName'] = backupFileName
|
||||
return dce.request(request)
|
||||
|
||||
def hElfrBackupELFW(dce, logHandle = '', backupFileName = NULL):
|
||||
request = ElfrBackupELFW()
|
||||
request['LogHandle'] = logHandle
|
||||
request['BackupFileName'] = backupFileName
|
||||
return dce.request(request)
|
||||
|
||||
def hElfrNumberOfRecords(dce, logHandle):
|
||||
request = ElfrNumberOfRecords()
|
||||
request['LogHandle'] = logHandle
|
||||
resp = dce.request(request)
|
||||
return resp
|
||||
|
||||
def hElfrOldestRecordNumber(dce, logHandle):
|
||||
request = ElfrOldestRecord()
|
||||
request['LogHandle'] = logHandle
|
||||
resp = dce.request(request)
|
||||
return resp
|
344
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/even6.py
Normal file
344
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/even6.py
Normal file
|
@ -0,0 +1,344 @@
|
|||
# SECUREAUTH LABS. Copyright 2018 SecureAuth Corporation. All rights reserved.
|
||||
# Copyright (c) 2017 @MrAnde7son
|
||||
#
|
||||
# This software is provided under under a slightly modified version
|
||||
# of the Apache Software License. See the accompanying LICENSE file
|
||||
# for more information.
|
||||
#
|
||||
# Author: Itamar (@MrAnde7son)
|
||||
#
|
||||
# Description:
|
||||
# Initial [MS-EVEN6] Interface implementation
|
||||
#
|
||||
# Best way to learn how to use these calls is to grab the protocol standard
|
||||
# so you understand what the call does, and then read the test case located
|
||||
# at https://github.com/SecureAuthCorp/impacket/tree/master/tests/SMB_RPC
|
||||
#
|
||||
# Some calls have helper functions, which makes it even easier to use.
|
||||
# They are located at the end of this file.
|
||||
# Helper functions start with "h"<name of the call>.
|
||||
# There are test cases for them too.
|
||||
#
|
||||
from impacket import system_errors
|
||||
from impacket.dcerpc.v5.dtypes import WSTR, DWORD, LPWSTR, ULONG, LARGE_INTEGER, WORD, BYTE
|
||||
from impacket.dcerpc.v5.ndr import NDRCALL, NDRPOINTER, NDRUniConformantArray, NDRUniVaryingArray, NDRSTRUCT
|
||||
from impacket.dcerpc.v5.rpcrt import DCERPCException
|
||||
from impacket.uuid import uuidtup_to_bin
|
||||
|
||||
MSRPC_UUID_EVEN6 = uuidtup_to_bin(('F6BEAFF7-1E19-4FBB-9F8F-B89E2018337C', '1.0'))
|
||||
|
||||
class DCERPCSessionError(DCERPCException):
|
||||
def __init__(self, error_string=None, error_code=None, packet=None):
|
||||
DCERPCException.__init__(self, error_string, error_code, packet)
|
||||
|
||||
def __str__(self):
|
||||
key = self.error_code
|
||||
if key in system_errors.ERROR_MESSAGES:
|
||||
error_msg_short = system_errors.ERROR_MESSAGES[key][0]
|
||||
error_msg_verbose = system_errors.ERROR_MESSAGES[key][1]
|
||||
return 'EVEN6 SessionError: code: 0x%x - %s - %s' % (self.error_code, error_msg_short, error_msg_verbose)
|
||||
else:
|
||||
return 'EVEN6 SessionError: unknown error code: 0x%x' % self.error_code
|
||||
|
||||
################################################################################
|
||||
# CONSTANTS
|
||||
################################################################################
|
||||
|
||||
# Evt Path Flags
|
||||
EvtQueryChannelName = 0x00000001
|
||||
EvtQueryFilePath = 0x00000002
|
||||
EvtReadOldestToNewest = 0x00000100
|
||||
EvtReadNewestToOldest = 0x00000200
|
||||
|
||||
################################################################################
|
||||
# STRUCTURES
|
||||
################################################################################
|
||||
|
||||
class CONTEXT_HANDLE_LOG_HANDLE(NDRSTRUCT):
|
||||
align = 1
|
||||
structure = (
|
||||
('Data', '20s=""'),
|
||||
)
|
||||
|
||||
class PCONTEXT_HANDLE_LOG_HANDLE(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', CONTEXT_HANDLE_LOG_HANDLE),
|
||||
)
|
||||
|
||||
class CONTEXT_HANDLE_LOG_QUERY(NDRSTRUCT):
|
||||
align = 1
|
||||
structure = (
|
||||
('Data', '20s=""'),
|
||||
)
|
||||
|
||||
class PCONTEXT_HANDLE_LOG_QUERY(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', CONTEXT_HANDLE_LOG_QUERY),
|
||||
)
|
||||
|
||||
class LPPCONTEXT_HANDLE_LOG_QUERY(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', PCONTEXT_HANDLE_LOG_QUERY),
|
||||
)
|
||||
|
||||
class CONTEXT_HANDLE_OPERATION_CONTROL(NDRSTRUCT):
|
||||
align = 1
|
||||
structure = (
|
||||
('Data', '20s=""'),
|
||||
)
|
||||
|
||||
class PCONTEXT_HANDLE_OPERATION_CONTROL(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', CONTEXT_HANDLE_OPERATION_CONTROL),
|
||||
)
|
||||
|
||||
# 2.2.11 EvtRpcQueryChannelInfo
|
||||
class EvtRpcQueryChannelInfo(NDRSTRUCT):
|
||||
structure = (
|
||||
('Name', LPWSTR),
|
||||
('Status', DWORD),
|
||||
)
|
||||
|
||||
class EvtRpcQueryChannelInfoArray(NDRUniVaryingArray):
|
||||
item = EvtRpcQueryChannelInfo
|
||||
|
||||
class LPEvtRpcQueryChannelInfoArray(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', EvtRpcQueryChannelInfoArray)
|
||||
)
|
||||
|
||||
class RPC_INFO(NDRSTRUCT):
|
||||
structure = (
|
||||
('Error', DWORD),
|
||||
('SubError', DWORD),
|
||||
('SubErrorParam', DWORD),
|
||||
)
|
||||
|
||||
class PRPC_INFO(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', RPC_INFO)
|
||||
)
|
||||
|
||||
class WSTR_ARRAY(NDRUniVaryingArray):
|
||||
item = WSTR
|
||||
|
||||
class DWORD_ARRAY(NDRUniVaryingArray):
|
||||
item = DWORD
|
||||
|
||||
class LPDWORD_ARRAY(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', DWORD_ARRAY)
|
||||
)
|
||||
|
||||
class BYTE_ARRAY(NDRUniVaryingArray):
|
||||
item = 'c'
|
||||
|
||||
class CBYTE_ARRAY(NDRUniVaryingArray):
|
||||
item = BYTE
|
||||
|
||||
class CDWORD_ARRAY(NDRUniConformantArray):
|
||||
item = DWORD
|
||||
|
||||
class LPBYTE_ARRAY(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', CBYTE_ARRAY)
|
||||
)
|
||||
|
||||
class ULONG_ARRAY(NDRUniVaryingArray):
|
||||
item = ULONG
|
||||
|
||||
# 2.3.1 EVENT_DESCRIPTOR
|
||||
class EVENT_DESCRIPTOR(NDRSTRUCT):
|
||||
structure = (
|
||||
('Id', WORD),
|
||||
('Version', BYTE),
|
||||
('Channel', BYTE),
|
||||
('LevelSeverity', BYTE),
|
||||
('Opcode', BYTE),
|
||||
('Task', WORD),
|
||||
('Keyword', ULONG),
|
||||
)
|
||||
|
||||
class BOOKMARK(NDRSTRUCT):
|
||||
structure = (
|
||||
('BookmarkSize', DWORD),
|
||||
('HeaderSize', '<L=0x18'),
|
||||
('ChannelSize', DWORD),
|
||||
('CurrentChannel', DWORD),
|
||||
('ReadDirection', DWORD),
|
||||
('RecordIdsOffset', DWORD),
|
||||
('LogRecordNumbers', ULONG_ARRAY),
|
||||
)
|
||||
|
||||
|
||||
#2.2.17 RESULT_SET
|
||||
class RESULT_SET(NDRSTRUCT):
|
||||
structure = (
|
||||
('TotalSize', DWORD),
|
||||
('HeaderSize', DWORD),
|
||||
('EventOffset', DWORD),
|
||||
('BookmarkOffset', DWORD),
|
||||
('BinXmlSize', DWORD),
|
||||
('EventData', BYTE_ARRAY),
|
||||
#('NumberOfSubqueryIDs', '<L=0'),
|
||||
#('SubqueryIDs', BYTE_ARRAY),
|
||||
#('BookMarkData', BOOKMARK),
|
||||
)
|
||||
|
||||
################################################################################
|
||||
# RPC CALLS
|
||||
################################################################################
|
||||
|
||||
class EvtRpcRegisterLogQuery(NDRCALL):
|
||||
opnum = 5
|
||||
structure = (
|
||||
('Path', LPWSTR),
|
||||
('Query', WSTR),
|
||||
('Flags', DWORD),
|
||||
)
|
||||
|
||||
class EvtRpcRegisterLogQueryResponse(NDRCALL):
|
||||
structure = (
|
||||
('Handle', CONTEXT_HANDLE_LOG_QUERY),
|
||||
('OpControl', CONTEXT_HANDLE_OPERATION_CONTROL),
|
||||
('QueryChannelInfoSize', DWORD),
|
||||
('QueryChannelInfo', EvtRpcQueryChannelInfoArray),
|
||||
('Error', RPC_INFO),
|
||||
)
|
||||
|
||||
class EvtRpcQueryNext(NDRCALL):
|
||||
opnum = 11
|
||||
structure = (
|
||||
('LogQuery', CONTEXT_HANDLE_LOG_QUERY),
|
||||
('NumRequestedRecords', DWORD),
|
||||
('TimeOutEnd', DWORD),
|
||||
('Flags', DWORD),
|
||||
)
|
||||
|
||||
class EvtRpcQueryNextResponse(NDRCALL):
|
||||
structure = (
|
||||
('NumActualRecords', DWORD),
|
||||
('EventDataIndices', DWORD_ARRAY),
|
||||
('EventDataSizes', DWORD_ARRAY),
|
||||
('ResultBufferSize', DWORD),
|
||||
('ResultBuffer', BYTE_ARRAY),
|
||||
('ErrorCode', ULONG),
|
||||
)
|
||||
|
||||
class EvtRpcQuerySeek(NDRCALL):
|
||||
opnum = 12
|
||||
structure = (
|
||||
('LogQuery', CONTEXT_HANDLE_LOG_QUERY),
|
||||
('Pos', LARGE_INTEGER),
|
||||
('BookmarkXML', LPWSTR),
|
||||
('Flags', DWORD),
|
||||
)
|
||||
|
||||
class EvtRpcQuerySeekResponse(NDRCALL):
|
||||
structure = (
|
||||
('Error', RPC_INFO),
|
||||
)
|
||||
|
||||
class EvtRpcClose(NDRCALL):
|
||||
opnum = 13
|
||||
structure = (
|
||||
("Handle", CONTEXT_HANDLE_LOG_HANDLE),
|
||||
)
|
||||
|
||||
class EvtRpcCloseResponse(NDRCALL):
|
||||
structure = (
|
||||
("Handle", PCONTEXT_HANDLE_LOG_HANDLE),
|
||||
('ErrorCode', ULONG),
|
||||
)
|
||||
|
||||
class EvtRpcOpenLogHandle(NDRCALL):
|
||||
opnum = 17
|
||||
structure = (
|
||||
('Channel', WSTR),
|
||||
('Flags', DWORD),
|
||||
)
|
||||
|
||||
class EvtRpcOpenLogHandleResponse(NDRCALL):
|
||||
structure = (
|
||||
('Handle', PCONTEXT_HANDLE_LOG_HANDLE),
|
||||
('Error', RPC_INFO),
|
||||
)
|
||||
|
||||
class EvtRpcGetChannelList(NDRCALL):
|
||||
opnum = 19
|
||||
structure = (
|
||||
('Flags', DWORD),
|
||||
)
|
||||
|
||||
class EvtRpcGetChannelListResponse(NDRCALL):
|
||||
structure = (
|
||||
('NumChannelPaths', DWORD),
|
||||
('ChannelPaths', WSTR_ARRAY),
|
||||
('ErrorCode', ULONG),
|
||||
)
|
||||
|
||||
################################################################################
|
||||
# OPNUMs and their corresponding structures
|
||||
################################################################################
|
||||
|
||||
OPNUMS = {
|
||||
5 : (EvtRpcRegisterLogQuery, EvtRpcRegisterLogQueryResponse),
|
||||
11 : (EvtRpcQueryNext, EvtRpcQueryNextResponse),
|
||||
12 : (EvtRpcQuerySeek, EvtRpcQuerySeekResponse),
|
||||
13 : (EvtRpcClose, EvtRpcCloseResponse),
|
||||
17 : (EvtRpcOpenLogHandle, EvtRpcOpenLogHandle),
|
||||
19 : (EvtRpcGetChannelList, EvtRpcGetChannelListResponse),
|
||||
}
|
||||
|
||||
################################################################################
|
||||
# HELPER FUNCTIONS
|
||||
################################################################################
|
||||
|
||||
def hEvtRpcRegisterLogQuery(dce, path, flags, query='*\x00'):
|
||||
request = EvtRpcRegisterLogQuery()
|
||||
|
||||
request['Path'] = path
|
||||
request['Query'] = query
|
||||
request['Flags'] = flags
|
||||
resp = dce.request(request)
|
||||
return resp
|
||||
|
||||
def hEvtRpcQueryNext(dce, handle, numRequestedRecords, timeOutEnd=1000):
|
||||
request = EvtRpcQueryNext()
|
||||
|
||||
request['LogQuery'] = handle
|
||||
request['NumRequestedRecords'] = numRequestedRecords
|
||||
request['TimeOutEnd'] = timeOutEnd
|
||||
request['Flags'] = 0
|
||||
status = system_errors.ERROR_MORE_DATA
|
||||
resp = dce.request(request)
|
||||
while status == system_errors.ERROR_MORE_DATA:
|
||||
try:
|
||||
resp = dce.request(request)
|
||||
except DCERPCException as e:
|
||||
if str(e).find('ERROR_NO_MORE_ITEMS') < 0:
|
||||
raise
|
||||
elif str(e).find('ERROR_TIMEOUT') < 0:
|
||||
raise
|
||||
resp = e.get_packet()
|
||||
return resp
|
||||
|
||||
def hEvtRpcClose(dce, handle):
|
||||
request = EvtRpcClose()
|
||||
request['Handle'] = handle
|
||||
resp = dce.request(request)
|
||||
return resp
|
||||
|
||||
def hEvtRpcOpenLogHandle(dce, channel, flags):
|
||||
request = EvtRpcOpenLogHandle()
|
||||
|
||||
request['Channel'] = channel
|
||||
request['Flags'] = flags
|
||||
return dce.request(request)
|
||||
|
||||
def hEvtRpcGetChannelList(dce):
|
||||
request = EvtRpcGetChannelList()
|
||||
|
||||
request['Flags'] = 0
|
||||
resp = dce.request(request)
|
||||
return resp
|
172
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/iphlp.py
Normal file
172
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/iphlp.py
Normal file
|
@ -0,0 +1,172 @@
|
|||
# SECUREAUTH LABS. Copyright 2020 SecureAuth Corporation. All rights reserved.
|
||||
#
|
||||
# This software is provided under a slightly modified version
|
||||
# of the Apache Software License. See the accompanying LICENSE file
|
||||
# for more information.
|
||||
#
|
||||
# Authors:
|
||||
# Arseniy Sharoglazov <mohemiv@gmail.com> / Positive Technologies (https://www.ptsecurity.com/)
|
||||
#
|
||||
# Description:
|
||||
# Implementation of iphlpsvc.dll MSRPC calls (Service that offers IPv6 connectivity over an IPv4 network)
|
||||
|
||||
from socket import inet_aton
|
||||
|
||||
from impacket import uuid
|
||||
from impacket import hresult_errors
|
||||
from impacket.uuid import uuidtup_to_bin
|
||||
from impacket.dcerpc.v5.dtypes import BYTE, ULONG, WSTR, GUID, NULL
|
||||
from impacket.dcerpc.v5.ndr import NDRCALL, NDRUniConformantArray
|
||||
from impacket.dcerpc.v5.rpcrt import DCERPCException
|
||||
|
||||
MSRPC_UUID_IPHLP_IP_TRANSITION = uuidtup_to_bin(('552d076a-cb29-4e44-8b6a-d15e59e2c0af', '1.0'))
|
||||
|
||||
# RPC_IF_ALLOW_LOCAL_ONLY
|
||||
MSRPC_UUID_IPHLP_TEREDO = uuidtup_to_bin(('ecbdb051-f208-46b9-8c8b-648d9d3f3944', '1.0'))
|
||||
MSRPC_UUID_IPHLP_TEREDO_CONSUMER = uuidtup_to_bin(('1fff8faa-ec23-4e3f-a8ce-4b2f8707e636', '1.0'))
|
||||
|
||||
class DCERPCSessionError(DCERPCException):
|
||||
def __init__(self, error_string=None, error_code=None, packet=None):
|
||||
DCERPCException.__init__(self, error_string, error_code, packet)
|
||||
|
||||
def __str__( self ):
|
||||
key = self.error_code
|
||||
if key in hresult_errors.ERROR_MESSAGES:
|
||||
error_msg_short = hresult_errors.ERROR_MESSAGES[key][0]
|
||||
error_msg_verbose = hresult_errors.ERROR_MESSAGES[key][1]
|
||||
return 'IPHLP SessionError: code: 0x%x - %s - %s' % (self.error_code, error_msg_short, error_msg_verbose)
|
||||
else:
|
||||
return 'IPHLP SessionError: unknown error code: 0x%x' % self.error_code
|
||||
|
||||
################################################################################
|
||||
# CONSTANTS
|
||||
################################################################################
|
||||
|
||||
# Notification types
|
||||
NOTIFICATION_ISATAP_CONFIGURATION_CHANGE = 0
|
||||
NOTIFICATION_PROCESS6TO4_CONFIGURATION_CHANGE = 1
|
||||
NOTIFICATION_TEREDO_CONFIGURATION_CHANGE = 2
|
||||
NOTIFICATION_IP_TLS_CONFIGURATION_CHANGE = 3
|
||||
NOTIFICATION_PORT_CONFIGURATION_CHANGE = 4
|
||||
NOTIFICATION_DNS64_CONFIGURATION_CHANGE = 5
|
||||
NOTIFICATION_DA_SITE_MGR_LOCAL_CONFIGURATION_CHANGE_EX = 6
|
||||
|
||||
################################################################################
|
||||
# STRUCTURES
|
||||
################################################################################
|
||||
|
||||
class BYTE_ARRAY(NDRUniConformantArray):
|
||||
item = 'c'
|
||||
|
||||
################################################################################
|
||||
# RPC CALLS
|
||||
################################################################################
|
||||
|
||||
# Opnum 0
|
||||
class IpTransitionProtocolApplyConfigChanges(NDRCALL):
|
||||
opnum = 0
|
||||
structure = (
|
||||
('NotificationNum', BYTE),
|
||||
)
|
||||
|
||||
class IpTransitionProtocolApplyConfigChangesResponse(NDRCALL):
|
||||
structure = (
|
||||
('ErrorCode', ULONG),
|
||||
)
|
||||
|
||||
# Opnum 1
|
||||
class IpTransitionProtocolApplyConfigChangesEx(NDRCALL):
|
||||
opnum = 1
|
||||
structure = (
|
||||
('NotificationNum', BYTE),
|
||||
('DataLength', ULONG),
|
||||
('Data', BYTE_ARRAY),
|
||||
)
|
||||
|
||||
class IpTransitionProtocolApplyConfigChangesExResponse(NDRCALL):
|
||||
structure = (
|
||||
('ErrorCode', ULONG),
|
||||
)
|
||||
|
||||
# Opnum 2
|
||||
class IpTransitionCreatev6Inv4Tunnel(NDRCALL):
|
||||
opnum = 2
|
||||
structure = (
|
||||
('LocalAddress', "4s=''"),
|
||||
('RemoteAddress', "4s=''"),
|
||||
('InterfaceName', WSTR),
|
||||
)
|
||||
|
||||
class IpTransitionCreatev6Inv4TunnelResponse(NDRCALL):
|
||||
structure = (
|
||||
('ErrorCode', ULONG),
|
||||
)
|
||||
|
||||
# Opnum 3
|
||||
class IpTransitionDeletev6Inv4Tunnel(NDRCALL):
|
||||
opnum = 3
|
||||
structure = (
|
||||
('TunnelGuid', GUID),
|
||||
)
|
||||
|
||||
class IpTransitionDeletev6Inv4TunnelResponse(NDRCALL):
|
||||
structure = (
|
||||
('ErrorCode', ULONG),
|
||||
)
|
||||
|
||||
################################################################################
|
||||
# OPNUMs and their corresponding structures
|
||||
################################################################################
|
||||
|
||||
OPNUMS = {
|
||||
0 : (IpTransitionProtocolApplyConfigChanges, IpTransitionProtocolApplyConfigChangesResponse),
|
||||
1 : (IpTransitionProtocolApplyConfigChangesEx, IpTransitionProtocolApplyConfigChangesExResponse),
|
||||
2 : (IpTransitionCreatev6Inv4Tunnel, IpTransitionCreatev6Inv4TunnelResponse),
|
||||
3 : (IpTransitionDeletev6Inv4Tunnel, IpTransitionDeletev6Inv4TunnelResponse)
|
||||
}
|
||||
|
||||
################################################################################
|
||||
# HELPER FUNCTIONS
|
||||
################################################################################
|
||||
def checkNullString(string):
|
||||
if string == NULL:
|
||||
return string
|
||||
|
||||
if string[-1:] != '\x00':
|
||||
return string + '\x00'
|
||||
else:
|
||||
return string
|
||||
|
||||
# For all notifications except EX
|
||||
def hIpTransitionProtocolApplyConfigChanges(dce, notification_num):
|
||||
request = IpTransitionProtocolApplyConfigChanges()
|
||||
request['NotificationNum'] = notification_num
|
||||
|
||||
return dce.request(request)
|
||||
|
||||
# Only for NOTIFICATION_DA_SITE_MGR_LOCAL_CONFIGURATION_CHANGE_EX
|
||||
# No admin required
|
||||
def hIpTransitionProtocolApplyConfigChangesEx(dce, notification_num, notification_data):
|
||||
request = IpTransitionProtocolApplyConfigChangesEx()
|
||||
request['NotificationNum'] = notification_num
|
||||
request['DataLength'] = len(notification_data)
|
||||
request['Data'] = notification_data
|
||||
|
||||
return dce.request(request)
|
||||
|
||||
# Same as netsh interface ipv6 add v6v4tunnel "Test Tunnel" 192.168.0.1 10.0.0.5
|
||||
def hIpTransitionCreatev6Inv4Tunnel(dce, local_address, remote_address, interface_name):
|
||||
request = IpTransitionCreatev6Inv4Tunnel()
|
||||
request['LocalAddress'] = inet_aton(local_address)
|
||||
request['RemoteAddress'] = inet_aton(remote_address)
|
||||
|
||||
request['InterfaceName'] = checkNullString(interface_name)
|
||||
request.fields['InterfaceName'].fields['MaximumCount'] = 256
|
||||
|
||||
return dce.request(request)
|
||||
|
||||
def hIpTransitionDeletev6Inv4Tunnel(dce, tunnel_guid):
|
||||
request = IpTransitionDeletev6Inv4Tunnel()
|
||||
request['TunnelGuid'] = uuid.string_to_bin(tunnel_guid)
|
||||
|
||||
return dce.request(request)
|
1665
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/lsad.py
Normal file
1665
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/lsad.py
Normal file
File diff suppressed because it is too large
Load diff
494
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/lsat.py
Normal file
494
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/lsat.py
Normal file
|
@ -0,0 +1,494 @@
|
|||
# SECUREAUTH LABS. Copyright 2018 SecureAuth Corporation. All rights reserved.
|
||||
#
|
||||
# This software is provided under under a slightly modified version
|
||||
# of the Apache Software License. See the accompanying LICENSE file
|
||||
# for more information.
|
||||
#
|
||||
# Author: Alberto Solino (@agsolino)
|
||||
#
|
||||
# Description:
|
||||
# [MS-LSAT] Interface implementation
|
||||
#
|
||||
# Best way to learn how to use these calls is to grab the protocol standard
|
||||
# so you understand what the call does, and then read the test case located
|
||||
# at https://github.com/SecureAuthCorp/impacket/tree/master/tests/SMB_RPC
|
||||
#
|
||||
# Some calls have helper functions, which makes it even easier to use.
|
||||
# They are located at the end of this file.
|
||||
# Helper functions start with "h"<name of the call>.
|
||||
# There are test cases for them too.
|
||||
#
|
||||
from impacket import nt_errors
|
||||
from impacket.dcerpc.v5.dtypes import ULONG, LONG, PRPC_SID, RPC_UNICODE_STRING, LPWSTR, PRPC_UNICODE_STRING, NTSTATUS, \
|
||||
NULL
|
||||
from impacket.dcerpc.v5.enum import Enum
|
||||
from impacket.dcerpc.v5.lsad import LSAPR_HANDLE, PLSAPR_TRUST_INFORMATION_ARRAY
|
||||
from impacket.dcerpc.v5.ndr import NDRCALL, NDRSTRUCT, NDRENUM, NDRPOINTER, NDRUniConformantArray
|
||||
from impacket.dcerpc.v5.rpcrt import DCERPCException
|
||||
from impacket.dcerpc.v5.samr import SID_NAME_USE
|
||||
from impacket.uuid import uuidtup_to_bin
|
||||
|
||||
MSRPC_UUID_LSAT = uuidtup_to_bin(('12345778-1234-ABCD-EF00-0123456789AB','0.0'))
|
||||
|
||||
class DCERPCSessionError(DCERPCException):
|
||||
def __init__(self, error_string=None, error_code=None, packet=None):
|
||||
DCERPCException.__init__(self, error_string, error_code, packet)
|
||||
|
||||
def __str__( self ):
|
||||
key = self.error_code
|
||||
if key in nt_errors.ERROR_MESSAGES:
|
||||
error_msg_short = nt_errors.ERROR_MESSAGES[key][0]
|
||||
error_msg_verbose = nt_errors.ERROR_MESSAGES[key][1]
|
||||
return 'LSAT SessionError: code: 0x%x - %s - %s' % (self.error_code, error_msg_short, error_msg_verbose)
|
||||
else:
|
||||
return 'LSAT SessionError: unknown error code: 0x%x' % self.error_code
|
||||
|
||||
################################################################################
|
||||
# CONSTANTS
|
||||
################################################################################
|
||||
# 2.2.10 ACCESS_MASK
|
||||
POLICY_LOOKUP_NAMES = 0x00000800
|
||||
|
||||
################################################################################
|
||||
# STRUCTURES
|
||||
################################################################################
|
||||
# 2.2.12 LSAPR_REFERENCED_DOMAIN_LIST
|
||||
class LSAPR_REFERENCED_DOMAIN_LIST(NDRSTRUCT):
|
||||
structure = (
|
||||
('Entries', ULONG),
|
||||
('Domains', PLSAPR_TRUST_INFORMATION_ARRAY),
|
||||
('MaxEntries', ULONG),
|
||||
)
|
||||
|
||||
class PLSAPR_REFERENCED_DOMAIN_LIST(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', LSAPR_REFERENCED_DOMAIN_LIST),
|
||||
)
|
||||
|
||||
# 2.2.14 LSA_TRANSLATED_SID
|
||||
class LSA_TRANSLATED_SID(NDRSTRUCT):
|
||||
structure = (
|
||||
('Use', SID_NAME_USE),
|
||||
('RelativeId', ULONG),
|
||||
('DomainIndex', LONG),
|
||||
)
|
||||
|
||||
# 2.2.15 LSAPR_TRANSLATED_SIDS
|
||||
class LSA_TRANSLATED_SID_ARRAY(NDRUniConformantArray):
|
||||
item = LSA_TRANSLATED_SID
|
||||
|
||||
class PLSA_TRANSLATED_SID_ARRAY(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', LSA_TRANSLATED_SID_ARRAY),
|
||||
)
|
||||
|
||||
class LSAPR_TRANSLATED_SIDS(NDRSTRUCT):
|
||||
structure = (
|
||||
('Entries', ULONG),
|
||||
('Sids', PLSA_TRANSLATED_SID_ARRAY),
|
||||
)
|
||||
|
||||
# 2.2.16 LSAP_LOOKUP_LEVEL
|
||||
class LSAP_LOOKUP_LEVEL(NDRENUM):
|
||||
class enumItems(Enum):
|
||||
LsapLookupWksta = 1
|
||||
LsapLookupPDC = 2
|
||||
LsapLookupTDL = 3
|
||||
LsapLookupGC = 4
|
||||
LsapLookupXForestReferral = 5
|
||||
LsapLookupXForestResolve = 6
|
||||
LsapLookupRODCReferralToFullDC = 7
|
||||
|
||||
# 2.2.17 LSAPR_SID_INFORMATION
|
||||
class LSAPR_SID_INFORMATION(NDRSTRUCT):
|
||||
structure = (
|
||||
('Sid', PRPC_SID),
|
||||
)
|
||||
|
||||
# 2.2.18 LSAPR_SID_ENUM_BUFFER
|
||||
class LSAPR_SID_INFORMATION_ARRAY(NDRUniConformantArray):
|
||||
item = LSAPR_SID_INFORMATION
|
||||
|
||||
class PLSAPR_SID_INFORMATION_ARRAY(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', LSAPR_SID_INFORMATION_ARRAY),
|
||||
)
|
||||
|
||||
class LSAPR_SID_ENUM_BUFFER(NDRSTRUCT):
|
||||
structure = (
|
||||
('Entries', ULONG),
|
||||
('SidInfo', PLSAPR_SID_INFORMATION_ARRAY),
|
||||
)
|
||||
|
||||
# 2.2.19 LSAPR_TRANSLATED_NAME
|
||||
class LSAPR_TRANSLATED_NAME(NDRSTRUCT):
|
||||
structure = (
|
||||
('Use', SID_NAME_USE),
|
||||
('Name', RPC_UNICODE_STRING),
|
||||
('DomainIndex', LONG),
|
||||
)
|
||||
|
||||
# 2.2.20 LSAPR_TRANSLATED_NAMES
|
||||
class LSAPR_TRANSLATED_NAME_ARRAY(NDRUniConformantArray):
|
||||
item = LSAPR_TRANSLATED_NAME
|
||||
|
||||
class PLSAPR_TRANSLATED_NAME_ARRAY(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', LSAPR_TRANSLATED_NAME_ARRAY),
|
||||
)
|
||||
|
||||
class LSAPR_TRANSLATED_NAMES(NDRSTRUCT):
|
||||
structure = (
|
||||
('Entries', ULONG),
|
||||
('Names', PLSAPR_TRANSLATED_NAME_ARRAY),
|
||||
)
|
||||
|
||||
# 2.2.21 LSAPR_TRANSLATED_NAME_EX
|
||||
class LSAPR_TRANSLATED_NAME_EX(NDRSTRUCT):
|
||||
structure = (
|
||||
('Use', SID_NAME_USE),
|
||||
('Name', RPC_UNICODE_STRING),
|
||||
('DomainIndex', LONG),
|
||||
('Flags', ULONG),
|
||||
)
|
||||
|
||||
# 2.2.22 LSAPR_TRANSLATED_NAMES_EX
|
||||
class LSAPR_TRANSLATED_NAME_EX_ARRAY(NDRUniConformantArray):
|
||||
item = LSAPR_TRANSLATED_NAME_EX
|
||||
|
||||
class PLSAPR_TRANSLATED_NAME_EX_ARRAY(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', LSAPR_TRANSLATED_NAME_EX_ARRAY),
|
||||
)
|
||||
|
||||
class LSAPR_TRANSLATED_NAMES_EX(NDRSTRUCT):
|
||||
structure = (
|
||||
('Entries', ULONG),
|
||||
('Names', PLSAPR_TRANSLATED_NAME_EX_ARRAY),
|
||||
)
|
||||
|
||||
# 2.2.23 LSAPR_TRANSLATED_SID_EX
|
||||
class LSAPR_TRANSLATED_SID_EX(NDRSTRUCT):
|
||||
structure = (
|
||||
('Use', SID_NAME_USE),
|
||||
('RelativeId', ULONG),
|
||||
('DomainIndex', LONG),
|
||||
('Flags', ULONG),
|
||||
)
|
||||
|
||||
# 2.2.24 LSAPR_TRANSLATED_SIDS_EX
|
||||
class LSAPR_TRANSLATED_SID_EX_ARRAY(NDRUniConformantArray):
|
||||
item = LSAPR_TRANSLATED_SID_EX
|
||||
|
||||
class PLSAPR_TRANSLATED_SID_EX_ARRAY(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', LSAPR_TRANSLATED_SID_EX_ARRAY),
|
||||
)
|
||||
|
||||
class LSAPR_TRANSLATED_SIDS_EX(NDRSTRUCT):
|
||||
structure = (
|
||||
('Entries', ULONG),
|
||||
('Sids', PLSAPR_TRANSLATED_SID_EX_ARRAY),
|
||||
)
|
||||
|
||||
# 2.2.25 LSAPR_TRANSLATED_SID_EX2
|
||||
class LSAPR_TRANSLATED_SID_EX2(NDRSTRUCT):
|
||||
structure = (
|
||||
('Use', SID_NAME_USE),
|
||||
('Sid', PRPC_SID),
|
||||
('DomainIndex', LONG),
|
||||
('Flags', ULONG),
|
||||
)
|
||||
|
||||
# 2.2.26 LSAPR_TRANSLATED_SIDS_EX2
|
||||
class LSAPR_TRANSLATED_SID_EX2_ARRAY(NDRUniConformantArray):
|
||||
item = LSAPR_TRANSLATED_SID_EX2
|
||||
|
||||
class PLSAPR_TRANSLATED_SID_EX2_ARRAY(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', LSAPR_TRANSLATED_SID_EX2_ARRAY),
|
||||
)
|
||||
|
||||
class LSAPR_TRANSLATED_SIDS_EX2(NDRSTRUCT):
|
||||
structure = (
|
||||
('Entries', ULONG),
|
||||
('Sids', PLSAPR_TRANSLATED_SID_EX2_ARRAY),
|
||||
)
|
||||
|
||||
class RPC_UNICODE_STRING_ARRAY(NDRUniConformantArray):
|
||||
item = RPC_UNICODE_STRING
|
||||
|
||||
################################################################################
|
||||
# RPC CALLS
|
||||
################################################################################
|
||||
# 3.1.4.4 LsarGetUserName (Opnum 45)
|
||||
class LsarGetUserName(NDRCALL):
|
||||
opnum = 45
|
||||
structure = (
|
||||
('SystemName', LPWSTR),
|
||||
('UserName', PRPC_UNICODE_STRING),
|
||||
('DomainName', PRPC_UNICODE_STRING),
|
||||
)
|
||||
|
||||
class LsarGetUserNameResponse(NDRCALL):
|
||||
structure = (
|
||||
('UserName', PRPC_UNICODE_STRING),
|
||||
('DomainName', PRPC_UNICODE_STRING),
|
||||
('ErrorCode', NTSTATUS),
|
||||
)
|
||||
|
||||
# 3.1.4.5 LsarLookupNames4 (Opnum 77)
|
||||
class LsarLookupNames4(NDRCALL):
|
||||
opnum = 77
|
||||
structure = (
|
||||
('Count', ULONG),
|
||||
('Names', RPC_UNICODE_STRING_ARRAY),
|
||||
('TranslatedSids', LSAPR_TRANSLATED_SIDS_EX2),
|
||||
('LookupLevel', LSAP_LOOKUP_LEVEL),
|
||||
('MappedCount', ULONG),
|
||||
('LookupOptions', ULONG),
|
||||
('ClientRevision', ULONG),
|
||||
)
|
||||
|
||||
class LsarLookupNames4Response(NDRCALL):
|
||||
structure = (
|
||||
('ReferencedDomains', PLSAPR_REFERENCED_DOMAIN_LIST),
|
||||
('TranslatedSids', LSAPR_TRANSLATED_SIDS_EX2),
|
||||
('MappedCount', ULONG),
|
||||
('ErrorCode', NTSTATUS),
|
||||
)
|
||||
|
||||
# 3.1.4.6 LsarLookupNames3 (Opnum 68)
|
||||
class LsarLookupNames3(NDRCALL):
|
||||
opnum = 68
|
||||
structure = (
|
||||
('PolicyHandle', LSAPR_HANDLE),
|
||||
('Count', ULONG),
|
||||
('Names', RPC_UNICODE_STRING_ARRAY),
|
||||
('TranslatedSids', LSAPR_TRANSLATED_SIDS_EX2),
|
||||
('LookupLevel', LSAP_LOOKUP_LEVEL),
|
||||
('MappedCount', ULONG),
|
||||
('LookupOptions', ULONG),
|
||||
('ClientRevision', ULONG),
|
||||
)
|
||||
|
||||
class LsarLookupNames3Response(NDRCALL):
|
||||
structure = (
|
||||
('ReferencedDomains', PLSAPR_REFERENCED_DOMAIN_LIST),
|
||||
('TranslatedSids', LSAPR_TRANSLATED_SIDS_EX2),
|
||||
('MappedCount', ULONG),
|
||||
('ErrorCode', NTSTATUS),
|
||||
)
|
||||
|
||||
# 3.1.4.7 LsarLookupNames2 (Opnum 58)
|
||||
class LsarLookupNames2(NDRCALL):
|
||||
opnum = 58
|
||||
structure = (
|
||||
('PolicyHandle', LSAPR_HANDLE),
|
||||
('Count', ULONG),
|
||||
('Names', RPC_UNICODE_STRING_ARRAY),
|
||||
('TranslatedSids', LSAPR_TRANSLATED_SIDS_EX),
|
||||
('LookupLevel', LSAP_LOOKUP_LEVEL),
|
||||
('MappedCount', ULONG),
|
||||
('LookupOptions', ULONG),
|
||||
('ClientRevision', ULONG),
|
||||
)
|
||||
|
||||
class LsarLookupNames2Response(NDRCALL):
|
||||
structure = (
|
||||
('ReferencedDomains', PLSAPR_REFERENCED_DOMAIN_LIST),
|
||||
('TranslatedSids', LSAPR_TRANSLATED_SIDS_EX),
|
||||
('MappedCount', ULONG),
|
||||
('ErrorCode', NTSTATUS),
|
||||
)
|
||||
|
||||
# 3.1.4.8 LsarLookupNames (Opnum 14)
|
||||
class LsarLookupNames(NDRCALL):
|
||||
opnum = 14
|
||||
structure = (
|
||||
('PolicyHandle', LSAPR_HANDLE),
|
||||
('Count', ULONG),
|
||||
('Names', RPC_UNICODE_STRING_ARRAY),
|
||||
('TranslatedSids', LSAPR_TRANSLATED_SIDS),
|
||||
('LookupLevel', LSAP_LOOKUP_LEVEL),
|
||||
('MappedCount', ULONG),
|
||||
)
|
||||
|
||||
class LsarLookupNamesResponse(NDRCALL):
|
||||
structure = (
|
||||
('ReferencedDomains', PLSAPR_REFERENCED_DOMAIN_LIST),
|
||||
('TranslatedSids', LSAPR_TRANSLATED_SIDS),
|
||||
('MappedCount', ULONG),
|
||||
('ErrorCode', NTSTATUS),
|
||||
)
|
||||
|
||||
# 3.1.4.9 LsarLookupSids3 (Opnum 76)
|
||||
class LsarLookupSids3(NDRCALL):
|
||||
opnum = 76
|
||||
structure = (
|
||||
('SidEnumBuffer', LSAPR_SID_ENUM_BUFFER),
|
||||
('TranslatedNames', LSAPR_TRANSLATED_NAMES_EX),
|
||||
('LookupLevel', LSAP_LOOKUP_LEVEL),
|
||||
('MappedCount', ULONG),
|
||||
('LookupOptions', ULONG),
|
||||
('ClientRevision', ULONG),
|
||||
)
|
||||
|
||||
class LsarLookupSids3Response(NDRCALL):
|
||||
structure = (
|
||||
('ReferencedDomains', PLSAPR_REFERENCED_DOMAIN_LIST),
|
||||
('TranslatedNames', LSAPR_TRANSLATED_NAMES_EX),
|
||||
('MappedCount', ULONG),
|
||||
('ErrorCode', NTSTATUS),
|
||||
)
|
||||
|
||||
# 3.1.4.10 LsarLookupSids2 (Opnum 57)
|
||||
class LsarLookupSids2(NDRCALL):
|
||||
opnum = 57
|
||||
structure = (
|
||||
('PolicyHandle', LSAPR_HANDLE),
|
||||
('SidEnumBuffer', LSAPR_SID_ENUM_BUFFER),
|
||||
('TranslatedNames', LSAPR_TRANSLATED_NAMES_EX),
|
||||
('LookupLevel', LSAP_LOOKUP_LEVEL),
|
||||
('MappedCount', ULONG),
|
||||
('LookupOptions', ULONG),
|
||||
('ClientRevision', ULONG),
|
||||
)
|
||||
|
||||
class LsarLookupSids2Response(NDRCALL):
|
||||
structure = (
|
||||
('ReferencedDomains', PLSAPR_REFERENCED_DOMAIN_LIST),
|
||||
('TranslatedNames', LSAPR_TRANSLATED_NAMES_EX),
|
||||
('MappedCount', ULONG),
|
||||
('ErrorCode', NTSTATUS),
|
||||
)
|
||||
|
||||
# 3.1.4.11 LsarLookupSids (Opnum 15)
|
||||
class LsarLookupSids(NDRCALL):
|
||||
opnum = 15
|
||||
structure = (
|
||||
('PolicyHandle', LSAPR_HANDLE),
|
||||
('SidEnumBuffer', LSAPR_SID_ENUM_BUFFER),
|
||||
('TranslatedNames', LSAPR_TRANSLATED_NAMES),
|
||||
('LookupLevel', LSAP_LOOKUP_LEVEL),
|
||||
('MappedCount', ULONG),
|
||||
)
|
||||
|
||||
class LsarLookupSidsResponse(NDRCALL):
|
||||
structure = (
|
||||
('ReferencedDomains', PLSAPR_REFERENCED_DOMAIN_LIST),
|
||||
('TranslatedNames', LSAPR_TRANSLATED_NAMES),
|
||||
('MappedCount', ULONG),
|
||||
('ErrorCode', NTSTATUS),
|
||||
)
|
||||
|
||||
################################################################################
|
||||
# OPNUMs and their corresponding structures
|
||||
################################################################################
|
||||
OPNUMS = {
|
||||
14 : (LsarLookupNames, LsarLookupNamesResponse),
|
||||
15 : (LsarLookupSids, LsarLookupSidsResponse),
|
||||
45 : (LsarGetUserName, LsarGetUserNameResponse),
|
||||
57 : (LsarLookupSids2, LsarLookupSids2Response),
|
||||
58 : (LsarLookupNames2, LsarLookupNames2Response),
|
||||
68 : (LsarLookupNames3, LsarLookupNames3Response),
|
||||
76 : (LsarLookupSids3, LsarLookupSids3Response),
|
||||
77 : (LsarLookupNames4, LsarLookupNames4Response),
|
||||
}
|
||||
|
||||
################################################################################
|
||||
# HELPER FUNCTIONS
|
||||
################################################################################
|
||||
def hLsarGetUserName(dce, userName = NULL, domainName = NULL):
|
||||
request = LsarGetUserName()
|
||||
request['SystemName'] = NULL
|
||||
request['UserName'] = userName
|
||||
request['DomainName'] = domainName
|
||||
return dce.request(request)
|
||||
|
||||
def hLsarLookupNames4(dce, names, lookupLevel = LSAP_LOOKUP_LEVEL.LsapLookupWksta, lookupOptions=0x00000000, clientRevision=0x00000001):
|
||||
request = LsarLookupNames4()
|
||||
request['Count'] = len(names)
|
||||
for name in names:
|
||||
itemn = RPC_UNICODE_STRING()
|
||||
itemn['Data'] = name
|
||||
request['Names'].append(itemn)
|
||||
request['TranslatedSids']['Sids'] = NULL
|
||||
request['LookupLevel'] = lookupLevel
|
||||
request['LookupOptions'] = lookupOptions
|
||||
request['ClientRevision'] = clientRevision
|
||||
|
||||
return dce.request(request)
|
||||
|
||||
def hLsarLookupNames3(dce, policyHandle, names, lookupLevel = LSAP_LOOKUP_LEVEL.LsapLookupWksta, lookupOptions=0x00000000, clientRevision=0x00000001):
|
||||
request = LsarLookupNames3()
|
||||
request['PolicyHandle'] = policyHandle
|
||||
request['Count'] = len(names)
|
||||
for name in names:
|
||||
itemn = RPC_UNICODE_STRING()
|
||||
itemn['Data'] = name
|
||||
request['Names'].append(itemn)
|
||||
request['TranslatedSids']['Sids'] = NULL
|
||||
request['LookupLevel'] = lookupLevel
|
||||
request['LookupOptions'] = lookupOptions
|
||||
request['ClientRevision'] = clientRevision
|
||||
|
||||
return dce.request(request)
|
||||
|
||||
def hLsarLookupNames2(dce, policyHandle, names, lookupLevel = LSAP_LOOKUP_LEVEL.LsapLookupWksta, lookupOptions=0x00000000, clientRevision=0x00000001):
|
||||
request = LsarLookupNames2()
|
||||
request['PolicyHandle'] = policyHandle
|
||||
request['Count'] = len(names)
|
||||
for name in names:
|
||||
itemn = RPC_UNICODE_STRING()
|
||||
itemn['Data'] = name
|
||||
request['Names'].append(itemn)
|
||||
request['TranslatedSids']['Sids'] = NULL
|
||||
request['LookupLevel'] = lookupLevel
|
||||
request['LookupOptions'] = lookupOptions
|
||||
request['ClientRevision'] = clientRevision
|
||||
|
||||
return dce.request(request)
|
||||
|
||||
def hLsarLookupNames(dce, policyHandle, names, lookupLevel = LSAP_LOOKUP_LEVEL.LsapLookupWksta):
|
||||
request = LsarLookupNames()
|
||||
request['PolicyHandle'] = policyHandle
|
||||
request['Count'] = len(names)
|
||||
for name in names:
|
||||
itemn = RPC_UNICODE_STRING()
|
||||
itemn['Data'] = name
|
||||
request['Names'].append(itemn)
|
||||
request['TranslatedSids']['Sids'] = NULL
|
||||
request['LookupLevel'] = lookupLevel
|
||||
|
||||
return dce.request(request)
|
||||
|
||||
def hLsarLookupSids2(dce, policyHandle, sids, lookupLevel = LSAP_LOOKUP_LEVEL.LsapLookupWksta, lookupOptions=0x00000000, clientRevision=0x00000001):
|
||||
request = LsarLookupSids2()
|
||||
request['PolicyHandle'] = policyHandle
|
||||
request['SidEnumBuffer']['Entries'] = len(sids)
|
||||
for sid in sids:
|
||||
itemn = LSAPR_SID_INFORMATION()
|
||||
itemn['Sid'].fromCanonical(sid)
|
||||
request['SidEnumBuffer']['SidInfo'].append(itemn)
|
||||
|
||||
request['TranslatedNames']['Names'] = NULL
|
||||
request['LookupLevel'] = lookupLevel
|
||||
request['LookupOptions'] = lookupOptions
|
||||
request['ClientRevision'] = clientRevision
|
||||
|
||||
return dce.request(request)
|
||||
|
||||
def hLsarLookupSids(dce, policyHandle, sids, lookupLevel = LSAP_LOOKUP_LEVEL.LsapLookupWksta):
|
||||
request = LsarLookupSids()
|
||||
request['PolicyHandle'] = policyHandle
|
||||
request['SidEnumBuffer']['Entries'] = len(sids)
|
||||
for sid in sids:
|
||||
itemn = LSAPR_SID_INFORMATION()
|
||||
itemn['Sid'].fromCanonical(sid)
|
||||
request['SidEnumBuffer']['SidInfo'].append(itemn)
|
||||
|
||||
request['TranslatedNames']['Names'] = NULL
|
||||
request['LookupLevel'] = lookupLevel
|
||||
|
||||
return dce.request(request)
|
166
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/mgmt.py
Normal file
166
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/mgmt.py
Normal file
|
@ -0,0 +1,166 @@
|
|||
# SECUREAUTH LABS. Copyright 2018 SecureAuth Corporation. All rights reserved.
|
||||
#
|
||||
# This software is provided under under a slightly modified version
|
||||
# of the Apache Software License. See the accompanying LICENSE file
|
||||
# for more information.
|
||||
#
|
||||
# Author: Alberto Solino (@agsolino)
|
||||
#
|
||||
# Description:
|
||||
# [C706] Remote Management Interface implementation
|
||||
#
|
||||
# Best way to learn how to use these calls is to grab the protocol standard
|
||||
# so you understand what the call does, and then read the test case located
|
||||
# at https://github.com/SecureAuthCorp/impacket/tree/master/tests/SMB_RPC
|
||||
#
|
||||
# Some calls have helper functions, which makes it even easier to use.
|
||||
# They are located at the end of this file.
|
||||
# Helper functions start with "h"<name of the call>.
|
||||
# There are test cases for them too.
|
||||
#
|
||||
from impacket.dcerpc.v5.ndr import NDRCALL, NDRSTRUCT, NDRPOINTER, NDRUniConformantArray, NDRUniConformantVaryingArray
|
||||
from impacket.dcerpc.v5.epm import PRPC_IF_ID
|
||||
from impacket.dcerpc.v5.dtypes import ULONG, DWORD_ARRAY, ULONGLONG
|
||||
from impacket.dcerpc.v5.rpcrt import DCERPCException
|
||||
from impacket.uuid import uuidtup_to_bin
|
||||
from impacket import nt_errors
|
||||
|
||||
MSRPC_UUID_MGMT = uuidtup_to_bin(('afa8bd80-7d8a-11c9-bef4-08002b102989','1.0'))
|
||||
|
||||
class DCERPCSessionError(DCERPCException):
|
||||
def __init__(self, error_string=None, error_code=None, packet=None):
|
||||
DCERPCException.__init__(self, error_string, error_code, packet)
|
||||
|
||||
def __str__( self ):
|
||||
key = self.error_code
|
||||
if key in nt_errors.ERROR_MESSAGES:
|
||||
error_msg_short = nt_errors.ERROR_MESSAGES[key][0]
|
||||
error_msg_verbose = nt_errors.ERROR_MESSAGES[key][1]
|
||||
return 'MGMT SessionError: code: 0x%x - %s - %s' % (self.error_code, error_msg_short, error_msg_verbose)
|
||||
else:
|
||||
return 'MGMT SessionError: unknown error code: 0x%x' % self.error_code
|
||||
|
||||
################################################################################
|
||||
# CONSTANTS
|
||||
################################################################################
|
||||
|
||||
class rpc_if_id_p_t_array(NDRUniConformantArray):
|
||||
item = PRPC_IF_ID
|
||||
|
||||
class rpc_if_id_vector_t(NDRSTRUCT):
|
||||
structure = (
|
||||
('count',ULONG),
|
||||
('if_id',rpc_if_id_p_t_array),
|
||||
)
|
||||
structure64 = (
|
||||
('count',ULONGLONG),
|
||||
('if_id',rpc_if_id_p_t_array),
|
||||
)
|
||||
|
||||
class rpc_if_id_vector_p_t(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', rpc_if_id_vector_t),
|
||||
)
|
||||
|
||||
error_status = ULONG
|
||||
################################################################################
|
||||
# STRUCTURES
|
||||
################################################################################
|
||||
|
||||
################################################################################
|
||||
# RPC CALLS
|
||||
################################################################################
|
||||
class inq_if_ids(NDRCALL):
|
||||
opnum = 0
|
||||
structure = (
|
||||
)
|
||||
|
||||
class inq_if_idsResponse(NDRCALL):
|
||||
structure = (
|
||||
('if_id_vector', rpc_if_id_vector_p_t),
|
||||
('status', error_status),
|
||||
)
|
||||
|
||||
class inq_stats(NDRCALL):
|
||||
opnum = 1
|
||||
structure = (
|
||||
('count', ULONG),
|
||||
)
|
||||
|
||||
class inq_statsResponse(NDRCALL):
|
||||
structure = (
|
||||
('count', ULONG),
|
||||
('statistics', DWORD_ARRAY),
|
||||
('status', error_status),
|
||||
)
|
||||
|
||||
class is_server_listening(NDRCALL):
|
||||
opnum = 2
|
||||
structure = (
|
||||
)
|
||||
|
||||
class is_server_listeningResponse(NDRCALL):
|
||||
structure = (
|
||||
('status', error_status),
|
||||
)
|
||||
|
||||
class stop_server_listening(NDRCALL):
|
||||
opnum = 3
|
||||
structure = (
|
||||
)
|
||||
|
||||
class stop_server_listeningResponse(NDRCALL):
|
||||
structure = (
|
||||
('status', error_status),
|
||||
)
|
||||
|
||||
class inq_princ_name(NDRCALL):
|
||||
opnum = 4
|
||||
structure = (
|
||||
('authn_proto', ULONG),
|
||||
('princ_name_size', ULONG),
|
||||
)
|
||||
|
||||
class inq_princ_nameResponse(NDRCALL):
|
||||
structure = (
|
||||
('princ_name', NDRUniConformantVaryingArray),
|
||||
('status', error_status),
|
||||
)
|
||||
|
||||
|
||||
################################################################################
|
||||
# OPNUMs and their corresponding structures
|
||||
################################################################################
|
||||
OPNUMS = {
|
||||
0 : (inq_if_ids, inq_if_idsResponse),
|
||||
1 : (inq_stats, inq_statsResponse),
|
||||
2 : (is_server_listening, is_server_listeningResponse),
|
||||
3 : (stop_server_listening, stop_server_listeningResponse),
|
||||
4 : (inq_princ_name, inq_princ_nameResponse),
|
||||
}
|
||||
|
||||
################################################################################
|
||||
# HELPER FUNCTIONS
|
||||
################################################################################
|
||||
def hinq_if_ids(dce):
|
||||
request = inq_if_ids()
|
||||
return dce.request(request)
|
||||
|
||||
def hinq_stats(dce, count = 4):
|
||||
request = inq_stats()
|
||||
request['count'] = count
|
||||
return dce.request(request)
|
||||
|
||||
def his_server_listening(dce):
|
||||
request = is_server_listening()
|
||||
return dce.request(request, checkError=False)
|
||||
|
||||
def hstop_server_listening(dce):
|
||||
request = stop_server_listening()
|
||||
return dce.request(request)
|
||||
|
||||
def hinq_princ_name(dce, authn_proto=0, princ_name_size=1):
|
||||
request = inq_princ_name()
|
||||
request['authn_proto'] = authn_proto
|
||||
request['princ_name_size'] = princ_name_size
|
||||
return dce.request(request, checkError=False)
|
236
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/mimilib.py
Normal file
236
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/mimilib.py
Normal file
|
@ -0,0 +1,236 @@
|
|||
# SECUREAUTH LABS. Copyright 2018 SecureAuth Corporation. All rights reserved.
|
||||
#
|
||||
# This software is provided under under a slightly modified version
|
||||
# of the Apache Software License. See the accompanying LICENSE file
|
||||
# for more information.
|
||||
#
|
||||
# Author: Alberto Solino (@agsolino)
|
||||
#
|
||||
# Description:
|
||||
# Mimikatz Interface implementation, based on @gentilkiwi IDL
|
||||
#
|
||||
# Best way to learn how to use these calls is to grab the protocol standard
|
||||
# so you understand what the call does, and then read the test case located
|
||||
# at https://github.com/SecureAuthCorp/impacket/tree/master/tests/SMB_RPC
|
||||
#
|
||||
# Some calls have helper functions, which makes it even easier to use.
|
||||
# They are located at the end of this file.
|
||||
# Helper functions start with "h"<name of the call>.
|
||||
# There are test cases for them too.
|
||||
#
|
||||
from __future__ import division
|
||||
from __future__ import print_function
|
||||
import binascii
|
||||
import random
|
||||
|
||||
from impacket import nt_errors
|
||||
from impacket.dcerpc.v5.dtypes import DWORD, ULONG
|
||||
from impacket.dcerpc.v5.ndr import NDRCALL, NDRSTRUCT, NDRPOINTER, NDRUniConformantArray
|
||||
from impacket.dcerpc.v5.rpcrt import DCERPCException
|
||||
from impacket.uuid import uuidtup_to_bin
|
||||
from impacket.structure import Structure
|
||||
|
||||
MSRPC_UUID_MIMIKATZ = uuidtup_to_bin(('17FC11E9-C258-4B8D-8D07-2F4125156244', '1.0'))
|
||||
|
||||
class DCERPCSessionError(DCERPCException):
|
||||
def __init__(self, error_string=None, error_code=None, packet=None):
|
||||
DCERPCException.__init__(self, error_string, error_code, packet)
|
||||
|
||||
def __str__( self ):
|
||||
key = self.error_code
|
||||
if key in nt_errors.ERROR_MESSAGES:
|
||||
error_msg_short = nt_errors.ERROR_MESSAGES[key][0]
|
||||
error_msg_verbose = nt_errors.ERROR_MESSAGES[key][1]
|
||||
return 'Mimikatz SessionError: code: 0x%x - %s - %s' % (self.error_code, error_msg_short, error_msg_verbose)
|
||||
else:
|
||||
return 'Mimikatz SessionError: unknown error code: 0x%x' % self.error_code
|
||||
|
||||
################################################################################
|
||||
# CONSTANTS
|
||||
################################################################################
|
||||
CALG_DH_EPHEM = 0x0000aa02
|
||||
TPUBLICKEYBLOB = 0x6
|
||||
CUR_BLOB_VERSION = 0x2
|
||||
ALG_ID = DWORD
|
||||
CALG_RC4 = 0x6801
|
||||
|
||||
################################################################################
|
||||
# STRUCTURES
|
||||
################################################################################
|
||||
class PUBLICKEYSTRUC(Structure):
|
||||
structure = (
|
||||
('bType','B=0'),
|
||||
('bVersion','B=0'),
|
||||
('reserved','<H=0'),
|
||||
('aiKeyAlg','<L=0'),
|
||||
)
|
||||
def __init__(self, data = None, alignment = 0):
|
||||
Structure.__init__(self,data,alignment)
|
||||
self['bType'] = TPUBLICKEYBLOB
|
||||
self['bVersion'] = CUR_BLOB_VERSION
|
||||
self['aiKeyAlg'] = CALG_DH_EPHEM
|
||||
|
||||
class DHPUBKEY(Structure):
|
||||
structure = (
|
||||
('magic','<L=0'),
|
||||
('bitlen','<L=0'),
|
||||
)
|
||||
def __init__(self, data = None, alignment = 0):
|
||||
Structure.__init__(self,data,alignment)
|
||||
self['magic'] = 0x31484400
|
||||
self['bitlen'] = 1024
|
||||
|
||||
class PUBLICKEYBLOB(Structure):
|
||||
structure = (
|
||||
('publickeystruc',':', PUBLICKEYSTRUC),
|
||||
('dhpubkey',':', DHPUBKEY),
|
||||
('yLen', '_-y','128'),
|
||||
('y',':'),
|
||||
)
|
||||
def __init__(self, data = None, alignment = 0):
|
||||
Structure.__init__(self,data,alignment)
|
||||
self['publickeystruc'] = PUBLICKEYSTRUC().getData()
|
||||
self['dhpubkey'] = DHPUBKEY().getData()
|
||||
|
||||
class MIMI_HANDLE(NDRSTRUCT):
|
||||
structure = (
|
||||
('Data','20s=""'),
|
||||
)
|
||||
def getAlignment(self):
|
||||
if self._isNDR64 is True:
|
||||
return 8
|
||||
else:
|
||||
return 4
|
||||
|
||||
class BYTE_ARRAY(NDRUniConformantArray):
|
||||
item = 'c'
|
||||
|
||||
class PBYTE_ARRAY(NDRPOINTER):
|
||||
referent = (
|
||||
('Data',BYTE_ARRAY),
|
||||
)
|
||||
|
||||
class MIMI_PUBLICKEY(NDRSTRUCT):
|
||||
structure = (
|
||||
('sessionType',ALG_ID),
|
||||
('cbPublicKey',DWORD),
|
||||
('pbPublicKey',PBYTE_ARRAY),
|
||||
)
|
||||
|
||||
class PMIMI_PUBLICKEY(NDRPOINTER):
|
||||
referent = (
|
||||
('Data',MIMI_PUBLICKEY),
|
||||
)
|
||||
|
||||
################################################################################
|
||||
# RPC CALLS
|
||||
################################################################################
|
||||
class MimiBind(NDRCALL):
|
||||
opnum = 0
|
||||
structure = (
|
||||
('clientPublicKey',MIMI_PUBLICKEY),
|
||||
)
|
||||
|
||||
class MimiBindResponse(NDRCALL):
|
||||
structure = (
|
||||
('serverPublicKey',MIMI_PUBLICKEY),
|
||||
('phMimi',MIMI_HANDLE),
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
class MimiUnbind(NDRCALL):
|
||||
opnum = 1
|
||||
structure = (
|
||||
('phMimi',MIMI_HANDLE),
|
||||
)
|
||||
|
||||
class MimiUnbindResponse(NDRCALL):
|
||||
structure = (
|
||||
('phMimi',MIMI_HANDLE),
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
class MimiCommand(NDRCALL):
|
||||
opnum = 2
|
||||
structure = (
|
||||
('phMimi',MIMI_HANDLE),
|
||||
('szEncCommand',DWORD),
|
||||
('encCommand',PBYTE_ARRAY),
|
||||
)
|
||||
|
||||
class MimiCommandResponse(NDRCALL):
|
||||
structure = (
|
||||
('szEncResult',DWORD),
|
||||
('encResult',PBYTE_ARRAY),
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
|
||||
################################################################################
|
||||
# OPNUMs and their corresponding structures
|
||||
################################################################################
|
||||
OPNUMS = {
|
||||
0 : (MimiBind, MimiBindResponse),
|
||||
1 : (MimiUnbind, MimiUnbindResponse),
|
||||
2 : (MimiCommand, MimiCommandResponse),
|
||||
}
|
||||
|
||||
################################################################################
|
||||
# HELPER FUNCTIONS
|
||||
################################################################################
|
||||
|
||||
class MimiDiffeH:
|
||||
def __init__(self):
|
||||
self.G = 2
|
||||
self.P = 0xFFFFFFFFFFFFFFFFC90FDAA22168C234C4C6628B80DC1CD129024E088A67CC74020BBEA63B139B22514A08798E3404DDEF9519B3CD3A431B302B0A6DF25F14374FE1356D6D51C245E485B576625E7EC6F44C42E9A637ED6B0BFF5CB6F406B7EDEE386BFB5A899FA5AE9F24117C4B1FE649286651ECE65381FFFFFFFFFFFFFFFF
|
||||
self.privateKey = random.getrandbits(1024)
|
||||
#self.privateKey = int('A'*128, base=16)
|
||||
|
||||
def genPublicKey(self):
|
||||
self.publicKey = pow(self.G, self.privateKey, self.P)
|
||||
tmp = hex(self.publicKey)[2:].rstrip('L')
|
||||
if len(tmp) & 1:
|
||||
tmp = '0' + tmp
|
||||
return binascii.unhexlify(tmp)
|
||||
|
||||
def getSharedSecret(self, serverPublicKey):
|
||||
pubKey = int(binascii.hexlify(serverPublicKey), base=16)
|
||||
self.sharedSecret = pow(pubKey, self.privateKey, self.P)
|
||||
tmp = hex(self.sharedSecret)[2:].rstrip('L')
|
||||
if len(tmp) & 1:
|
||||
tmp = '0' + tmp
|
||||
return binascii.unhexlify(tmp)
|
||||
|
||||
|
||||
def hMimiBind(dce, clientPublicKey):
|
||||
request = MimiBind()
|
||||
request['clientPublicKey'] = clientPublicKey
|
||||
return dce.request(request)
|
||||
|
||||
def hMimiCommand(dce, phMimi, encCommand):
|
||||
request = MimiCommand()
|
||||
request['phMimi'] = phMimi
|
||||
request['szEncCommand'] = len(encCommand)
|
||||
request['encCommand'] = list(encCommand)
|
||||
return dce.request(request)
|
||||
|
||||
if __name__ == '__main__':
|
||||
from impacket.winregistry import hexdump
|
||||
alice = MimiDiffeH()
|
||||
alice.G = 5
|
||||
alice.P = 23
|
||||
alice.privateKey = 6
|
||||
|
||||
bob = MimiDiffeH()
|
||||
bob.G = 5
|
||||
bob.P = 23
|
||||
bob.privateKey = 15
|
||||
|
||||
print('Alice pubKey')
|
||||
hexdump(alice.genPublicKey())
|
||||
print('Bob pubKey')
|
||||
hexdump(bob.genPublicKey())
|
||||
|
||||
print('Secret')
|
||||
hexdump(alice.getSharedSecret(bob.genPublicKey()))
|
||||
hexdump(bob.getSharedSecret(alice.genPublicKey()))
|
1714
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/ndr.py
Normal file
1714
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/ndr.py
Normal file
File diff suppressed because it is too large
Load diff
2853
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/nrpc.py
Normal file
2853
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/nrpc.py
Normal file
File diff suppressed because it is too large
Load diff
1361
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/nspi.py
Normal file
1361
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/nspi.py
Normal file
File diff suppressed because it is too large
Load diff
131
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/oxabref.py
Normal file
131
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/oxabref.py
Normal file
|
@ -0,0 +1,131 @@
|
|||
# SECUREAUTH LABS. Copyright 2020 SecureAuth Corporation. All rights reserved.
|
||||
#
|
||||
# This software is provided under a slightly modified version
|
||||
# of the Apache Software License. See the accompanying LICENSE file
|
||||
# for more information.
|
||||
#
|
||||
# Description:
|
||||
# [MS-OXABREF]: Address Book Name Service Provider Interface (NSPI) Referral Protocol
|
||||
#
|
||||
# Authors:
|
||||
# Arseniy Sharoglazov <mohemiv@gmail.com> / Positive Technologies (https://www.ptsecurity.com/)
|
||||
#
|
||||
|
||||
from impacket import hresult_errors, mapi_constants
|
||||
from impacket.dcerpc.v5.dtypes import NULL, STR, ULONG
|
||||
from impacket.dcerpc.v5.ndr import NDRCALL, NDRPOINTER
|
||||
from impacket.dcerpc.v5.rpcrt import DCERPCException
|
||||
from impacket.uuid import uuidtup_to_bin
|
||||
|
||||
MSRPC_UUID_OXABREF = uuidtup_to_bin(('1544F5E0-613C-11D1-93DF-00C04FD7BD09','1.0'))
|
||||
|
||||
class DCERPCSessionError(DCERPCException):
|
||||
def __init__(self, error_string=None, error_code=None, packet=None):
|
||||
DCERPCException.__init__(self, error_string, error_code, packet)
|
||||
|
||||
def __str__( self ):
|
||||
key = self.error_code
|
||||
if key in mapi_constants.ERROR_MESSAGES:
|
||||
error_msg_short = mapi_constants.ERROR_MESSAGES[key]
|
||||
return 'OXABREF SessionError: code: 0x%x - %s' % (self.error_code, error_msg_short)
|
||||
elif key in hresult_errors.ERROR_MESSAGES:
|
||||
error_msg_short = hresult_errors.ERROR_MESSAGES[key][0]
|
||||
error_msg_verbose = hresult_errors.ERROR_MESSAGES[key][1]
|
||||
return 'OXABREF SessionError: code: 0x%x - %s - %s' % (self.error_code, error_msg_short, error_msg_verbose)
|
||||
else:
|
||||
return 'OXABREF SessionError: unknown error code: 0x%x' % self.error_code
|
||||
|
||||
################################################################################
|
||||
# STRUCTURES
|
||||
################################################################################
|
||||
class PUCHAR_ARRAY(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', STR),
|
||||
)
|
||||
|
||||
class PPUCHAR_ARRAY(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', PUCHAR_ARRAY),
|
||||
)
|
||||
|
||||
################################################################################
|
||||
# RPC CALLS
|
||||
################################################################################
|
||||
|
||||
# 3.1.4.1 RfrGetNewDSA (opnum 0)
|
||||
class RfrGetNewDSA(NDRCALL):
|
||||
opnum = 0
|
||||
structure = (
|
||||
('ulFlags', ULONG),
|
||||
('pUserDN', STR),
|
||||
('ppszUnused', PPUCHAR_ARRAY),
|
||||
('ppszServer', PPUCHAR_ARRAY),
|
||||
)
|
||||
|
||||
class RfrGetNewDSAResponse(NDRCALL):
|
||||
structure = (
|
||||
('ppszUnused', PPUCHAR_ARRAY),
|
||||
('ppszServer', PPUCHAR_ARRAY),
|
||||
)
|
||||
|
||||
# 3.1.4.2 RfrGetFQDNFromServerDN (opnum 1)
|
||||
class RfrGetFQDNFromServerDN(NDRCALL):
|
||||
opnum = 1
|
||||
structure = (
|
||||
('ulFlags', ULONG),
|
||||
('cbMailboxServerDN', ULONG),
|
||||
('szMailboxServerDN', STR),
|
||||
)
|
||||
|
||||
class RfrGetFQDNFromServerDNResponse(NDRCALL):
|
||||
structure = (
|
||||
('ppszServerFQDN', PUCHAR_ARRAY),
|
||||
('ErrorCode', ULONG),
|
||||
)
|
||||
|
||||
################################################################################
|
||||
# OPNUMs and their corresponding structures
|
||||
################################################################################
|
||||
OPNUMS = {
|
||||
0 : (RfrGetNewDSA, RfrGetNewDSAResponse),
|
||||
1 : (RfrGetFQDNFromServerDN, RfrGetFQDNFromServerDNResponse),
|
||||
}
|
||||
|
||||
################################################################################
|
||||
# HELPER FUNCTIONS
|
||||
################################################################################
|
||||
def checkNullString(string):
|
||||
if string == NULL:
|
||||
return string
|
||||
|
||||
if string[-1:] != '\x00':
|
||||
return string + '\x00'
|
||||
else:
|
||||
return string
|
||||
|
||||
def hRfrGetNewDSA(dce, pUserDN=''):
|
||||
request = RfrGetNewDSA()
|
||||
request['ulFlags'] = 0
|
||||
request['pUserDN'] = checkNullString(pUserDN)
|
||||
request['ppszUnused'] = NULL
|
||||
request['ppszServer'] = '\x00'
|
||||
|
||||
resp = dce.request(request)
|
||||
resp['ppszServer'] = resp['ppszServer'][:-1]
|
||||
|
||||
if request['ppszUnused'] != NULL:
|
||||
resp['ppszUnused'] = resp['ppszUnused'][:-1]
|
||||
|
||||
return resp
|
||||
|
||||
def hRfrGetFQDNFromServerDN(dce, szMailboxServerDN):
|
||||
szMailboxServerDN = checkNullString(szMailboxServerDN)
|
||||
request = RfrGetFQDNFromServerDN()
|
||||
request['ulFlags'] = 0
|
||||
request['szMailboxServerDN'] = szMailboxServerDN
|
||||
request['cbMailboxServerDN'] = len(szMailboxServerDN)
|
||||
|
||||
resp = dce.request(request)
|
||||
resp['ppszServerFQDN'] = resp['ppszServerFQDN'][:-1]
|
||||
|
||||
return resp
|
846
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/rpch.py
Normal file
846
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/rpch.py
Normal file
|
@ -0,0 +1,846 @@
|
|||
# SECUREAUTH LABS. Copyright 2020 SecureAuth Corporation. All rights reserved.
|
||||
#
|
||||
# This software is provided under under a slightly modified version
|
||||
# of the Apache Software License. See the accompanying LICENSE file
|
||||
# for more information.
|
||||
#
|
||||
# Description:
|
||||
# Initial [MS-RCPH] Interface implementation
|
||||
#
|
||||
# Authors:
|
||||
# Arseniy Sharoglazov <mohemiv@gmail.com> / Positive Technologies (https://www.ptsecurity.com/)
|
||||
#
|
||||
|
||||
import re
|
||||
import binascii
|
||||
from struct import unpack
|
||||
|
||||
from impacket import uuid, ntlm, system_errors, nt_errors, LOG
|
||||
from impacket.dcerpc.v5.rpcrt import DCERPCException
|
||||
|
||||
from impacket.uuid import EMPTY_UUID
|
||||
from impacket.http import HTTPClientSecurityProvider, AUTH_BASIC
|
||||
from impacket.structure import Structure
|
||||
from impacket.dcerpc.v5.rpcrt import MSRPCHeader, \
|
||||
MSRPC_RTS, PFC_FIRST_FRAG, PFC_LAST_FRAG
|
||||
|
||||
class RPCProxyClientException(DCERPCException):
|
||||
parser = re.compile(r'RPC Error: ([a-fA-F0-9]{1,8})')
|
||||
|
||||
def __init__(self, error_string=None, proxy_error=None):
|
||||
rpc_error_code = None
|
||||
|
||||
if proxy_error is not None:
|
||||
try:
|
||||
search = self.parser.search(proxy_error)
|
||||
rpc_error_code = int(search.group(1), 16)
|
||||
except:
|
||||
error_string += ': ' + proxy_error
|
||||
|
||||
DCERPCException.__init__(self, error_string, rpc_error_code)
|
||||
|
||||
def __str__(self):
|
||||
if self.error_code is not None:
|
||||
key = self.error_code
|
||||
if key in system_errors.ERROR_MESSAGES:
|
||||
error_msg_short = system_errors.ERROR_MESSAGES[key][0]
|
||||
return '%s, code: 0x%x - %s' % (self.error_string, self.error_code, error_msg_short)
|
||||
elif key in nt_errors.ERROR_MESSAGES:
|
||||
error_msg_short = nt_errors.ERROR_MESSAGES[key][0]
|
||||
return '%s, code: 0x%x - %s' % (self.error_string, self.error_code, error_msg_short)
|
||||
else:
|
||||
return '%s: unknown code: 0x%x' % (self.error_string, self.error_code)
|
||||
else:
|
||||
return self.error_string
|
||||
|
||||
################################################################################
|
||||
# CONSTANTS
|
||||
################################################################################
|
||||
|
||||
RPC_OVER_HTTP_v1 = 1
|
||||
RPC_OVER_HTTP_v2 = 2
|
||||
|
||||
# Errors which might need handling
|
||||
|
||||
# RPCProxyClient internal errors
|
||||
RPC_PROXY_REMOTE_NAME_NEEDED_ERR = 'Basic authentication in RPC proxy is used, ' \
|
||||
'so coudn\'t obtain a target NetBIOS name from NTLMSSP to connect.'
|
||||
|
||||
# Errors below contain a part of server responses
|
||||
RPC_PROXY_INVALID_RPC_PORT_ERR = 'Invalid RPC Port'
|
||||
RPC_PROXY_CONN_A1_0X6BA_ERR = 'RPC Proxy CONN/A1 request failed, code: 0x6ba'
|
||||
RPC_PROXY_CONN_A1_404_ERR = 'CONN/A1 request failed: HTTP/1.1 404 Not Found'
|
||||
RPC_PROXY_RPC_OUT_DATA_404_ERR = 'RPC_OUT_DATA channel: HTTP/1.1 404 Not Found'
|
||||
RPC_PROXY_CONN_A1_401_ERR = 'CONN/A1 request failed: HTTP/1.1 401 Unauthorized'
|
||||
RPC_PROXY_HTTP_IN_DATA_401_ERR = 'RPC_IN_DATA channel: HTTP/1.1 401 Unauthorized'
|
||||
|
||||
|
||||
# 2.2.3.3 Forward Destinations
|
||||
FDClient = 0x00000000
|
||||
FDInProxy = 0x00000001
|
||||
FDServer = 0x00000002
|
||||
FDOutProxy = 0x00000003
|
||||
|
||||
RTS_FLAG_NONE = 0x0000
|
||||
RTS_FLAG_PING = 0x0001
|
||||
RTS_FLAG_OTHER_CMD = 0x0002
|
||||
RTS_FLAG_RECYCLE_CHANNEL = 0x0004
|
||||
RTS_FLAG_IN_CHANNEL = 0x0008
|
||||
RTS_FLAG_OUT_CHANNEL = 0x0010
|
||||
RTS_FLAG_EOF = 0x0020
|
||||
RTS_FLAG_ECHO = 0x0040
|
||||
|
||||
# 2.2.3.5 RTS Commands
|
||||
RTS_CMD_RECEIVE_WINDOW_SIZE = 0x00000000
|
||||
RTS_CMD_FLOW_CONTROL_ACK = 0x00000001
|
||||
RTS_CMD_CONNECTION_TIMEOUT = 0x00000002
|
||||
RTS_CMD_COOKIE = 0x00000003
|
||||
RTS_CMD_CHANNEL_LIFETIME = 0x00000004
|
||||
RTS_CMD_CLIENT_KEEPALIVE = 0x00000005
|
||||
RTS_CMD_VERSION = 0x00000006
|
||||
RTS_CMD_EMPTY = 0x00000007
|
||||
RTS_CMD_PADDING = 0x00000008
|
||||
RTS_CMD_NEGATIVE_ANCE = 0x00000009
|
||||
RTS_CMD_ANCE = 0x0000000A
|
||||
RTS_CMD_CLIENT_ADDRESS = 0x0000000B
|
||||
RTS_CMD_ASSOCIATION_GROUP_ID = 0x0000000C
|
||||
RTS_CMD_DESTINATION = 0x0000000D
|
||||
RTS_CMD_PING_TRAFFIC_SENT_NOTIFY = 0x0000000E
|
||||
|
||||
################################################################################
|
||||
# STRUCTURES
|
||||
################################################################################
|
||||
|
||||
# 2.2.3.1 RTS Cookie
|
||||
class RTSCookie(Structure):
|
||||
structure = (
|
||||
('Cookie','16s=b"\\x00"*16'),
|
||||
)
|
||||
|
||||
# 2.2.3.2 Client Address
|
||||
class EncodedClientAddress(Structure):
|
||||
structure = (
|
||||
('AddressType','<L=(0 if len(ClientAddress) == 4 else 1)'),
|
||||
('_ClientAddress','_-ClientAddress','4 if AddressType == 0 else 16'),
|
||||
('ClientAddress',':'),
|
||||
('Padding','12s=b"\\x00"*12'),
|
||||
)
|
||||
|
||||
# 2.2.3.4 Flow Control Acknowledgment
|
||||
class Ack(Structure):
|
||||
structure = (
|
||||
('BytesReceived','<L=0'),
|
||||
('AvailableWindow','<L=0'),
|
||||
('ChannelCookie',':',RTSCookie),
|
||||
)
|
||||
|
||||
# 2.2.3.5.1 ReceiveWindowSize
|
||||
class ReceiveWindowSize(Structure):
|
||||
structure = (
|
||||
('CommandType','<L=0'),
|
||||
('ReceiveWindowSize','<L=262144'),
|
||||
)
|
||||
|
||||
# 2.2.3.5.2 FlowControlAck
|
||||
class FlowControlAck(Structure):
|
||||
structure = (
|
||||
('CommandType','<L=1'),
|
||||
('Ack',':',Ack),
|
||||
)
|
||||
|
||||
# 2.2.3.5.3 ConnectionTimeout
|
||||
class ConnectionTimeout(Structure):
|
||||
structure = (
|
||||
('CommandType','<L=2'),
|
||||
('ConnectionTimeout','<L=120000'),
|
||||
)
|
||||
|
||||
# 2.2.3.5.4 Cookie
|
||||
class Cookie(Structure):
|
||||
structure = (
|
||||
('CommandType','<L=3'),
|
||||
('Cookie',':',RTSCookie),
|
||||
)
|
||||
|
||||
# 2.2.3.5.5 ChannelLifetime
|
||||
class ChannelLifetime(Structure):
|
||||
structure = (
|
||||
('CommandType','<L=4'),
|
||||
('ChannelLifetime','<L=1073741824'),
|
||||
)
|
||||
|
||||
# 2.2.3.5.6 ClientKeepalive
|
||||
#
|
||||
# By the spec, ClientKeepalive value can be 0 or in the inclusive
|
||||
# range of 60,000 through 4,294,967,295.
|
||||
# If it is 0, it MUST be interpreted as 300,000.
|
||||
#
|
||||
# But do not set it to 0, it will cause 0x6c0 rpc error.
|
||||
class ClientKeepalive(Structure):
|
||||
structure = (
|
||||
('CommandType','<L=5'),
|
||||
('ClientKeepalive','<L=300000'),
|
||||
)
|
||||
|
||||
# 2.2.3.5.7 Version
|
||||
class Version(Structure):
|
||||
structure = (
|
||||
('CommandType','<L=6'),
|
||||
('Version','<L=1'),
|
||||
)
|
||||
|
||||
# 2.2.3.5.8 Empty
|
||||
class Empty(Structure):
|
||||
structure = (
|
||||
('CommandType','<L=7'),
|
||||
)
|
||||
|
||||
# 2.2.3.5.9 Padding
|
||||
class Padding(Structure):
|
||||
structure = (
|
||||
('CommandType','<L=8'),
|
||||
('ConformanceCount','<L=len(Padding)'),
|
||||
('Padding','*ConformanceCount'),
|
||||
)
|
||||
|
||||
# 2.2.3.5.10 NegativeANCE
|
||||
class NegativeANCE(Structure):
|
||||
structure = (
|
||||
('CommandType','<L=9'),
|
||||
)
|
||||
|
||||
# 2.2.3.5.11 ANCE
|
||||
class ANCE(Structure):
|
||||
structure = (
|
||||
('CommandType','<L=0xA'),
|
||||
)
|
||||
|
||||
# 2.2.3.5.12 ClientAddress
|
||||
class ClientAddress(Structure):
|
||||
structure = (
|
||||
('CommandType','<L=0xB'),
|
||||
('ClientAddress',':',EncodedClientAddress),
|
||||
)
|
||||
|
||||
# 2.2.3.5.13 AssociationGroupId
|
||||
class AssociationGroupId(Structure):
|
||||
structure = (
|
||||
('CommandType','<L=0xC'),
|
||||
('AssociationGroupId',':',RTSCookie),
|
||||
)
|
||||
|
||||
# 2.2.3.5.14 Destination
|
||||
class Destination(Structure):
|
||||
structure = (
|
||||
('CommandType','<L=0xD'),
|
||||
('Destination','<L'),
|
||||
)
|
||||
|
||||
# 2.2.3.5.15 PingTrafficSentNotify
|
||||
class PingTrafficSentNotify(Structure):
|
||||
structure = (
|
||||
('CommandType','<L=0xE'),
|
||||
('PingTrafficSent','<L'),
|
||||
)
|
||||
|
||||
COMMANDS = {
|
||||
0x0: ReceiveWindowSize,
|
||||
0x1: FlowControlAck,
|
||||
0x2: ConnectionTimeout,
|
||||
0x3: Cookie,
|
||||
0x4: ChannelLifetime,
|
||||
0x5: ClientKeepalive,
|
||||
0x6: Version,
|
||||
0x7: Empty,
|
||||
0x8: Padding,
|
||||
0x9: NegativeANCE,
|
||||
0xA: ANCE,
|
||||
0xB: ClientAddress,
|
||||
0xC: AssociationGroupId,
|
||||
0xD: Destination,
|
||||
0xE: PingTrafficSentNotify,
|
||||
}
|
||||
|
||||
# 2.2.3.6.1 RTS PDU Header
|
||||
# The RTS PDU Header has the same layout as the common header of
|
||||
# the connection-oriented RPC PDU as specified in [C706] section 12.6.1,
|
||||
# with a few additional requirements around the contents of the header fields.
|
||||
class RTSHeader(MSRPCHeader):
|
||||
_SIZE = 20
|
||||
commonHdr = MSRPCHeader.commonHdr + (
|
||||
('Flags','<H=0'), # 16
|
||||
('NumberOfCommands','<H=0'), # 18
|
||||
)
|
||||
|
||||
def __init__(self, data=None, alignment=0):
|
||||
MSRPCHeader.__init__(self, data, alignment)
|
||||
self['type'] = MSRPC_RTS
|
||||
self['flags'] = PFC_FIRST_FRAG | PFC_LAST_FRAG
|
||||
self['auth_length'] = 0
|
||||
self['call_id'] = 0
|
||||
|
||||
# 2.2.4.2 CONN/A1 RTS PDU
|
||||
#
|
||||
# The CONN/A1 RTS PDU MUST be sent from the client to the outbound proxy on the OUT channel to
|
||||
# initiate the establishment of a virtual connection.
|
||||
class CONN_A1_RTS_PDU(Structure):
|
||||
structure = (
|
||||
('Version',':',Version),
|
||||
('VirtualConnectionCookie',':',Cookie),
|
||||
('OutChannelCookie',':',Cookie),
|
||||
('ReceiveWindowSize',':',ReceiveWindowSize),
|
||||
)
|
||||
|
||||
# 2.2.4.5 CONN/B1 RTS PDU
|
||||
#
|
||||
# The CONN/B1 RTS PDU MUST be sent from the client to the inbound proxy on the IN channel to
|
||||
# initiate the establishment of a virtual connection.
|
||||
class CONN_B1_RTS_PDU(Structure):
|
||||
structure = (
|
||||
('Version',':',Version),
|
||||
('VirtualConnectionCookie',':',Cookie),
|
||||
('INChannelCookie',':',Cookie),
|
||||
('ChannelLifetime',':',ChannelLifetime),
|
||||
('ClientKeepalive',':',ClientKeepalive),
|
||||
('AssociationGroupId',':',AssociationGroupId),
|
||||
)
|
||||
|
||||
# 2.2.4.4 CONN/A3 RTS PDU
|
||||
#
|
||||
# The CONN/A3 RTS PDU MUST be sent from the outbound proxy to the client on the OUT channel to
|
||||
# continue the establishment of the virtual connection.
|
||||
class CONN_A3_RTS_PDU(Structure):
|
||||
structure = (
|
||||
('ConnectionTimeout',':',ConnectionTimeout),
|
||||
)
|
||||
|
||||
# 2.2.4.9 CONN/C2 RTS PDU
|
||||
#
|
||||
# The CONN/C2 RTS PDU MUST be sent from the outbound proxy to the client on the OUT channel to
|
||||
# notify it that a virtual connection has been established.
|
||||
class CONN_C2_RTS_PDU(Structure):
|
||||
structure = (
|
||||
('Version',':',Version),
|
||||
('ReceiveWindowSize',':',ReceiveWindowSize),
|
||||
('ConnectionTimeout',':',ConnectionTimeout),
|
||||
)
|
||||
|
||||
# 2.2.4.51 FlowControlAckWithDestination RTS PDU
|
||||
class FlowControlAckWithDestination_RTS_PDU(Structure):
|
||||
structure = (
|
||||
('Destination',':',Destination),
|
||||
('FlowControlAck',':',FlowControlAck),
|
||||
)
|
||||
|
||||
################################################################################
|
||||
# HELPERS
|
||||
################################################################################
|
||||
def hCONN_A1(virtualConnectionCookie=EMPTY_UUID, outChannelCookie=EMPTY_UUID, receiveWindowSize=262144):
|
||||
conn_a1 = CONN_A1_RTS_PDU()
|
||||
conn_a1['Version'] = Version()
|
||||
conn_a1['VirtualConnectionCookie'] = Cookie()
|
||||
conn_a1['VirtualConnectionCookie']['Cookie'] = virtualConnectionCookie
|
||||
conn_a1['OutChannelCookie'] = Cookie()
|
||||
conn_a1['OutChannelCookie']['Cookie'] = outChannelCookie
|
||||
conn_a1['ReceiveWindowSize'] = ReceiveWindowSize()
|
||||
conn_a1['ReceiveWindowSize']['ReceiveWindowSize'] = receiveWindowSize
|
||||
|
||||
packet = RTSHeader()
|
||||
packet['Flags'] = RTS_FLAG_NONE
|
||||
packet['NumberOfCommands'] = len(conn_a1.structure)
|
||||
packet['pduData'] = conn_a1.getData()
|
||||
|
||||
return packet.getData()
|
||||
|
||||
def hCONN_B1(virtualConnectionCookie=EMPTY_UUID, inChannelCookie=EMPTY_UUID, associationGroupId=EMPTY_UUID):
|
||||
conn_b1 = CONN_B1_RTS_PDU()
|
||||
conn_b1['Version'] = Version()
|
||||
conn_b1['VirtualConnectionCookie'] = Cookie()
|
||||
conn_b1['VirtualConnectionCookie']['Cookie'] = virtualConnectionCookie
|
||||
conn_b1['INChannelCookie'] = Cookie()
|
||||
conn_b1['INChannelCookie']['Cookie'] = inChannelCookie
|
||||
conn_b1['ChannelLifetime'] = ChannelLifetime()
|
||||
conn_b1['ClientKeepalive'] = ClientKeepalive()
|
||||
conn_b1['AssociationGroupId'] = AssociationGroupId()
|
||||
conn_b1['AssociationGroupId']['AssociationGroupId'] = RTSCookie()
|
||||
conn_b1['AssociationGroupId']['AssociationGroupId']['Cookie'] = associationGroupId
|
||||
|
||||
packet = RTSHeader()
|
||||
packet['Flags'] = RTS_FLAG_NONE
|
||||
packet['NumberOfCommands'] = len(conn_b1.structure)
|
||||
packet['pduData'] = conn_b1.getData()
|
||||
|
||||
return packet.getData()
|
||||
|
||||
def hFlowControlAckWithDestination(destination, bytesReceived, availableWindow, channelCookie):
|
||||
rts_pdu = FlowControlAckWithDestination_RTS_PDU()
|
||||
rts_pdu['Destination'] = Destination()
|
||||
rts_pdu['Destination']['Destination'] = destination
|
||||
rts_pdu['FlowControlAck'] = FlowControlAck()
|
||||
rts_pdu['FlowControlAck']['Ack'] = Ack()
|
||||
rts_pdu['FlowControlAck']['Ack']['BytesReceived'] = bytesReceived
|
||||
rts_pdu['FlowControlAck']['Ack']['AvailableWindow'] = availableWindow
|
||||
|
||||
# Cookie of the channel for which the traffic received is being acknowledged
|
||||
rts_pdu['FlowControlAck']['Ack']['ChannelCookie'] = RTSCookie()
|
||||
rts_pdu['FlowControlAck']['Ack']['ChannelCookie']['Cookie'] = channelCookie
|
||||
|
||||
packet = RTSHeader()
|
||||
packet['Flags'] = RTS_FLAG_OTHER_CMD
|
||||
packet['NumberOfCommands'] = len(rts_pdu.structure)
|
||||
packet['pduData'] = rts_pdu.getData()
|
||||
|
||||
return packet.getData()
|
||||
|
||||
def hPing():
|
||||
packet = RTSHeader()
|
||||
packet['Flags'] = RTS_FLAG_PING
|
||||
|
||||
return packet.getData()
|
||||
|
||||
################################################################################
|
||||
# CLASSES
|
||||
################################################################################
|
||||
class RPCProxyClient(HTTPClientSecurityProvider):
|
||||
RECV_SIZE = 8192
|
||||
default_headers = {'User-Agent' : 'MSRPC',
|
||||
'Cache-Control': 'no-cache',
|
||||
'Connection' : 'Keep-Alive',
|
||||
'Expect' : '100-continue',
|
||||
'Accept' : 'application/rpc',
|
||||
'Pragma' : 'No-cache'
|
||||
}
|
||||
|
||||
def __init__(self, remoteName=None, dstport=593):
|
||||
HTTPClientSecurityProvider.__init__(self)
|
||||
self.__remoteName = remoteName
|
||||
self.__dstport = dstport
|
||||
|
||||
# Chosen auth type
|
||||
self.__auth_type = None
|
||||
|
||||
self.init_state()
|
||||
|
||||
def init_state(self):
|
||||
self.__channels = {}
|
||||
|
||||
self.__inChannelCookie = uuid.generate()
|
||||
self.__outChannelCookie = uuid.generate()
|
||||
self.__associationGroupId = uuid.generate()
|
||||
self.__virtualConnectionCookie = uuid.generate()
|
||||
|
||||
self.__serverConnectionTimeout = None
|
||||
self.__serverReceiveWindowSize = None
|
||||
self.__availableWindowAdvertised = 262144 # 256k
|
||||
self.__receiverAvailableWindow = self.__availableWindowAdvertised
|
||||
self.__bytesReceived = 0
|
||||
|
||||
self.__serverChunked = False
|
||||
self.__readBuffer = b''
|
||||
self.__chunkLeft = 0
|
||||
|
||||
self.rts_ping_received = False
|
||||
|
||||
def set_proxy_credentials(self, username, password, domain='', lmhash='', nthash=''):
|
||||
LOG.error("DeprecationWarning: Call to deprecated method set_proxy_credentials (use set_credentials).")
|
||||
self.set_credentials(username, password, domain, lmhash, nthash)
|
||||
|
||||
def set_credentials(self, username, password, domain='', lmhash='', nthash='', aesKey='', TGT=None, TGS=None):
|
||||
HTTPClientSecurityProvider.set_credentials(self, username, password,
|
||||
domain, lmhash, nthash, aesKey, TGT, TGS)
|
||||
|
||||
def create_rpc_in_channel(self):
|
||||
headers = self.default_headers.copy()
|
||||
headers['Content-Length'] = '1073741824'
|
||||
|
||||
self.create_channel('RPC_IN_DATA', headers)
|
||||
|
||||
def create_rpc_out_channel(self):
|
||||
headers = self.default_headers.copy()
|
||||
headers['Content-Length'] = '76'
|
||||
|
||||
self.create_channel('RPC_OUT_DATA', headers)
|
||||
|
||||
def create_channel(self, method, headers):
|
||||
self.__channels[method] = HTTPClientSecurityProvider.connect(self, self._rpcProxyUrl.scheme,
|
||||
self._rpcProxyUrl.netloc)
|
||||
|
||||
auth_headers = HTTPClientSecurityProvider.get_auth_headers(self, self.__channels[method],
|
||||
method, self._rpcProxyUrl.path, headers)[0]
|
||||
|
||||
headers_final = {}
|
||||
headers_final.update(headers)
|
||||
headers_final.update(auth_headers)
|
||||
|
||||
self.__auth_type = HTTPClientSecurityProvider.get_auth_type(self)
|
||||
|
||||
# To connect to an RPC Server, we need to let the RPC Proxy know
|
||||
# where to connect. The target RPC Server name and its port are passed
|
||||
# in the query of the HTTP request. The target RPC Server must be the ncacn_http
|
||||
# service.
|
||||
#
|
||||
# The utilized format: /rpc/rpcproxy.dll?RemoteName:RemotePort
|
||||
#
|
||||
# For RDG servers, you can specify localhost:3388, but in other cases you cannot
|
||||
# use localhost as there will be no ACL for it.
|
||||
#
|
||||
# To know what RemoteName to use, we rely on Default ACL. It's specified
|
||||
# in the HKLM\SOFTWARE\Microsoft\Rpc\RpcProxy key:
|
||||
#
|
||||
# ValidPorts REG_SZ COMPANYSERVER04:593;COMPANYSERVER04:49152-65535
|
||||
#
|
||||
# In this way, we can at least connect to the endpoint mapper on port 593.
|
||||
# So, if the caller set remoteName to an empty string, we assume the target
|
||||
# is the RPC Proxy server itself, and get its NetBIOS name from the NTLMSSP.
|
||||
#
|
||||
# Interestingly, if the administrator renames the server after RPC Proxy installation
|
||||
# or joins the server to the domain after RPC Proxy installation, the ACL will remain
|
||||
# the original. So, sometimes the ValidPorts values have the format WIN-JCKEDQVDOQU, and
|
||||
# we are not able to use them.
|
||||
#
|
||||
# For Exchange servers, the value of the default ACL doesn't matter as they
|
||||
# allow connections by their own mechanisms:
|
||||
# - Exchange 2003 / 2007 / 2010 servers add their own ACL, which includes
|
||||
# NetBIOS names of all Exchange servers (and some other servers).
|
||||
# This ACL is regularly and automatically updated on each server.
|
||||
# Allowed ports: 6001-6004
|
||||
#
|
||||
# 6001 is used for MS-OXCRPC
|
||||
# 6002 is used for MS-OXABREF
|
||||
# 6003 is not used
|
||||
# 6004 is used for MS-OXNSPI
|
||||
#
|
||||
# Tests on Exchange 2010 show that MS-OXNSPI and MS-OXABREF are available
|
||||
# on both 6002 and 6004.
|
||||
#
|
||||
# - Exchange 2013 / 2016 / 2019 servers process RemoteName on their own
|
||||
# (via RpcProxyShim.dll), and the NetBIOS name format is supported only for
|
||||
# backward compatibility.
|
||||
#
|
||||
# ! Default ACL is never used, so there is no way to connect to the endpoint mapper!
|
||||
#
|
||||
# Allowed ports: 6001-6004
|
||||
#
|
||||
# 6001 is used for MS-OXCRPC
|
||||
# 6002 is used for MS-OXABREF
|
||||
# 6003 is not used
|
||||
# 6004 is used for MS-OXNSPI
|
||||
#
|
||||
# Tests show that all protocols are available on the 6001 / 6002 / 6004 ports via
|
||||
# RPC over HTTP v2, and the separation is only used for backward compatibility.
|
||||
#
|
||||
# The pure ncacn_http endpoint is available only on the 6001 TCP/IP port.
|
||||
#
|
||||
# RpcProxyShim.dll allows you to skip authentication on the RPC level to get
|
||||
# a faster connection, and it makes Exchange 2013 / 2016 / 2019 RPC over HTTP v2
|
||||
# endpoints vulnerable to NTLM-Relaying attacks.
|
||||
#
|
||||
# If the target is Exchange behind Microsoft TMG, you most likely need to specify
|
||||
# the remote name manually using the value from /autodiscover/autodiscover.xml.
|
||||
# Note that /autodiscover/autodiscover.xml might not be available with
|
||||
# a non-outlook User-Agent.
|
||||
#
|
||||
# There may be multiple RPC Proxy servers with different NetBIOS names on
|
||||
# a single external IP. We store the first one's NetBIOS name and use it for all
|
||||
# the following channels.
|
||||
# It's acceptable to assume all RPC Proxies have the same ACLs (true for Exchange).
|
||||
if not self.__remoteName and self.__auth_type == AUTH_BASIC:
|
||||
raise RPCProxyClientException(RPC_PROXY_REMOTE_NAME_NEEDED_ERR)
|
||||
|
||||
if not self.__remoteName:
|
||||
ntlmssp = self.get_ntlmssp_info()
|
||||
self.__remoteName = ntlmssp[ntlm.NTLMSSP_AV_HOSTNAME][1].decode('utf-16le')
|
||||
self._stringbinding.set_network_address(self.__remoteName)
|
||||
LOG.debug('StringBinding has been changed to %s' % self._stringbinding)
|
||||
|
||||
if not self._rpcProxyUrl.query:
|
||||
query = self.__remoteName + ':' + str(self.__dstport)
|
||||
self._rpcProxyUrl = self._rpcProxyUrl._replace(query=query)
|
||||
|
||||
path = self._rpcProxyUrl.path + '?' + self._rpcProxyUrl.query
|
||||
|
||||
self.__channels[method].request(method, path, headers=headers_final)
|
||||
self._read_100_continue(method)
|
||||
|
||||
def _read_100_continue(self, method):
|
||||
resp = self.__channels[method].sock.recv(self.RECV_SIZE)
|
||||
|
||||
while resp.find(b'\r\n\r\n') == -1:
|
||||
resp += self.__channels[method].sock.recv(self.RECV_SIZE)
|
||||
|
||||
# Continue responses can have multiple lines, for example:
|
||||
#
|
||||
# HTTP/1.1 100 Continue
|
||||
# Via: 1.1 FIREWALL1
|
||||
#
|
||||
# Don't expect the response to contain "100 Continue\r\n\r\n"
|
||||
if resp[9:23] != b'100 Continue\r\n':
|
||||
try:
|
||||
# The server (IIS) may return localized error messages in
|
||||
# the first line. Tests shown they are in UTF-8.
|
||||
resp = resp.split(b'\r\n')[0].decode("UTF-8", errors='replace')
|
||||
|
||||
raise RPCProxyClientException('RPC Proxy Client: %s authentication failed in %s channel' %
|
||||
(self.__auth_type, method), proxy_error=resp)
|
||||
except (IndexError, KeyError, AttributeError):
|
||||
raise RPCProxyClientException('RPC Proxy Client: %s authentication failed in %s channel' %
|
||||
(self.__auth_type, method))
|
||||
|
||||
def create_tunnel(self):
|
||||
# 3.2.1.5.3.1 Connection Establishment
|
||||
packet = hCONN_A1(self.__virtualConnectionCookie, self.__outChannelCookie, self.__availableWindowAdvertised)
|
||||
self.get_socket_out().send(packet)
|
||||
|
||||
packet = hCONN_B1(self.__virtualConnectionCookie, self.__inChannelCookie, self.__associationGroupId)
|
||||
self.get_socket_in().send(packet)
|
||||
|
||||
resp = self.get_socket_out().recv(self.RECV_SIZE)
|
||||
|
||||
while resp.find(b'\r\n\r\n') == -1:
|
||||
resp += self.get_socket_out().recv(self.RECV_SIZE)
|
||||
|
||||
if resp[9:12] != b'200':
|
||||
try:
|
||||
# The server (IIS) may return localized error messages in
|
||||
# the first line. Tests shown they are in UTF-8.
|
||||
resp = resp.split(b'\r\n')[0].decode("UTF-8", errors='replace')
|
||||
|
||||
raise RPCProxyClientException('RPC Proxy CONN/A1 request failed', proxy_error=resp)
|
||||
except (IndexError, KeyError, AttributeError):
|
||||
raise RPCProxyClientException('RPC Proxy CONN/A1 request failed')
|
||||
|
||||
if b'Transfer-Encoding: chunked' in resp:
|
||||
self.__serverChunked = True
|
||||
|
||||
# If the body is here, let's send it to rpc_out_recv1()
|
||||
self.__readBuffer = resp[resp.find(b'\r\n\r\n') + 4:]
|
||||
|
||||
# Recieving and parsing CONN/A3
|
||||
conn_a3_rpc = self.rpc_out_read_pkt()
|
||||
conn_a3_pdu = RTSHeader(conn_a3_rpc)['pduData']
|
||||
conn_a3 = CONN_A3_RTS_PDU(conn_a3_pdu)
|
||||
self.__serverConnectionTimeout = conn_a3['ConnectionTimeout']['ConnectionTimeout']
|
||||
|
||||
# Recieving and parsing CONN/C2
|
||||
conn_c2_rpc = self.rpc_out_read_pkt()
|
||||
conn_c2_pdu = RTSHeader(conn_c2_rpc)['pduData']
|
||||
conn_c2 = CONN_C2_RTS_PDU(conn_c2_pdu)
|
||||
self.__serverReceiveWindowSize = conn_c2['ReceiveWindowSize']['ReceiveWindowSize']
|
||||
|
||||
def get_socket_in(self):
|
||||
return self.__channels['RPC_IN_DATA'].sock
|
||||
|
||||
def get_socket_out(self):
|
||||
return self.__channels['RPC_OUT_DATA'].sock
|
||||
|
||||
def close_rpc_in_channel(self):
|
||||
return self.__channels['RPC_IN_DATA'].close()
|
||||
|
||||
def close_rpc_out_channel(self):
|
||||
return self.__channels['RPC_OUT_DATA'].close()
|
||||
|
||||
def check_http_error(self, buffer):
|
||||
if buffer[:22] == b'HTTP/1.0 503 RPC Error':
|
||||
raise RPCProxyClientException('RPC Proxy request failed', proxy_error=buffer)
|
||||
|
||||
def rpc_out_recv1(self, amt=None):
|
||||
# Read with at most one underlying system call.
|
||||
# The function MUST return the maximum amt bytes.
|
||||
#
|
||||
# Strictly speaking, it may cause more than one read,
|
||||
# but that is ok, since that is to satisfy the chunked protocol.
|
||||
sock = self.get_socket_out()
|
||||
|
||||
if self.__serverChunked is False:
|
||||
if len(self.__readBuffer) > 0:
|
||||
buffer = self.__readBuffer
|
||||
self.__readBuffer = b''
|
||||
else:
|
||||
# Let's read RECV_SIZE bytes and not amt bytes.
|
||||
# We would need to check the answer for HTTP errors, as
|
||||
# they can just appear in the middle of the stream.
|
||||
buffer = sock.recv(self.RECV_SIZE)
|
||||
|
||||
self.check_http_error(buffer)
|
||||
|
||||
if len(buffer) <= amt:
|
||||
return buffer
|
||||
|
||||
# We received more than we need
|
||||
self.__readBuffer = buffer[amt:]
|
||||
return buffer[:amt]
|
||||
|
||||
# Check if the previous chunk is still there
|
||||
if self.__chunkLeft > 0:
|
||||
# If the previous chunk is still there,
|
||||
# just give the caller what we already have
|
||||
if amt >= self.__chunkLeft:
|
||||
buffer = self.__readBuffer[:self.__chunkLeft]
|
||||
# We may have recieved a part of a new chunk
|
||||
self.__readBuffer = self.__readBuffer[self.__chunkLeft + 2:]
|
||||
self.__chunkLeft = 0
|
||||
|
||||
return buffer
|
||||
else:
|
||||
buffer = self.__readBuffer[:amt]
|
||||
self.__readBuffer = self.__readBuffer[amt:]
|
||||
self.__chunkLeft -= amt
|
||||
|
||||
return buffer
|
||||
|
||||
# Let's start to process a new chunk
|
||||
buffer = self.__readBuffer
|
||||
self.__readBuffer = b''
|
||||
|
||||
self.check_http_error(buffer)
|
||||
|
||||
# Let's receive a chunk size field which ends with CRLF
|
||||
# For Microsoft TMG 2010 it can cause more than one read
|
||||
while buffer.find(b'\r\n') == -1:
|
||||
buffer += sock.recv(self.RECV_SIZE)
|
||||
self.check_http_error(buffer)
|
||||
|
||||
chunksize = int(buffer[:buffer.find(b'\r\n')], 16)
|
||||
buffer = buffer[buffer.find(b'\r\n') + 2:]
|
||||
|
||||
# Let's read at least our chunk including final CRLF
|
||||
while len(buffer) - 2 < chunksize:
|
||||
buffer += sock.recv(chunksize - len(buffer) + 2)
|
||||
|
||||
# We should not be using any information from
|
||||
# the TCP level to determine HTTP boundaries.
|
||||
# So, we may have received more than we need.
|
||||
if len(buffer) - 2 > chunksize:
|
||||
self.__readBuffer = buffer[chunksize + 2:]
|
||||
buffer = buffer[:chunksize + 2]
|
||||
|
||||
# Checking the amt
|
||||
if len(buffer) - 2 > amt:
|
||||
self.__chunkLeft = chunksize - amt
|
||||
# We may have recieved a part of a new chunk before,
|
||||
# so the concatenation is crucual
|
||||
self.__readBuffer = buffer[amt:] + self.__readBuffer
|
||||
|
||||
return buffer[:amt]
|
||||
else:
|
||||
# Removing CRLF
|
||||
return buffer[:-2]
|
||||
|
||||
def send(self, data, forceWriteAndx=0, forceRecv=0):
|
||||
# We don't use chunked encoding for IN channel as
|
||||
# Microsoft software is developed this way.
|
||||
# If you do this, it may fail.
|
||||
self.get_socket_in().send(data)
|
||||
|
||||
def rpc_out_read_pkt(self, handle_rts=False):
|
||||
while True:
|
||||
response_data = b''
|
||||
|
||||
# Let's receive common RPC header and no more
|
||||
#
|
||||
# C706
|
||||
# 12.4 Common Fields
|
||||
# Header encodings differ between connectionless and connection-oriented PDUs.
|
||||
# However, certain fields use common sets of values with a consistent
|
||||
# interpretation across the two protocols.
|
||||
#
|
||||
# This MUST recv MSRPCHeader._SIZE bytes, and not MSRPCRespHeader._SIZE bytes!
|
||||
#
|
||||
while len(response_data) < MSRPCHeader._SIZE:
|
||||
response_data += self.rpc_out_recv1(MSRPCHeader._SIZE - len(response_data))
|
||||
|
||||
response_header = MSRPCHeader(response_data)
|
||||
|
||||
# frag_len contains the full length of the packet for both
|
||||
# MSRPC and RTS
|
||||
frag_len = response_header['frag_len']
|
||||
|
||||
# Receiving the full pkt and no more
|
||||
while len(response_data) < frag_len:
|
||||
response_data += self.rpc_out_recv1(frag_len - len(response_data))
|
||||
|
||||
# We need to do the Flow Control procedures
|
||||
#
|
||||
# 3.2.1.1.4
|
||||
# This protocol specifies that only RPC PDUs are subject to the flow control abstract data
|
||||
# model. RTS PDUs and the HTTP request and response headers are not subject to flow control.
|
||||
if response_header['type'] != MSRPC_RTS:
|
||||
self.flow_control(frag_len)
|
||||
|
||||
if handle_rts is True and response_header['type'] == MSRPC_RTS:
|
||||
self.handle_out_of_sequence_rts(response_data)
|
||||
else:
|
||||
return response_data
|
||||
|
||||
def recv(self, forceRecv=0, count=0):
|
||||
return self.rpc_out_read_pkt(handle_rts=True)
|
||||
|
||||
def handle_out_of_sequence_rts(self, response_data):
|
||||
packet = RTSHeader(response_data)
|
||||
|
||||
#print("=========== RTS PKT ===========")
|
||||
#print("RAW: %s" % binascii.hexlify(response_data))
|
||||
#packet.dump()
|
||||
#
|
||||
#pduData = packet['pduData']
|
||||
#numberOfCommands = packet['NumberOfCommands']
|
||||
#
|
||||
#server_cmds = []
|
||||
#while numberOfCommands > 0:
|
||||
# numberOfCommands -= 1
|
||||
#
|
||||
# cmd_type = unpack('<L', pduData[:4])[0]
|
||||
# cmd = COMMANDS[cmd_type](pduData)
|
||||
# server_cmds.append(cmd)
|
||||
# pduData = pduData[len(cmd):]
|
||||
#
|
||||
#for cmd in server_cmds:
|
||||
# cmd.dump()
|
||||
#print("=========== / RTS PKT ===========")
|
||||
|
||||
# 2.2.4.49 Ping RTS PDU
|
||||
if packet['Flags'] == RTS_FLAG_PING:
|
||||
# 3.2.1.2.1 PingTimer
|
||||
#
|
||||
# If the SendingChannel is part of a Virtual Connection in the Outbound Proxy or Client roles, the
|
||||
# SendingChannel maintains a PingTimer that on expiration indicates a PING PDU must be sent to the
|
||||
# receiving channel. The PING PDU is sent to the receiving channel when no data has been sent within
|
||||
# half of the value of the KeepAliveInterval.
|
||||
|
||||
# As we do not do long-term connections with no data transfer,
|
||||
# it means something on the server-side is going wrong.
|
||||
self.rts_ping_received = True
|
||||
LOG.error("Ping RTS PDU packet received. Is the RPC Server alive?")
|
||||
|
||||
# Just in case it's a long operation, let's send PING PDU to IN Channel like in xfreerdp
|
||||
# It's better to send more than one PING packet as it only 20 bytes long
|
||||
packet = hPing()
|
||||
self.send(packet)
|
||||
self.send(packet)
|
||||
# 2.2.4.24 OUT_R1/A2 RTS PDU
|
||||
elif packet['Flags'] == RTS_FLAG_RECYCLE_CHANNEL:
|
||||
raise RPCProxyClientException("The server requested recycling of a virtual OUT channel, " \
|
||||
"but this function is not supported!")
|
||||
# Ignore all other messages, most probably flow control acknowledgments
|
||||
else:
|
||||
pass
|
||||
|
||||
def flow_control(self, frag_len):
|
||||
self.__bytesReceived += frag_len
|
||||
self.__receiverAvailableWindow -= frag_len
|
||||
|
||||
if (self.__receiverAvailableWindow < self.__availableWindowAdvertised // 2):
|
||||
self.__receiverAvailableWindow = self.__availableWindowAdvertised
|
||||
packet = hFlowControlAckWithDestination(FDOutProxy, self.__bytesReceived,
|
||||
self.__availableWindowAdvertised, self.__outChannelCookie)
|
||||
self.send(packet)
|
||||
|
||||
def connect(self):
|
||||
self.create_rpc_in_channel()
|
||||
self.create_rpc_out_channel()
|
||||
self.create_tunnel()
|
||||
|
||||
def disconnect(self):
|
||||
self.close_rpc_in_channel()
|
||||
self.close_rpc_out_channel()
|
||||
self.init_state()
|
1687
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/rpcrt.py
Normal file
1687
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/rpcrt.py
Normal file
File diff suppressed because it is too large
Load diff
525
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/rprn.py
Normal file
525
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/rprn.py
Normal file
|
@ -0,0 +1,525 @@
|
|||
# SECUREAUTH LABS. Copyright 2018 SecureAuth Corporation. All rights reserved.
|
||||
#
|
||||
# This software is provided under under a slightly modified version
|
||||
# of the Apache Software License. See the accompanying LICENSE file
|
||||
# for more information.
|
||||
#
|
||||
# Author: Alberto Solino (@agsolino)
|
||||
#
|
||||
# Description:
|
||||
# [MS-RPRN] Interface implementation
|
||||
#
|
||||
# Best way to learn how to use these calls is to grab the protocol standard
|
||||
# so you understand what the call does, and then read the test case located
|
||||
# at https://github.com/SecureAuthCorp/impacket/tree/master/tests/SMB_RPC
|
||||
#
|
||||
# Some calls have helper functions, which makes it even easier to use.
|
||||
# They are located at the end of this file.
|
||||
# Helper functions start with "h"<name of the call>.
|
||||
# There are test cases for them too.
|
||||
#
|
||||
from impacket import system_errors
|
||||
from impacket.dcerpc.v5.dtypes import ULONGLONG, UINT, USHORT, LPWSTR, DWORD, ULONG, NULL
|
||||
from impacket.dcerpc.v5.ndr import NDRCALL, NDRSTRUCT, NDRUNION, NDRPOINTER, NDRUniConformantArray
|
||||
from impacket.dcerpc.v5.rpcrt import DCERPCException
|
||||
from impacket.uuid import uuidtup_to_bin
|
||||
|
||||
MSRPC_UUID_RPRN = uuidtup_to_bin(('12345678-1234-ABCD-EF00-0123456789AB', '1.0'))
|
||||
|
||||
class DCERPCSessionError(DCERPCException):
|
||||
def __init__(self, error_string=None, error_code=None, packet=None):
|
||||
DCERPCException.__init__(self, error_string, error_code, packet)
|
||||
|
||||
def __str__( self ):
|
||||
key = self.error_code
|
||||
if key in system_errors.ERROR_MESSAGES:
|
||||
error_msg_short = system_errors.ERROR_MESSAGES[key][0]
|
||||
error_msg_verbose = system_errors.ERROR_MESSAGES[key][1]
|
||||
return 'RPRN SessionError: code: 0x%x - %s - %s' % (self.error_code, error_msg_short, error_msg_verbose)
|
||||
else:
|
||||
return 'RPRN SessionError: unknown error code: 0x%x' % self.error_code
|
||||
|
||||
################################################################################
|
||||
# CONSTANTS
|
||||
################################################################################
|
||||
# 2.2.1.1.7 STRING_HANDLE
|
||||
STRING_HANDLE = LPWSTR
|
||||
class PSTRING_HANDLE(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', STRING_HANDLE),
|
||||
)
|
||||
|
||||
# 2.2.3.1 Access Values
|
||||
JOB_ACCESS_ADMINISTER = 0x00000010
|
||||
JOB_ACCESS_READ = 0x00000020
|
||||
JOB_EXECUTE = 0x00020010
|
||||
JOB_READ = 0x00020020
|
||||
JOB_WRITE = 0x00020010
|
||||
JOB_ALL_ACCESS = 0x000F0030
|
||||
PRINTER_ACCESS_ADMINISTER = 0x00000004
|
||||
PRINTER_ACCESS_USE = 0x00000008
|
||||
PRINTER_ACCESS_MANAGE_LIMITED = 0x00000040
|
||||
PRINTER_ALL_ACCESS = 0x000F000C
|
||||
PRINTER_EXECUTE = 0x00020008
|
||||
PRINTER_READ = 0x00020008
|
||||
PRINTER_WRITE = 0x00020008
|
||||
SERVER_ACCESS_ADMINISTER = 0x00000001
|
||||
SERVER_ACCESS_ENUMERATE = 0x00000002
|
||||
SERVER_ALL_ACCESS = 0x000F0003
|
||||
SERVER_EXECUTE = 0x00020002
|
||||
SERVER_READ = 0x00020002
|
||||
SERVER_WRITE = 0x00020003
|
||||
SPECIFIC_RIGHTS_ALL = 0x0000FFFF
|
||||
STANDARD_RIGHTS_ALL = 0x001F0000
|
||||
STANDARD_RIGHTS_EXECUTE = 0x00020000
|
||||
STANDARD_RIGHTS_READ = 0x00020000
|
||||
STANDARD_RIGHTS_REQUIRED = 0x000F0000
|
||||
STANDARD_RIGHTS_WRITE = 0x00020000
|
||||
SYNCHRONIZE = 0x00100000
|
||||
DELETE = 0x00010000
|
||||
READ_CONTROL = 0x00020000
|
||||
WRITE_DAC = 0x00040000
|
||||
WRITE_OWNER = 0x00080000
|
||||
GENERIC_READ = 0x80000000
|
||||
GENERIC_WRITE = 0x40000000
|
||||
GENERIC_EXECUTE = 0x20000000
|
||||
GENERIC_ALL = 0x10000000
|
||||
|
||||
# 2.2.3.6.1 Printer Change Flags for Use with a Printer Handle
|
||||
PRINTER_CHANGE_SET_PRINTER = 0x00000002
|
||||
PRINTER_CHANGE_DELETE_PRINTER = 0x00000004
|
||||
PRINTER_CHANGE_PRINTER = 0x000000FF
|
||||
PRINTER_CHANGE_ADD_JOB = 0x00000100
|
||||
PRINTER_CHANGE_SET_JOB = 0x00000200
|
||||
PRINTER_CHANGE_DELETE_JOB = 0x00000400
|
||||
PRINTER_CHANGE_WRITE_JOB = 0x00000800
|
||||
PRINTER_CHANGE_JOB = 0x0000FF00
|
||||
PRINTER_CHANGE_SET_PRINTER_DRIVER = 0x20000000
|
||||
PRINTER_CHANGE_TIMEOUT = 0x80000000
|
||||
PRINTER_CHANGE_ALL = 0x7777FFFF
|
||||
PRINTER_CHANGE_ALL_2 = 0x7F77FFFF
|
||||
|
||||
# 2.2.3.6.2 Printer Change Flags for Use with a Server Handle
|
||||
PRINTER_CHANGE_ADD_PRINTER_DRIVER = 0x10000000
|
||||
PRINTER_CHANGE_DELETE_PRINTER_DRIVER = 0x40000000
|
||||
PRINTER_CHANGE_PRINTER_DRIVER = 0x70000000
|
||||
PRINTER_CHANGE_ADD_FORM = 0x00010000
|
||||
PRINTER_CHANGE_DELETE_FORM = 0x00040000
|
||||
PRINTER_CHANGE_SET_FORM = 0x00020000
|
||||
PRINTER_CHANGE_FORM = 0x00070000
|
||||
PRINTER_CHANGE_ADD_PORT = 0x00100000
|
||||
PRINTER_CHANGE_CONFIGURE_PORT = 0x00200000
|
||||
PRINTER_CHANGE_DELETE_PORT = 0x00400000
|
||||
PRINTER_CHANGE_PORT = 0x00700000
|
||||
PRINTER_CHANGE_ADD_PRINT_PROCESSOR = 0x01000000
|
||||
PRINTER_CHANGE_DELETE_PRINT_PROCESSOR = 0x04000000
|
||||
PRINTER_CHANGE_PRINT_PROCESSOR = 0x07000000
|
||||
PRINTER_CHANGE_ADD_PRINTER = 0x00000001
|
||||
PRINTER_CHANGE_FAILED_CONNECTION_PRINTER = 0x00000008
|
||||
PRINTER_CHANGE_SERVER = 0x08000000
|
||||
|
||||
# 2.2.3.7 Printer Enumeration Flags
|
||||
PRINTER_ENUM_LOCAL = 0x00000002
|
||||
PRINTER_ENUM_CONNECTIONS = 0x00000004
|
||||
PRINTER_ENUM_NAME = 0x00000008
|
||||
PRINTER_ENUM_REMOTE = 0x00000010
|
||||
PRINTER_ENUM_SHARED = 0x00000020
|
||||
PRINTER_ENUM_NETWORK = 0x00000040
|
||||
PRINTER_ENUM_EXPAND = 0x00004000
|
||||
PRINTER_ENUM_CONTAINER = 0x00008000
|
||||
PRINTER_ENUM_ICON1 = 0x00010000
|
||||
PRINTER_ENUM_ICON2 = 0x00020000
|
||||
PRINTER_ENUM_ICON3 = 0x00040000
|
||||
PRINTER_ENUM_ICON8 = 0x00800000
|
||||
PRINTER_ENUM_HIDE = 0x01000000
|
||||
|
||||
|
||||
# 2.2.3.8 Printer Notification Values
|
||||
PRINTER_NOTIFY_CATEGORY_2D = 0x00000000
|
||||
PRINTER_NOTIFY_CATEGORY_ALL = 0x00010000
|
||||
PRINTER_NOTIFY_CATEGORY_3D = 0x00020000
|
||||
|
||||
|
||||
################################################################################
|
||||
# STRUCTURES
|
||||
################################################################################
|
||||
# 2.2.1.1.4 PRINTER_HANDLE
|
||||
class PRINTER_HANDLE(NDRSTRUCT):
|
||||
structure = (
|
||||
('Data','20s=b""'),
|
||||
)
|
||||
def getAlignment(self):
|
||||
if self._isNDR64 is True:
|
||||
return 8
|
||||
else:
|
||||
return 4
|
||||
|
||||
# 2.2.1.2.1 DEVMODE_CONTAINER
|
||||
class BYTE_ARRAY(NDRUniConformantArray):
|
||||
item = 'c'
|
||||
|
||||
class PBYTE_ARRAY(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', BYTE_ARRAY),
|
||||
)
|
||||
|
||||
class DEVMODE_CONTAINER(NDRSTRUCT):
|
||||
structure = (
|
||||
('cbBuf',DWORD),
|
||||
('pDevMode',PBYTE_ARRAY),
|
||||
)
|
||||
|
||||
# 2.2.1.11.1 SPLCLIENT_INFO_1
|
||||
class SPLCLIENT_INFO_1(NDRSTRUCT):
|
||||
structure = (
|
||||
('dwSize',DWORD),
|
||||
('pMachineName',LPWSTR),
|
||||
('pUserName',LPWSTR),
|
||||
('dwBuildNum',DWORD),
|
||||
('dwMajorVersion',DWORD),
|
||||
('dwMinorVersion',DWORD),
|
||||
('wProcessorArchitecture',USHORT),
|
||||
)
|
||||
|
||||
class PSPLCLIENT_INFO_1(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', SPLCLIENT_INFO_1),
|
||||
)
|
||||
|
||||
# 2.2.1.11.2 SPLCLIENT_INFO_2
|
||||
class SPLCLIENT_INFO_2(NDRSTRUCT):
|
||||
structure = (
|
||||
('notUsed',ULONGLONG),
|
||||
)
|
||||
|
||||
class PSPLCLIENT_INFO_2(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', SPLCLIENT_INFO_2),
|
||||
)
|
||||
# 2.2.1.11.3 SPLCLIENT_INFO_3
|
||||
class SPLCLIENT_INFO_3(NDRSTRUCT):
|
||||
structure = (
|
||||
('cbSize',UINT),
|
||||
('dwFlags',DWORD),
|
||||
('dwFlags',DWORD),
|
||||
('pMachineName',LPWSTR),
|
||||
('pUserName',LPWSTR),
|
||||
('dwBuildNum',DWORD),
|
||||
('dwMajorVersion',DWORD),
|
||||
('dwMinorVersion',DWORD),
|
||||
('wProcessorArchitecture',USHORT),
|
||||
('hSplPrinter',ULONGLONG),
|
||||
)
|
||||
|
||||
class PSPLCLIENT_INFO_3(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', SPLCLIENT_INFO_3),
|
||||
)
|
||||
# 2.2.1.2.14 SPLCLIENT_CONTAINER
|
||||
class CLIENT_INFO_UNION(NDRUNION):
|
||||
commonHdr = (
|
||||
('tag', ULONG),
|
||||
)
|
||||
union = {
|
||||
1 : ('pClientInfo1', PSPLCLIENT_INFO_1),
|
||||
2 : ('pNotUsed1', PSPLCLIENT_INFO_2),
|
||||
3 : ('pNotUsed2', PSPLCLIENT_INFO_3),
|
||||
}
|
||||
|
||||
class SPLCLIENT_CONTAINER(NDRSTRUCT):
|
||||
structure = (
|
||||
('Level',DWORD),
|
||||
('ClientInfo',CLIENT_INFO_UNION),
|
||||
)
|
||||
|
||||
|
||||
# 2.2.1.13.2 RPC_V2_NOTIFY_OPTIONS_TYPE
|
||||
class USHORT_ARRAY(NDRUniConformantArray):
|
||||
item = '<H'
|
||||
|
||||
class PUSHORT_ARRAY(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', USHORT_ARRAY),
|
||||
)
|
||||
|
||||
class RPC_V2_NOTIFY_OPTIONS_TYPE(NDRSTRUCT):
|
||||
structure = (
|
||||
('Type',USHORT),
|
||||
('Reserved0',USHORT),
|
||||
('Reserved1',DWORD),
|
||||
('Reserved2',DWORD),
|
||||
('Count',DWORD),
|
||||
('pFields',PUSHORT_ARRAY),
|
||||
)
|
||||
|
||||
class PRPC_V2_NOTIFY_OPTIONS_TYPE_ARRAY(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', RPC_V2_NOTIFY_OPTIONS_TYPE),
|
||||
)
|
||||
|
||||
# 2.2.1.13.1 RPC_V2_NOTIFY_OPTIONS
|
||||
class RPC_V2_NOTIFY_OPTIONS(NDRSTRUCT):
|
||||
structure = (
|
||||
('Version',DWORD),
|
||||
('Reserved',DWORD),
|
||||
('Count',DWORD),
|
||||
('pTypes',PRPC_V2_NOTIFY_OPTIONS_TYPE_ARRAY),
|
||||
)
|
||||
|
||||
class PRPC_V2_NOTIFY_OPTIONS(NDRPOINTER):
|
||||
referent = (
|
||||
('Data', RPC_V2_NOTIFY_OPTIONS),
|
||||
)
|
||||
|
||||
|
||||
################################################################################
|
||||
# RPC CALLS
|
||||
################################################################################
|
||||
# 3.1.4.2.1 RpcEnumPrinters (Opnum 0)
|
||||
class RpcEnumPrinters(NDRCALL):
|
||||
opnum = 0
|
||||
structure = (
|
||||
('Flags', DWORD),
|
||||
('Name', STRING_HANDLE),
|
||||
('Level', DWORD),
|
||||
('pPrinterEnum', PBYTE_ARRAY),
|
||||
('cbBuf', DWORD),
|
||||
)
|
||||
|
||||
class RpcEnumPrintersResponse(NDRCALL):
|
||||
structure = (
|
||||
('pPrinterEnum', PBYTE_ARRAY),
|
||||
('pcbNeeded', DWORD),
|
||||
('pcReturned', DWORD),
|
||||
('ErrorCode', ULONG),
|
||||
)
|
||||
# 3.1.4.2.2 RpcOpenPrinter (Opnum 1)
|
||||
class RpcOpenPrinter(NDRCALL):
|
||||
opnum = 1
|
||||
structure = (
|
||||
('pPrinterName', STRING_HANDLE),
|
||||
('pDatatype', LPWSTR),
|
||||
('pDevModeContainer', DEVMODE_CONTAINER),
|
||||
('AccessRequired', DWORD),
|
||||
)
|
||||
|
||||
class RpcOpenPrinterResponse(NDRCALL):
|
||||
structure = (
|
||||
('pHandle', PRINTER_HANDLE),
|
||||
('ErrorCode', ULONG),
|
||||
)
|
||||
|
||||
# 3.1.4.2.9 RpcClosePrinter (Opnum 29)
|
||||
class RpcClosePrinter(NDRCALL):
|
||||
opnum = 29
|
||||
structure = (
|
||||
('phPrinter', PRINTER_HANDLE),
|
||||
)
|
||||
|
||||
class RpcClosePrinterResponse(NDRCALL):
|
||||
structure = (
|
||||
('phPrinter', PRINTER_HANDLE),
|
||||
('ErrorCode', ULONG),
|
||||
)
|
||||
|
||||
# 3.1.4.10.4 RpcRemoteFindFirstPrinterChangeNotificationEx (Opnum 65)
|
||||
class RpcRemoteFindFirstPrinterChangeNotificationEx(NDRCALL):
|
||||
opnum = 65
|
||||
structure = (
|
||||
('hPrinter', PRINTER_HANDLE),
|
||||
('fdwFlags', DWORD),
|
||||
('fdwOptions', DWORD),
|
||||
('pszLocalMachine', LPWSTR),
|
||||
('dwPrinterLocal', DWORD),
|
||||
('pOptions', PRPC_V2_NOTIFY_OPTIONS),
|
||||
)
|
||||
|
||||
class RpcRemoteFindFirstPrinterChangeNotificationExResponse(NDRCALL):
|
||||
structure = (
|
||||
('ErrorCode', ULONG),
|
||||
)
|
||||
|
||||
# 3.1.4.2.14 RpcOpenPrinterEx (Opnum 69)
|
||||
class RpcOpenPrinterEx(NDRCALL):
|
||||
opnum = 69
|
||||
structure = (
|
||||
('pPrinterName', STRING_HANDLE),
|
||||
('pDatatype', LPWSTR),
|
||||
('pDevModeContainer', DEVMODE_CONTAINER),
|
||||
('AccessRequired', DWORD),
|
||||
('pClientInfo', SPLCLIENT_CONTAINER),
|
||||
)
|
||||
|
||||
class RpcOpenPrinterExResponse(NDRCALL):
|
||||
structure = (
|
||||
('pHandle', PRINTER_HANDLE),
|
||||
('ErrorCode', ULONG),
|
||||
)
|
||||
|
||||
################################################################################
|
||||
# OPNUMs and their corresponding structures
|
||||
################################################################################
|
||||
OPNUMS = {
|
||||
0 : (RpcEnumPrinters, RpcEnumPrintersResponse),
|
||||
1 : (RpcOpenPrinter, RpcOpenPrinterResponse),
|
||||
29 : (RpcClosePrinter, RpcClosePrinterResponse),
|
||||
65 : (RpcRemoteFindFirstPrinterChangeNotificationEx, RpcRemoteFindFirstPrinterChangeNotificationExResponse),
|
||||
69 : (RpcOpenPrinterEx, RpcOpenPrinterExResponse),
|
||||
}
|
||||
|
||||
################################################################################
|
||||
# HELPER FUNCTIONS
|
||||
################################################################################
|
||||
def checkNullString(string):
|
||||
if string == NULL:
|
||||
return string
|
||||
|
||||
if string[-1:] != '\x00':
|
||||
return string + '\x00'
|
||||
else:
|
||||
return string
|
||||
|
||||
def hRpcOpenPrinter(dce, printerName, pDatatype = NULL, pDevModeContainer = NULL, accessRequired = SERVER_READ):
|
||||
"""
|
||||
RpcOpenPrinter retrieves a handle for a printer, port, port monitor, print job, or print server.
|
||||
Full Documentation: https://msdn.microsoft.com/en-us/library/cc244808.aspx
|
||||
|
||||
:param DCERPC_v5 dce: a connected DCE instance.
|
||||
:param string printerName: A string for a printer connection, printer object, server object, job object, port
|
||||
object, or port monitor object. This MUST be a Domain Name System (DNS), NetBIOS, Internet Protocol version 4
|
||||
(IPv4), Internet Protocol version 6 (IPv6), or Universal Naming Convention (UNC) name that remote procedure
|
||||
call (RPC) binds to, and it MUST uniquely identify a print server on the network.
|
||||
:param string pDatatype: A string that specifies the data type to be associated with the printer handle.
|
||||
:param DEVMODE_CONTAINER pDevModeContainer: A DEVMODE_CONTAINER structure. This parameter MUST adhere to the specification in
|
||||
DEVMODE_CONTAINER Parameters (section 3.1.4.1.8.1).
|
||||
:param int accessRequired: The access level that the client requires for interacting with the object to which a
|
||||
handle is being opened.
|
||||
|
||||
:return: a RpcOpenPrinterResponse instance, raises DCERPCSessionError on error.
|
||||
"""
|
||||
request = RpcOpenPrinter()
|
||||
request['pPrinterName'] = checkNullString(printerName)
|
||||
request['pDatatype'] = pDatatype
|
||||
if pDevModeContainer is NULL:
|
||||
request['pDevModeContainer']['pDevMode'] = NULL
|
||||
else:
|
||||
request['pDevModeContainer'] = pDevModeContainer
|
||||
|
||||
request['AccessRequired'] = accessRequired
|
||||
return dce.request(request)
|
||||
|
||||
def hRpcClosePrinter(dce, phPrinter):
|
||||
"""
|
||||
RpcClosePrinter closes a handle to a printer object, server object, job object, or port object.
|
||||
Full Documentation: https://msdn.microsoft.com/en-us/library/cc244768.aspx
|
||||
|
||||
:param DCERPC_v5 dce: a connected DCE instance.
|
||||
:param PRINTER_HANDLE phPrinter: A handle to a printer object, server object, job object, or port object.
|
||||
|
||||
:return: a RpcClosePrinterResponse instance, raises DCERPCSessionError on error.
|
||||
"""
|
||||
request = RpcClosePrinter()
|
||||
request['phPrinter'] = phPrinter
|
||||
return dce.request(request)
|
||||
|
||||
|
||||
def hRpcOpenPrinterEx(dce, printerName, pDatatype=NULL, pDevModeContainer=NULL, accessRequired=SERVER_READ,
|
||||
pClientInfo=NULL):
|
||||
"""
|
||||
RpcOpenPrinterEx retrieves a handle for a printer, port, port monitor, print job, or print server
|
||||
Full Documentation: https://msdn.microsoft.com/en-us/library/cc244809.aspx
|
||||
|
||||
:param DCERPC_v5 dce: a connected DCE instance.
|
||||
:param string printerName: A string for a printer connection, printer object, server object, job object, port
|
||||
object, or port monitor object. This MUST be a Domain Name System (DNS), NetBIOS, Internet Protocol version 4
|
||||
(IPv4), Internet Protocol version 6 (IPv6), or Universal Naming Convention (UNC) name that remote procedure
|
||||
call (RPC) binds to, and it MUST uniquely identify a print server on the network.
|
||||
:param string pDatatype: A string that specifies the data type to be associated with the printer handle.
|
||||
:param DEVMODE_CONTAINER pDevModeContainer: A DEVMODE_CONTAINER structure. This parameter MUST adhere to the specification in
|
||||
DEVMODE_CONTAINER Parameters (section 3.1.4.1.8.1).
|
||||
:param int accessRequired: The access level that the client requires for interacting with the object to which a
|
||||
handle is being opened.
|
||||
:param SPLCLIENT_CONTAINER pClientInfo: This parameter MUST adhere to the specification in SPLCLIENT_CONTAINER Parameters.
|
||||
|
||||
:return: a RpcOpenPrinterExResponse instance, raises DCERPCSessionError on error.
|
||||
"""
|
||||
request = RpcOpenPrinterEx()
|
||||
request['pPrinterName'] = checkNullString(printerName)
|
||||
request['pDatatype'] = pDatatype
|
||||
if pDevModeContainer is NULL:
|
||||
request['pDevModeContainer']['pDevMode'] = NULL
|
||||
else:
|
||||
request['pDevModeContainer'] = pDevModeContainer
|
||||
|
||||
request['AccessRequired'] = accessRequired
|
||||
if pClientInfo is NULL:
|
||||
raise Exception('pClientInfo cannot be NULL')
|
||||
|
||||
request['pClientInfo'] = pClientInfo
|
||||
return dce.request(request)
|
||||
|
||||
|
||||
def hRpcRemoteFindFirstPrinterChangeNotificationEx(dce, hPrinter, fdwFlags, fdwOptions=0, pszLocalMachine=NULL,
|
||||
dwPrinterLocal=0, pOptions=NULL):
|
||||
"""
|
||||
creates a remote change notification object that monitors changes to printer objects and sends change notifications
|
||||
to a print client using either RpcRouterReplyPrinter (section 3.2.4.1.2) or RpcRouterReplyPrinterEx (section 3.2.4.1.4)
|
||||
Full Documentation: https://msdn.microsoft.com/en-us/library/cc244813.aspx
|
||||
|
||||
:param DCERPC_v5 dce: a connected DCE instance.
|
||||
:param PRINTER_HANDLE hPrinter: A handle to a printer or server object.
|
||||
:param int fdwFlags: Flags that specify the conditions that are required for a change notification object to enter a signaled state.
|
||||
:param int fdwOptions: The category of printers for which change notifications are returned.
|
||||
:param string pszLocalMachine: A string that represents the name of the client computer.
|
||||
:param int dwPrinterLocal: An implementation-specific unique value that MUST be sufficient for the client to determine
|
||||
whether a call to RpcReplyOpenPrinter by the server is associated with the hPrinter parameter in this call.
|
||||
:param RPC_V2_NOTIFY_OPTIONS pOptions: An RPC_V2_NOTIFY_OPTIONS structure that specifies printer or job members that the client listens to for notifications.
|
||||
|
||||
:return: a RpcRemoteFindFirstPrinterChangeNotificationExResponse instance, raises DCERPCSessionError on error.
|
||||
"""
|
||||
request = RpcRemoteFindFirstPrinterChangeNotificationEx()
|
||||
|
||||
request['hPrinter'] = hPrinter
|
||||
request['fdwFlags'] = fdwFlags
|
||||
request['fdwOptions'] = fdwOptions
|
||||
request['dwPrinterLocal'] = dwPrinterLocal
|
||||
if pszLocalMachine is NULL:
|
||||
raise Exception('pszLocalMachine cannot be NULL')
|
||||
request['pszLocalMachine'] = checkNullString(pszLocalMachine)
|
||||
request['pOptions'] = pOptions
|
||||
return dce.request(request)
|
||||
|
||||
def hRpcEnumPrinters(dce, flags, name = NULL, level = 1):
|
||||
"""
|
||||
RpcEnumPrinters enumerates available printers, print servers, domains, or print providers.
|
||||
Full Documentation: https://msdn.microsoft.com/en-us/library/cc244794.aspx
|
||||
|
||||
:param DCERPC_v5 dce: a connected DCE instance.
|
||||
:param int flags: The types of print objects that this method enumerates. The value of this parameter is the
|
||||
result of a bitwise OR of one or more of the Printer Enumeration Flags (section 2.2.3.7).
|
||||
:param string name: NULL or a server name parameter as specified in Printer Server Name Parameters (section 3.1.4.1.4).
|
||||
:param level: The level of printer information structure.
|
||||
|
||||
:return: a RpcEnumPrintersResponse instance, raises DCERPCSessionError on error.
|
||||
"""
|
||||
request = RpcEnumPrinters()
|
||||
request['Flags'] = flags
|
||||
request['Name'] = name
|
||||
request['pPrinterEnum'] = NULL
|
||||
request['Level'] = level
|
||||
bytesNeeded = 0
|
||||
try:
|
||||
dce.request(request)
|
||||
except DCERPCSessionError as e:
|
||||
if str(e).find('ERROR_INSUFFICIENT_BUFFER') < 0:
|
||||
raise
|
||||
bytesNeeded = e.get_packet()['pcbNeeded']
|
||||
|
||||
request = RpcEnumPrinters()
|
||||
request['Flags'] = flags
|
||||
request['Name'] = name
|
||||
request['Level'] = level
|
||||
|
||||
request['cbBuf'] = bytesNeeded
|
||||
request['pPrinterEnum'] = b'a' * bytesNeeded
|
||||
return dce.request(request)
|
1006
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/rrp.py
Normal file
1006
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/rrp.py
Normal file
File diff suppressed because it is too large
Load diff
2929
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/samr.py
Normal file
2929
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/samr.py
Normal file
File diff suppressed because it is too large
Load diff
175
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/sasec.py
Normal file
175
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/sasec.py
Normal file
|
@ -0,0 +1,175 @@
|
|||
# SECUREAUTH LABS. Copyright 2018 SecureAuth Corporation. All rights reserved.
|
||||
#
|
||||
# This software is provided under under a slightly modified version
|
||||
# of the Apache Software License. See the accompanying LICENSE file
|
||||
# for more information.
|
||||
#
|
||||
# Author: Alberto Solino (@agsolino)
|
||||
#
|
||||
# Description:
|
||||
# [MS-TSCH] SASec Interface implementation
|
||||
#
|
||||
# Best way to learn how to use these calls is to grab the protocol standard
|
||||
# so you understand what the call does, and then read the test case located
|
||||
# at https://github.com/SecureAuthCorp/impacket/tree/master/tests/SMB_RPC
|
||||
#
|
||||
# Some calls have helper functions, which makes it even easier to use.
|
||||
# They are located at the end of this file.
|
||||
# Helper functions start with "h"<name of the call>.
|
||||
# There are test cases for them too.
|
||||
#
|
||||
from impacket.dcerpc.v5.ndr import NDRCALL, NDRUniConformantArray
|
||||
from impacket.dcerpc.v5.dtypes import DWORD, LPWSTR, ULONG, WSTR, NULL
|
||||
from impacket import hresult_errors
|
||||
from impacket.uuid import uuidtup_to_bin
|
||||
from impacket.dcerpc.v5.rpcrt import DCERPCException
|
||||
|
||||
MSRPC_UUID_SASEC = uuidtup_to_bin(('378E52B0-C0A9-11CF-822D-00AA0051E40F','1.0'))
|
||||
|
||||
class DCERPCSessionError(DCERPCException):
|
||||
def __init__(self, error_string=None, error_code=None, packet=None):
|
||||
DCERPCException.__init__(self, error_string, error_code, packet)
|
||||
|
||||
def __str__( self ):
|
||||
key = self.error_code
|
||||
if key in hresult_errors.ERROR_MESSAGES:
|
||||
error_msg_short = hresult_errors.ERROR_MESSAGES[key][0]
|
||||
error_msg_verbose = hresult_errors.ERROR_MESSAGES[key][1]
|
||||
return 'TSCH SessionError: code: 0x%x - %s - %s' % (self.error_code, error_msg_short, error_msg_verbose)
|
||||
else:
|
||||
return 'TSCH SessionError: unknown error code: 0x%x' % self.error_code
|
||||
|
||||
################################################################################
|
||||
# CONSTANTS
|
||||
################################################################################
|
||||
SASEC_HANDLE = WSTR
|
||||
PSASEC_HANDLE = LPWSTR
|
||||
|
||||
MAX_BUFFER_SIZE = 273
|
||||
|
||||
# 3.2.5.3.4 SASetAccountInformation (Opnum 0)
|
||||
TASK_FLAG_RUN_ONLY_IF_LOGGED_ON = 0x40000
|
||||
|
||||
################################################################################
|
||||
# STRUCTURES
|
||||
################################################################################
|
||||
class WORD_ARRAY(NDRUniConformantArray):
|
||||
item = '<H'
|
||||
|
||||
################################################################################
|
||||
# RPC CALLS
|
||||
################################################################################
|
||||
# 3.2.5.3.4 SASetAccountInformation (Opnum 0)
|
||||
class SASetAccountInformation(NDRCALL):
|
||||
opnum = 0
|
||||
structure = (
|
||||
('Handle', PSASEC_HANDLE),
|
||||
('pwszJobName', WSTR),
|
||||
('pwszAccount', WSTR),
|
||||
('pwszPassword', LPWSTR),
|
||||
('dwJobFlags', DWORD),
|
||||
)
|
||||
|
||||
class SASetAccountInformationResponse(NDRCALL):
|
||||
structure = (
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
# 3.2.5.3.5 SASetNSAccountInformation (Opnum 1)
|
||||
class SASetNSAccountInformation(NDRCALL):
|
||||
opnum = 1
|
||||
structure = (
|
||||
('Handle', PSASEC_HANDLE),
|
||||
('pwszAccount', LPWSTR),
|
||||
('pwszPassword', LPWSTR),
|
||||
)
|
||||
|
||||
class SASetNSAccountInformationResponse(NDRCALL):
|
||||
structure = (
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
# 3.2.5.3.6 SAGetNSAccountInformation (Opnum 2)
|
||||
class SAGetNSAccountInformation(NDRCALL):
|
||||
opnum = 2
|
||||
structure = (
|
||||
('Handle', PSASEC_HANDLE),
|
||||
('ccBufferSize', DWORD),
|
||||
('wszBuffer', WORD_ARRAY),
|
||||
)
|
||||
|
||||
class SAGetNSAccountInformationResponse(NDRCALL):
|
||||
structure = (
|
||||
('wszBuffer',WORD_ARRAY),
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
# 3.2.5.3.7 SAGetAccountInformation (Opnum 3)
|
||||
class SAGetAccountInformation(NDRCALL):
|
||||
opnum = 3
|
||||
structure = (
|
||||
('Handle', PSASEC_HANDLE),
|
||||
('pwszJobName', WSTR),
|
||||
('ccBufferSize', DWORD),
|
||||
('wszBuffer', WORD_ARRAY),
|
||||
)
|
||||
|
||||
class SAGetAccountInformationResponse(NDRCALL):
|
||||
structure = (
|
||||
('wszBuffer',WORD_ARRAY),
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
################################################################################
|
||||
# OPNUMs and their corresponding structures
|
||||
################################################################################
|
||||
OPNUMS = {
|
||||
0 : (SASetAccountInformation, SASetAccountInformationResponse),
|
||||
1 : (SASetNSAccountInformation, SASetNSAccountInformationResponse),
|
||||
2 : (SAGetNSAccountInformation, SAGetNSAccountInformationResponse),
|
||||
3 : (SAGetAccountInformation, SAGetAccountInformationResponse),
|
||||
}
|
||||
|
||||
################################################################################
|
||||
# HELPER FUNCTIONS
|
||||
################################################################################
|
||||
def checkNullString(string):
|
||||
if string == NULL:
|
||||
return string
|
||||
|
||||
if string[-1:] != '\x00':
|
||||
return string + '\x00'
|
||||
else:
|
||||
return string
|
||||
|
||||
def hSASetAccountInformation(dce, handle, pwszJobName, pwszAccount, pwszPassword, dwJobFlags=0):
|
||||
request = SASetAccountInformation()
|
||||
request['Handle'] = handle
|
||||
request['pwszJobName'] = checkNullString(pwszJobName)
|
||||
request['pwszAccount'] = checkNullString(pwszAccount)
|
||||
request['pwszPassword'] = checkNullString(pwszPassword)
|
||||
request['dwJobFlags'] = dwJobFlags
|
||||
return dce.request(request)
|
||||
|
||||
def hSASetNSAccountInformation(dce, handle, pwszAccount, pwszPassword):
|
||||
request = SASetNSAccountInformation()
|
||||
request['Handle'] = handle
|
||||
request['pwszAccount'] = checkNullString(pwszAccount)
|
||||
request['pwszPassword'] = checkNullString(pwszPassword)
|
||||
return dce.request(request)
|
||||
|
||||
def hSAGetNSAccountInformation(dce, handle, ccBufferSize = MAX_BUFFER_SIZE):
|
||||
request = SAGetNSAccountInformation()
|
||||
request['Handle'] = handle
|
||||
request['ccBufferSize'] = ccBufferSize
|
||||
for _ in range(ccBufferSize):
|
||||
request['wszBuffer'].append(0)
|
||||
return dce.request(request)
|
||||
|
||||
def hSAGetAccountInformation(dce, handle, pwszJobName, ccBufferSize = MAX_BUFFER_SIZE):
|
||||
request = SAGetAccountInformation()
|
||||
request['Handle'] = handle
|
||||
request['pwszJobName'] = checkNullString(pwszJobName)
|
||||
request['ccBufferSize'] = ccBufferSize
|
||||
for _ in range(ccBufferSize):
|
||||
request['wszBuffer'].append(0)
|
||||
return dce.request(request)
|
1398
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/scmr.py
Normal file
1398
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/scmr.py
Normal file
File diff suppressed because it is too large
Load diff
3296
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/srvs.py
Normal file
3296
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/srvs.py
Normal file
File diff suppressed because it is too large
Load diff
592
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/transport.py
Normal file
592
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/transport.py
Normal file
|
@ -0,0 +1,592 @@
|
|||
# SECUREAUTH LABS. Copyright 2018 SecureAuth Corporation. All rights reserved.
|
||||
#
|
||||
# This software is provided under under a slightly modified version
|
||||
# of the Apache Software License. See the accompanying LICENSE file
|
||||
# for more information.
|
||||
#
|
||||
# Author: Alberto Solino (@agsolino)
|
||||
#
|
||||
# Description:
|
||||
# Transport implementations for the DCE/RPC protocol.
|
||||
#
|
||||
from __future__ import division
|
||||
from __future__ import print_function
|
||||
|
||||
import binascii
|
||||
import os
|
||||
import re
|
||||
import socket
|
||||
|
||||
try:
|
||||
from urllib.parse import urlparse, urlunparse
|
||||
except ImportError:
|
||||
from urlparse import urlparse, urlunparse
|
||||
|
||||
from impacket import ntlm
|
||||
from impacket.dcerpc.v5.rpcrt import DCERPCException, DCERPC_v5, DCERPC_v4
|
||||
from impacket.dcerpc.v5.rpch import RPCProxyClient, RPCProxyClientException, RPC_OVER_HTTP_v1, RPC_OVER_HTTP_v2
|
||||
from impacket.smbconnection import SMBConnection
|
||||
|
||||
class DCERPCStringBinding:
|
||||
parser = re.compile(r'(?:([a-fA-F0-9-]{8}(?:-[a-fA-F0-9-]{4}){3}-[a-fA-F0-9-]{12})@)?' # UUID (opt.)
|
||||
+'([_a-zA-Z0-9]*):' # Protocol Sequence
|
||||
+'([^\[]*)' # Network Address (opt.)
|
||||
+'(?:\[([^\]]*)\])?') # Endpoint and options (opt.)
|
||||
|
||||
def __init__(self, stringbinding):
|
||||
match = DCERPCStringBinding.parser.match(stringbinding)
|
||||
self.__uuid = match.group(1)
|
||||
self.__ps = match.group(2)
|
||||
self.__na = match.group(3)
|
||||
options = match.group(4)
|
||||
if options:
|
||||
options = options.split(',')
|
||||
|
||||
self.__endpoint = options[0]
|
||||
try:
|
||||
self.__endpoint.index('endpoint=')
|
||||
self.__endpoint = self.__endpoint[len('endpoint='):]
|
||||
except:
|
||||
pass
|
||||
|
||||
self.__options = {}
|
||||
for option in options[1:]:
|
||||
vv = option.split('=', 1)
|
||||
self.__options[vv[0]] = vv[1] if len(vv) > 1 else ''
|
||||
else:
|
||||
self.__endpoint = ''
|
||||
self.__options = {}
|
||||
|
||||
def get_uuid(self):
|
||||
return self.__uuid
|
||||
|
||||
def get_protocol_sequence(self):
|
||||
return self.__ps
|
||||
|
||||
def get_network_address(self):
|
||||
return self.__na
|
||||
|
||||
def set_network_address(self, addr):
|
||||
self.__na = addr
|
||||
|
||||
def get_endpoint(self):
|
||||
return self.__endpoint
|
||||
|
||||
def get_options(self):
|
||||
return self.__options
|
||||
|
||||
def get_option(self, option_name):
|
||||
return self.__options[option_name]
|
||||
|
||||
def is_option_set(self, option_name):
|
||||
return option_name in self.__options
|
||||
|
||||
def unset_option(self, option_name):
|
||||
del self.__options[option_name]
|
||||
|
||||
def __str__(self):
|
||||
return DCERPCStringBindingCompose(self.__uuid, self.__ps, self.__na, self.__endpoint, self.__options)
|
||||
|
||||
def DCERPCStringBindingCompose(uuid=None, protocol_sequence='', network_address='', endpoint='', options={}):
|
||||
s = ''
|
||||
if uuid:
|
||||
s += uuid + '@'
|
||||
s += protocol_sequence + ':'
|
||||
if network_address:
|
||||
s += network_address
|
||||
if endpoint or options:
|
||||
s += '[' + endpoint
|
||||
if options:
|
||||
s += ',' + ','.join([key if str(val) == '' else "=".join([key, str(val)]) for key, val in options.items()])
|
||||
s += ']'
|
||||
|
||||
return s
|
||||
|
||||
def DCERPCTransportFactory(stringbinding):
|
||||
sb = DCERPCStringBinding(stringbinding)
|
||||
|
||||
na = sb.get_network_address()
|
||||
ps = sb.get_protocol_sequence()
|
||||
if 'ncadg_ip_udp' == ps:
|
||||
port = sb.get_endpoint()
|
||||
if port:
|
||||
rpctransport = UDPTransport(na, int(port))
|
||||
else:
|
||||
rpctransport = UDPTransport(na)
|
||||
elif 'ncacn_ip_tcp' == ps:
|
||||
port = sb.get_endpoint()
|
||||
if port:
|
||||
rpctransport = TCPTransport(na, int(port))
|
||||
else:
|
||||
rpctransport = TCPTransport(na)
|
||||
elif 'ncacn_http' == ps:
|
||||
port = sb.get_endpoint()
|
||||
if port:
|
||||
rpctransport = HTTPTransport(na, int(port))
|
||||
else:
|
||||
rpctransport = HTTPTransport(na)
|
||||
elif 'ncacn_np' == ps:
|
||||
named_pipe = sb.get_endpoint()
|
||||
if named_pipe:
|
||||
named_pipe = named_pipe[len(r'\pipe'):]
|
||||
rpctransport = SMBTransport(na, filename = named_pipe)
|
||||
else:
|
||||
rpctransport = SMBTransport(na)
|
||||
elif 'ncalocal' == ps:
|
||||
named_pipe = sb.get_endpoint()
|
||||
rpctransport = LOCALTransport(filename = named_pipe)
|
||||
else:
|
||||
raise DCERPCException("Unknown protocol sequence.")
|
||||
|
||||
rpctransport.set_stringbinding(sb)
|
||||
return rpctransport
|
||||
|
||||
class DCERPCTransport:
|
||||
|
||||
DCERPC_class = DCERPC_v5
|
||||
|
||||
def __init__(self, remoteName, dstport):
|
||||
self.__remoteName = remoteName
|
||||
self.__remoteHost = remoteName
|
||||
self.__dstport = dstport
|
||||
self._stringbinding = None
|
||||
self._max_send_frag = None
|
||||
self._max_recv_frag = None
|
||||
self._domain = ''
|
||||
self._lmhash = ''
|
||||
self._nthash = ''
|
||||
self.__connect_timeout = None
|
||||
self._doKerberos = False
|
||||
self._username = ''
|
||||
self._password = ''
|
||||
self._domain = ''
|
||||
self._aesKey = None
|
||||
self._TGT = None
|
||||
self._TGS = None
|
||||
self._kdcHost = None
|
||||
self.set_credentials('','')
|
||||
# Strict host validation - off by default and currently only for
|
||||
# SMBTransport
|
||||
self._strict_hostname_validation = False
|
||||
self._validation_allow_absent = True
|
||||
self._accepted_hostname = ''
|
||||
|
||||
def connect(self):
|
||||
raise RuntimeError('virtual function')
|
||||
def send(self,data=0, forceWriteAndx = 0, forceRecv = 0):
|
||||
raise RuntimeError('virtual function')
|
||||
def recv(self, forceRecv = 0, count = 0):
|
||||
raise RuntimeError('virtual function')
|
||||
def disconnect(self):
|
||||
raise RuntimeError('virtual function')
|
||||
def get_socket(self):
|
||||
raise RuntimeError('virtual function')
|
||||
|
||||
def get_connect_timeout(self):
|
||||
return self.__connect_timeout
|
||||
def set_connect_timeout(self, timeout):
|
||||
self.__connect_timeout = timeout
|
||||
|
||||
def getRemoteName(self):
|
||||
return self.__remoteName
|
||||
|
||||
def setRemoteName(self, remoteName):
|
||||
"""This method only makes sense before connection for most protocols."""
|
||||
self.__remoteName = remoteName
|
||||
|
||||
def getRemoteHost(self):
|
||||
return self.__remoteHost
|
||||
|
||||
def setRemoteHost(self, remoteHost):
|
||||
"""This method only makes sense before connection for most protocols."""
|
||||
self.__remoteHost = remoteHost
|
||||
|
||||
def get_dport(self):
|
||||
return self.__dstport
|
||||
def set_dport(self, dport):
|
||||
"""This method only makes sense before connection for most protocols."""
|
||||
self.__dstport = dport
|
||||
|
||||
def get_stringbinding(self):
|
||||
return self._stringbinding
|
||||
|
||||
def set_stringbinding(self, stringbinding):
|
||||
self._stringbinding = stringbinding
|
||||
|
||||
def get_addr(self):
|
||||
return self.getRemoteHost(), self.get_dport()
|
||||
def set_addr(self, addr):
|
||||
"""This method only makes sense before connection for most protocols."""
|
||||
self.setRemoteHost(addr[0])
|
||||
self.set_dport(addr[1])
|
||||
|
||||
def set_kerberos(self, flag, kdcHost = None):
|
||||
self._doKerberos = flag
|
||||
self._kdcHost = kdcHost
|
||||
|
||||
def get_kerberos(self):
|
||||
return self._doKerberos
|
||||
|
||||
def get_kdcHost(self):
|
||||
return self._kdcHost
|
||||
|
||||
def set_max_fragment_size(self, send_fragment_size):
|
||||
# -1 is default fragment size: 0 (don't fragment)
|
||||
# 0 is don't fragment
|
||||
# other values are max fragment size
|
||||
if send_fragment_size == -1:
|
||||
self.set_default_max_fragment_size()
|
||||
else:
|
||||
self._max_send_frag = send_fragment_size
|
||||
|
||||
def set_hostname_validation(self, validate, accept_empty, hostname):
|
||||
self._strict_hostname_validation = validate
|
||||
self._validation_allow_absent = accept_empty
|
||||
self._accepted_hostname = hostname
|
||||
|
||||
def set_default_max_fragment_size(self):
|
||||
# default is 0: don't fragment.
|
||||
# subclasses may override this method
|
||||
self._max_send_frag = 0
|
||||
|
||||
def get_credentials(self):
|
||||
return (
|
||||
self._username,
|
||||
self._password,
|
||||
self._domain,
|
||||
self._lmhash,
|
||||
self._nthash,
|
||||
self._aesKey,
|
||||
self._TGT,
|
||||
self._TGS)
|
||||
|
||||
def set_credentials(self, username, password, domain='', lmhash='', nthash='', aesKey='', TGT=None, TGS=None):
|
||||
self._username = username
|
||||
self._password = password
|
||||
self._domain = domain
|
||||
self._aesKey = aesKey
|
||||
self._TGT = TGT
|
||||
self._TGS = TGS
|
||||
if lmhash != '' or nthash != '':
|
||||
if len(lmhash) % 2:
|
||||
lmhash = '0%s' % lmhash
|
||||
if len(nthash) % 2:
|
||||
nthash = '0%s' % nthash
|
||||
try: # just in case they were converted already
|
||||
self._lmhash = binascii.unhexlify(lmhash)
|
||||
self._nthash = binascii.unhexlify(nthash)
|
||||
except:
|
||||
self._lmhash = lmhash
|
||||
self._nthash = nthash
|
||||
pass
|
||||
|
||||
def doesSupportNTLMv2(self):
|
||||
# By default we'll be returning the library's default. Only on SMB Transports we might be able to know it beforehand
|
||||
return ntlm.USE_NTLMv2
|
||||
|
||||
def get_dce_rpc(self):
|
||||
return DCERPC_v5(self)
|
||||
|
||||
class UDPTransport(DCERPCTransport):
|
||||
"Implementation of ncadg_ip_udp protocol sequence"
|
||||
|
||||
DCERPC_class = DCERPC_v4
|
||||
|
||||
def __init__(self, remoteName, dstport = 135):
|
||||
DCERPCTransport.__init__(self, remoteName, dstport)
|
||||
self.__socket = 0
|
||||
self.set_connect_timeout(30)
|
||||
self.__recv_addr = ''
|
||||
|
||||
def connect(self):
|
||||
try:
|
||||
af, socktype, proto, canonname, sa = socket.getaddrinfo(self.getRemoteHost(), self.get_dport(), 0, socket.SOCK_DGRAM)[0]
|
||||
self.__socket = socket.socket(af, socktype, proto)
|
||||
self.__socket.settimeout(self.get_connect_timeout())
|
||||
except socket.error as msg:
|
||||
self.__socket = None
|
||||
raise DCERPCException("Could not connect: %s" % msg)
|
||||
|
||||
return 1
|
||||
|
||||
def disconnect(self):
|
||||
try:
|
||||
self.__socket.close()
|
||||
except socket.error:
|
||||
self.__socket = None
|
||||
return 0
|
||||
return 1
|
||||
|
||||
def send(self,data, forceWriteAndx = 0, forceRecv = 0):
|
||||
self.__socket.sendto(data, (self.getRemoteHost(), self.get_dport()))
|
||||
|
||||
def recv(self, forceRecv = 0, count = 0):
|
||||
buffer, self.__recv_addr = self.__socket.recvfrom(8192)
|
||||
return buffer
|
||||
|
||||
def get_recv_addr(self):
|
||||
return self.__recv_addr
|
||||
|
||||
def get_socket(self):
|
||||
return self.__socket
|
||||
|
||||
class TCPTransport(DCERPCTransport):
|
||||
"""Implementation of ncacn_ip_tcp protocol sequence"""
|
||||
|
||||
def __init__(self, remoteName, dstport = 135):
|
||||
DCERPCTransport.__init__(self, remoteName, dstport)
|
||||
self.__socket = 0
|
||||
self.set_connect_timeout(30)
|
||||
|
||||
def connect(self):
|
||||
af, socktype, proto, canonname, sa = socket.getaddrinfo(self.getRemoteHost(), self.get_dport(), 0, socket.SOCK_STREAM)[0]
|
||||
self.__socket = socket.socket(af, socktype, proto)
|
||||
try:
|
||||
self.__socket.settimeout(self.get_connect_timeout())
|
||||
self.__socket.connect(sa)
|
||||
except socket.error as msg:
|
||||
self.__socket.close()
|
||||
raise DCERPCException("Could not connect: %s" % msg)
|
||||
return 1
|
||||
|
||||
def disconnect(self):
|
||||
try:
|
||||
self.__socket.close()
|
||||
except socket.error:
|
||||
self.__socket = None
|
||||
return 0
|
||||
return 1
|
||||
|
||||
def send(self,data, forceWriteAndx = 0, forceRecv = 0):
|
||||
if self._max_send_frag:
|
||||
offset = 0
|
||||
while 1:
|
||||
toSend = data[offset:offset+self._max_send_frag]
|
||||
if not toSend:
|
||||
break
|
||||
self.__socket.send(toSend)
|
||||
offset += len(toSend)
|
||||
else:
|
||||
self.__socket.send(data)
|
||||
|
||||
def recv(self, forceRecv = 0, count = 0):
|
||||
if count:
|
||||
buffer = b''
|
||||
while len(buffer) < count:
|
||||
buffer += self.__socket.recv(count-len(buffer))
|
||||
else:
|
||||
buffer = self.__socket.recv(8192)
|
||||
return buffer
|
||||
|
||||
def get_socket(self):
|
||||
return self.__socket
|
||||
|
||||
class HTTPTransport(TCPTransport, RPCProxyClient):
|
||||
"""Implementation of ncacn_http protocol sequence"""
|
||||
|
||||
def __init__(self, remoteName=None, dstport=593):
|
||||
self._useRpcProxy = False
|
||||
self._rpcProxyUrl = None
|
||||
self._transport = TCPTransport
|
||||
self._version = RPC_OVER_HTTP_v2
|
||||
|
||||
DCERPCTransport.__init__(self, remoteName, dstport)
|
||||
RPCProxyClient.__init__(self, remoteName, dstport)
|
||||
self.set_connect_timeout(30)
|
||||
|
||||
def set_credentials(self, username, password, domain='', lmhash='', nthash='', aesKey='', TGT=None, TGS=None):
|
||||
return self._transport.set_credentials(self, username, password,
|
||||
domain, lmhash, nthash, aesKey, TGT, TGS)
|
||||
|
||||
def rpc_proxy_init(self):
|
||||
self._useRpcProxy = True
|
||||
self._transport = RPCProxyClient
|
||||
|
||||
def set_rpc_proxy_url(self, url):
|
||||
self.rpc_proxy_init()
|
||||
self._rpcProxyUrl = urlparse(url)
|
||||
|
||||
def get_rpc_proxy_url(self):
|
||||
return urlunparse(self._rpcProxyUrl)
|
||||
|
||||
def set_stringbinding(self, set_stringbinding):
|
||||
DCERPCTransport.set_stringbinding(self, set_stringbinding)
|
||||
|
||||
if self._stringbinding.is_option_set("RpcProxy"):
|
||||
self.rpc_proxy_init()
|
||||
|
||||
rpcproxy = self._stringbinding.get_option("RpcProxy").split(":")
|
||||
|
||||
if rpcproxy[1] == '443':
|
||||
self.set_rpc_proxy_url('https://%s/rpc/rpcproxy.dll' % rpcproxy[0])
|
||||
elif rpcproxy[1] == '80':
|
||||
self.set_rpc_proxy_url('http://%s/rpc/rpcproxy.dll' % rpcproxy[0])
|
||||
else:
|
||||
# 2.1.2.1
|
||||
# RPC over HTTP always uses port 80 for HTTP traffic and port 443 for HTTPS traffic.
|
||||
# But you can use set_rpc_proxy_url method to set any URL / query you want.
|
||||
raise DCERPCException("RPC Proxy port must be 80 or 443")
|
||||
|
||||
def connect(self):
|
||||
if self._useRpcProxy == False:
|
||||
# Connecting directly to the ncacn_http port
|
||||
#
|
||||
# Here we using RPC over HTTPv1 instead complex RPC over HTTP v2 syntax
|
||||
# RPC over HTTP v2 here can be implemented in the future
|
||||
self._version = RPC_OVER_HTTP_v1
|
||||
|
||||
TCPTransport.connect(self)
|
||||
|
||||
# Reading legacy server response
|
||||
data = self.get_socket().recv(8192)
|
||||
|
||||
if data != b'ncacn_http/1.0':
|
||||
raise DCERPCException("%s:%s service is not ncacn_http" % (self.__remoteName, self.__dstport))
|
||||
else:
|
||||
RPCProxyClient.connect(self)
|
||||
|
||||
def send(self, data, forceWriteAndx=0, forceRecv=0):
|
||||
return self._transport.send(self, data, forceWriteAndx, forceRecv)
|
||||
|
||||
def recv(self, forceRecv=0, count=0):
|
||||
return self._transport.recv(self, forceRecv, count)
|
||||
|
||||
def get_socket(self):
|
||||
if self._useRpcProxy == False:
|
||||
return TCPTransport.get_socket(self)
|
||||
else:
|
||||
raise DCERPCException("This method is not supported for RPC Proxy connections")
|
||||
|
||||
def disconnect(self):
|
||||
return self._transport.disconnect(self)
|
||||
|
||||
class SMBTransport(DCERPCTransport):
|
||||
"""Implementation of ncacn_np protocol sequence"""
|
||||
|
||||
def __init__(self, remoteName, dstport=445, filename='', username='', password='', domain='', lmhash='', nthash='',
|
||||
aesKey='', TGT=None, TGS=None, remote_host='', smb_connection=0, doKerberos=False, kdcHost=None):
|
||||
DCERPCTransport.__init__(self, remoteName, dstport)
|
||||
self.__socket = None
|
||||
self.__tid = 0
|
||||
self.__filename = filename
|
||||
self.__handle = 0
|
||||
self.__pending_recv = 0
|
||||
self.set_credentials(username, password, domain, lmhash, nthash, aesKey, TGT, TGS)
|
||||
self._doKerberos = doKerberos
|
||||
self._kdcHost = kdcHost
|
||||
|
||||
if remote_host != '':
|
||||
self.setRemoteHost(remote_host)
|
||||
|
||||
if smb_connection == 0:
|
||||
self.__existing_smb = False
|
||||
else:
|
||||
self.__existing_smb = True
|
||||
self.set_credentials(*smb_connection.getCredentials())
|
||||
|
||||
self.__prefDialect = None
|
||||
self.__smb_connection = smb_connection
|
||||
self.set_connect_timeout(30)
|
||||
|
||||
def preferred_dialect(self, dialect):
|
||||
self.__prefDialect = dialect
|
||||
|
||||
def setup_smb_connection(self):
|
||||
if not self.__smb_connection:
|
||||
self.__smb_connection = SMBConnection(self.getRemoteName(), self.getRemoteHost(), sess_port=self.get_dport(),
|
||||
preferredDialect=self.__prefDialect, timeout=self.get_connect_timeout())
|
||||
if self._strict_hostname_validation:
|
||||
self.__smb_connection.setHostnameValidation(self._strict_hostname_validation, self._validation_allow_absent, self._accepted_hostname)
|
||||
|
||||
def connect(self):
|
||||
# Check if we have a smb connection already setup
|
||||
if self.__smb_connection == 0:
|
||||
self.setup_smb_connection()
|
||||
if self._doKerberos is False:
|
||||
self.__smb_connection.login(self._username, self._password, self._domain, self._lmhash, self._nthash)
|
||||
else:
|
||||
self.__smb_connection.kerberosLogin(self._username, self._password, self._domain, self._lmhash,
|
||||
self._nthash, self._aesKey, kdcHost=self._kdcHost, TGT=self._TGT,
|
||||
TGS=self._TGS)
|
||||
self.__tid = self.__smb_connection.connectTree('IPC$')
|
||||
self.__handle = self.__smb_connection.openFile(self.__tid, self.__filename)
|
||||
self.__socket = self.__smb_connection.getSMBServer().get_socket()
|
||||
return 1
|
||||
|
||||
def disconnect(self):
|
||||
self.__smb_connection.disconnectTree(self.__tid)
|
||||
# If we created the SMB connection, we close it, otherwise
|
||||
# that's up for the caller
|
||||
if self.__existing_smb is False:
|
||||
self.__smb_connection.logoff()
|
||||
self.__smb_connection.close()
|
||||
self.__smb_connection = 0
|
||||
|
||||
def send(self,data, forceWriteAndx = 0, forceRecv = 0):
|
||||
if self._max_send_frag:
|
||||
offset = 0
|
||||
while 1:
|
||||
toSend = data[offset:offset+self._max_send_frag]
|
||||
if not toSend:
|
||||
break
|
||||
self.__smb_connection.writeFile(self.__tid, self.__handle, toSend, offset = offset)
|
||||
offset += len(toSend)
|
||||
else:
|
||||
self.__smb_connection.writeFile(self.__tid, self.__handle, data)
|
||||
if forceRecv:
|
||||
self.__pending_recv += 1
|
||||
|
||||
def recv(self, forceRecv = 0, count = 0 ):
|
||||
if self._max_send_frag or self.__pending_recv:
|
||||
# _max_send_frag is checked because it's the same condition we checked
|
||||
# to decide whether to use write_andx() or send_trans() in send() above.
|
||||
if self.__pending_recv:
|
||||
self.__pending_recv -= 1
|
||||
return self.__smb_connection.readFile(self.__tid, self.__handle, bytesToRead = self._max_recv_frag)
|
||||
else:
|
||||
return self.__smb_connection.readFile(self.__tid, self.__handle)
|
||||
|
||||
def get_smb_connection(self):
|
||||
return self.__smb_connection
|
||||
|
||||
def set_smb_connection(self, smb_connection):
|
||||
self.__smb_connection = smb_connection
|
||||
self.set_credentials(*smb_connection.getCredentials())
|
||||
self.__existing_smb = True
|
||||
|
||||
def get_smb_server(self):
|
||||
# Raw Access to the SMBServer (whatever type it is)
|
||||
return self.__smb_connection.getSMBServer()
|
||||
|
||||
def get_socket(self):
|
||||
return self.__socket
|
||||
|
||||
def doesSupportNTLMv2(self):
|
||||
return self.__smb_connection.doesSupportNTLMv2()
|
||||
|
||||
class LOCALTransport(DCERPCTransport):
|
||||
"""
|
||||
Implementation of ncalocal protocol sequence, not the same
|
||||
as ncalrpc (I'm not doing LPC just opening the local pipe)
|
||||
"""
|
||||
|
||||
def __init__(self, filename = ''):
|
||||
DCERPCTransport.__init__(self, '', 0)
|
||||
self.__filename = filename
|
||||
self.__handle = 0
|
||||
|
||||
def connect(self):
|
||||
if self.__filename.upper().find('PIPE') < 0:
|
||||
self.__filename = '\\PIPE\\%s' % self.__filename
|
||||
self.__handle = os.open('\\\\.\\%s' % self.__filename, os.O_RDWR|os.O_BINARY)
|
||||
return 1
|
||||
|
||||
def disconnect(self):
|
||||
os.close(self.__handle)
|
||||
|
||||
def send(self,data, forceWriteAndx = 0, forceRecv = 0):
|
||||
os.write(self.__handle, data)
|
||||
|
||||
def recv(self, forceRecv = 0, count = 0 ):
|
||||
data = os.read(self.__handle, 65535)
|
||||
return data
|
799
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/tsch.py
Normal file
799
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/tsch.py
Normal file
|
@ -0,0 +1,799 @@
|
|||
# SECUREAUTH LABS. Copyright 2018 SecureAuth Corporation. All rights reserved.
|
||||
#
|
||||
# This software is provided under under a slightly modified version
|
||||
# of the Apache Software License. See the accompanying LICENSE file
|
||||
# for more information.
|
||||
#
|
||||
# Author: Alberto Solino (@agsolino)
|
||||
#
|
||||
# Description:
|
||||
# [MS-TSCH] ITaskSchedulerService Interface implementation
|
||||
#
|
||||
# Best way to learn how to use these calls is to grab the protocol standard
|
||||
# so you understand what the call does, and then read the test case located
|
||||
# at https://github.com/SecureAuthCorp/impacket/tree/master/tests/SMB_RPC
|
||||
#
|
||||
# Some calls have helper functions, which makes it even easier to use.
|
||||
# They are located at the end of this file.
|
||||
# Helper functions start with "h"<name of the call>.
|
||||
# There are test cases for them too.
|
||||
#
|
||||
from impacket.dcerpc.v5.ndr import NDRCALL, NDRSTRUCT, NDRPOINTER, NDRUniConformantArray
|
||||
from impacket.dcerpc.v5.dtypes import DWORD, LPWSTR, ULONG, WSTR, NULL, GUID, PSYSTEMTIME, SYSTEMTIME
|
||||
from impacket.structure import Structure
|
||||
from impacket import hresult_errors, system_errors
|
||||
from impacket.uuid import uuidtup_to_bin
|
||||
from impacket.dcerpc.v5.rpcrt import DCERPCException
|
||||
|
||||
MSRPC_UUID_TSCHS = uuidtup_to_bin(('86D35949-83C9-4044-B424-DB363231FD0C','1.0'))
|
||||
|
||||
class DCERPCSessionError(DCERPCException):
|
||||
def __init__(self, error_string=None, error_code=None, packet=None):
|
||||
DCERPCException.__init__(self, error_string, error_code, packet)
|
||||
|
||||
def __str__( self ):
|
||||
key = self.error_code
|
||||
if key in hresult_errors.ERROR_MESSAGES:
|
||||
error_msg_short = hresult_errors.ERROR_MESSAGES[key][0]
|
||||
error_msg_verbose = hresult_errors.ERROR_MESSAGES[key][1]
|
||||
return 'TSCH SessionError: code: 0x%x - %s - %s' % (self.error_code, error_msg_short, error_msg_verbose)
|
||||
elif key & 0xffff in system_errors.ERROR_MESSAGES:
|
||||
error_msg_short = system_errors.ERROR_MESSAGES[key & 0xffff][0]
|
||||
error_msg_verbose = system_errors.ERROR_MESSAGES[key & 0xffff][1]
|
||||
return 'TSCH SessionError: code: 0x%x - %s - %s' % (self.error_code, error_msg_short, error_msg_verbose)
|
||||
else:
|
||||
return 'TSCH SessionError: unknown error code: 0x%x' % self.error_code
|
||||
|
||||
################################################################################
|
||||
# CONSTANTS
|
||||
################################################################################
|
||||
# 2.3.1 Constant Values
|
||||
CNLEN = 15
|
||||
DNLEN = CNLEN
|
||||
UNLEN = 256
|
||||
MAX_BUFFER_SIZE = (DNLEN+UNLEN+1+1)
|
||||
|
||||
# 2.3.7 Flags
|
||||
TASK_FLAG_INTERACTIVE = 0x1
|
||||
TASK_FLAG_DELETE_WHEN_DONE = 0x2
|
||||
TASK_FLAG_DISABLED = 0x4
|
||||
TASK_FLAG_START_ONLY_IF_IDLE = 0x10
|
||||
TASK_FLAG_KILL_ON_IDLE_END = 0x20
|
||||
TASK_FLAG_DONT_START_IF_ON_BATTERIES = 0x40
|
||||
TASK_FLAG_KILL_IF_GOING_ON_BATTERIES = 0x80
|
||||
TASK_FLAG_RUN_ONLY_IF_DOCKED = 0x100
|
||||
TASK_FLAG_HIDDEN = 0x200
|
||||
TASK_FLAG_RUN_IF_CONNECTED_TO_INTERNET = 0x400
|
||||
TASK_FLAG_RESTART_ON_IDLE_RESUME = 0x800
|
||||
TASK_FLAG_SYSTEM_REQUIRED = 0x1000
|
||||
TASK_FLAG_RUN_ONLY_IF_LOGGED_ON = 0x2000
|
||||
|
||||
# 2.3.9 TASK_LOGON_TYPE
|
||||
TASK_LOGON_NONE = 0
|
||||
TASK_LOGON_PASSWORD = 1
|
||||
TASK_LOGON_S4U = 2
|
||||
TASK_LOGON_INTERACTIVE_TOKEN = 3
|
||||
TASK_LOGON_GROUP = 4
|
||||
TASK_LOGON_SERVICE_ACCOUNT = 5
|
||||
TASK_LOGON_INTERACTIVE_TOKEN_OR_PASSWORD = 6
|
||||
|
||||
# 2.3.13 TASK_STATE
|
||||
TASK_STATE_UNKNOWN = 0
|
||||
TASK_STATE_DISABLED = 1
|
||||
TASK_STATE_QUEUED = 2
|
||||
TASK_STATE_READY = 3
|
||||
TASK_STATE_RUNNING = 4
|
||||
|
||||
# 2.4.1 FIXDLEN_DATA
|
||||
SCHED_S_TASK_READY = 0x00041300
|
||||
SCHED_S_TASK_RUNNING = 0x00041301
|
||||
SCHED_S_TASK_NOT_SCHEDULED = 0x00041301
|
||||
|
||||
# 2.4.2.11 Triggers
|
||||
TASK_TRIGGER_FLAG_HAS_END_DATE = 0
|
||||
TASK_TRIGGER_FLAG_KILL_AT_DURATION_END = 0
|
||||
TASK_TRIGGER_FLAG_DISABLED = 0
|
||||
|
||||
# ToDo: Change this to enums
|
||||
ONCE = 0
|
||||
DAILY = 1
|
||||
WEEKLY = 2
|
||||
MONTHLYDATE = 3
|
||||
MONTHLYDOW = 4
|
||||
EVENT_ON_IDLE = 5
|
||||
EVENT_AT_SYSTEMSTART = 6
|
||||
EVENT_AT_LOGON = 7
|
||||
|
||||
SUNDAY = 0
|
||||
MONDAY = 1
|
||||
TUESDAY = 2
|
||||
WEDNESDAY = 3
|
||||
THURSDAY = 4
|
||||
FRIDAY = 5
|
||||
SATURDAY = 6
|
||||
|
||||
JANUARY = 1
|
||||
FEBRUARY = 2
|
||||
MARCH = 3
|
||||
APRIL = 4
|
||||
MAY = 5
|
||||
JUNE = 6
|
||||
JULY = 7
|
||||
AUGUST = 8
|
||||
SEPTEMBER = 9
|
||||
OCTOBER = 10
|
||||
NOVEMBER = 11
|
||||
DECEMBER = 12
|
||||
|
||||
# 2.4.2.11.8 MONTHLYDOW Trigger
|
||||
FIRST_WEEK = 1
|
||||
SECOND_WEEK = 2
|
||||
THIRD_WEEK = 3
|
||||
FOURTH_WEEK = 4
|
||||
LAST_WEEK = 5
|
||||
|
||||
# 2.3.12 TASK_NAMES
|
||||
TASK_NAMES = LPWSTR
|
||||
|
||||
# 3.2.5.4.2 SchRpcRegisterTask (Opnum 1)
|
||||
TASK_VALIDATE_ONLY = 1<<(31-31)
|
||||
TASK_CREATE = 1<<(31-30)
|
||||
TASK_UPDATE = 1<<(31-29)
|
||||
TASK_DISABLE = 1<<(31-28)
|
||||
TASK_DON_ADD_PRINCIPAL_ACE = 1<<(31-27)
|
||||
TASK_IGNORE_REGISTRATION_TRIGGERS = 1<<(31-26)
|
||||
|
||||
# 3.2.5.4.5 SchRpcSetSecurity (Opnum 4)
|
||||
TASK_DONT_ADD_PRINCIPAL_ACE = 1<<(31-27)
|
||||
SCH_FLAG_FOLDER = 1<<(31-2)
|
||||
SCH_FLAG_TASK = 1<<(31-1)
|
||||
|
||||
# 3.2.5.4.7 SchRpcEnumFolders (Opnum 6)
|
||||
TASK_ENUM_HIDDEN = 1
|
||||
|
||||
# 3.2.5.4.13 SchRpcRun (Opnum 12)
|
||||
TASK_RUN_AS_SELF = 1<<(31-31)
|
||||
TASK_RUN_IGNORE_CONSTRAINTS = 1<<(31-30)
|
||||
TASK_RUN_USE_SESSION_ID = 1<<(31-29)
|
||||
TASK_RUN_USER_SID = 1<<(31-28)
|
||||
|
||||
# 3.2.5.4.18 SchRpcGetTaskInfo (Opnum 17)
|
||||
SCH_FLAG_STATE = 1<<(31-3)
|
||||
|
||||
################################################################################
|
||||
# STRUCTURES
|
||||
################################################################################
|
||||
# 2.3.12 TASK_NAMES
|
||||
class TASK_NAMES_ARRAY(NDRUniConformantArray):
|
||||
item = TASK_NAMES
|
||||
|
||||
class PTASK_NAMES_ARRAY(NDRPOINTER):
|
||||
referent = (
|
||||
('Data',TASK_NAMES_ARRAY),
|
||||
)
|
||||
|
||||
class WSTR_ARRAY(NDRUniConformantArray):
|
||||
item = WSTR
|
||||
|
||||
class PWSTR_ARRAY(NDRPOINTER):
|
||||
referent = (
|
||||
('Data',WSTR_ARRAY),
|
||||
)
|
||||
|
||||
class GUID_ARRAY(NDRUniConformantArray):
|
||||
item = GUID
|
||||
|
||||
class PGUID_ARRAY(NDRPOINTER):
|
||||
referent = (
|
||||
('Data',GUID_ARRAY),
|
||||
)
|
||||
|
||||
# 3.2.5.4.13 SchRpcRun (Opnum 12)
|
||||
class SYSTEMTIME_ARRAY(NDRUniConformantArray):
|
||||
item = SYSTEMTIME
|
||||
|
||||
class PSYSTEMTIME_ARRAY(NDRPOINTER):
|
||||
referent = (
|
||||
('Data',SYSTEMTIME_ARRAY),
|
||||
)
|
||||
|
||||
# 2.3.8 TASK_USER_CRED
|
||||
class TASK_USER_CRED(NDRSTRUCT):
|
||||
structure = (
|
||||
('userId',LPWSTR),
|
||||
('password',LPWSTR),
|
||||
('flags',DWORD),
|
||||
)
|
||||
|
||||
class TASK_USER_CRED_ARRAY(NDRUniConformantArray):
|
||||
item = TASK_USER_CRED
|
||||
|
||||
class LPTASK_USER_CRED_ARRAY(NDRPOINTER):
|
||||
referent = (
|
||||
('Data',TASK_USER_CRED_ARRAY),
|
||||
)
|
||||
|
||||
# 2.3.10 TASK_XML_ERROR_INFO
|
||||
class TASK_XML_ERROR_INFO(NDRSTRUCT):
|
||||
structure = (
|
||||
('line',DWORD),
|
||||
('column',DWORD),
|
||||
('node',LPWSTR),
|
||||
('value',LPWSTR),
|
||||
)
|
||||
|
||||
class PTASK_XML_ERROR_INFO(NDRPOINTER):
|
||||
referent = (
|
||||
('Data',TASK_XML_ERROR_INFO),
|
||||
)
|
||||
|
||||
# 2.4.1 FIXDLEN_DATA
|
||||
class FIXDLEN_DATA(Structure):
|
||||
structure = (
|
||||
('Product Version','<H=0'),
|
||||
('File Version','<H=0'),
|
||||
('Job uuid','16s="'),
|
||||
('App Name Len Offset','<H=0'),
|
||||
('Trigger Offset','<H=0'),
|
||||
('Error Retry Count','<H=0'),
|
||||
('Error Retry Interval','<H=0'),
|
||||
('Idle Deadline','<H=0'),
|
||||
('Idle Wait','<H=0'),
|
||||
('Priority','<L=0'),
|
||||
('Maximum Run Time','<L=0'),
|
||||
('Exit Code','<L=0'),
|
||||
('Status','<L=0'),
|
||||
('Flags','<L=0'),
|
||||
)
|
||||
|
||||
# 2.4.2.11 Triggers
|
||||
class TRIGGERS(Structure):
|
||||
structure = (
|
||||
('Trigger Size','<H=0'),
|
||||
('Reserved1','<H=0'),
|
||||
('Begin Year','<H=0'),
|
||||
('Begin Month','<H=0'),
|
||||
('Begin Day','<H=0'),
|
||||
('End Year','<H=0'),
|
||||
('End Month','<H=0'),
|
||||
('End Day','<H=0'),
|
||||
('Start Hour','<H=0'),
|
||||
('Start Minute','<H=0'),
|
||||
('Minutes Duration','<L=0'),
|
||||
('Minutes Interval','<L=0'),
|
||||
('Flags','<L=0'),
|
||||
('Trigger Type','<L=0'),
|
||||
('TriggerSpecific0','<H=0'),
|
||||
('TriggerSpecific1','<H=0'),
|
||||
('TriggerSpecific2','<H=0'),
|
||||
('Padding','<H=0'),
|
||||
('Reserved2','<H=0'),
|
||||
('Reserved3','<H=0'),
|
||||
)
|
||||
|
||||
# 2.4.2.11.6 WEEKLY Trigger
|
||||
class WEEKLY(Structure):
|
||||
structure = (
|
||||
('Trigger Type','<L=0'),
|
||||
('Weeks Interval','<H=0'),
|
||||
('DaysOfTheWeek','<H=0'),
|
||||
('Unused','<H=0'),
|
||||
('Padding','<H=0'),
|
||||
)
|
||||
|
||||
# 2.4.2.11.7 MONTHLYDATE Trigger
|
||||
class MONTHLYDATE(Structure):
|
||||
structure = (
|
||||
('Trigger Type','<L=0'),
|
||||
('Days','<L=0'),
|
||||
('Months','<H=0'),
|
||||
('Padding','<H=0'),
|
||||
)
|
||||
|
||||
# 2.4.2.11.8 MONTHLYDOW Trigger
|
||||
class MONTHLYDOW(Structure):
|
||||
structure = (
|
||||
('Trigger Type','<L=0'),
|
||||
('WhichWeek','<H=0'),
|
||||
('DaysOfTheWeek','<H=0'),
|
||||
('Months','<H=0'),
|
||||
('Padding','<H=0'),
|
||||
('Reserved2','<H=0'),
|
||||
('Reserved3','<H=0'),
|
||||
)
|
||||
|
||||
# 2.4.2.12 Job Signature
|
||||
class JOB_SIGNATURE(Structure):
|
||||
structure = (
|
||||
('SignatureVersion','<HH0'),
|
||||
('MinClientVersion','<H=0'),
|
||||
('Signature','64s="'),
|
||||
)
|
||||
|
||||
################################################################################
|
||||
# RPC CALLS
|
||||
################################################################################
|
||||
# 3.2.5.4.1 SchRpcHighestVersion (Opnum 0)
|
||||
class SchRpcHighestVersion(NDRCALL):
|
||||
opnum = 0
|
||||
structure = (
|
||||
)
|
||||
|
||||
class SchRpcHighestVersionResponse(NDRCALL):
|
||||
structure = (
|
||||
('pVersion', DWORD),
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
# 3.2.5.4.2 SchRpcRegisterTask (Opnum 1)
|
||||
class SchRpcRegisterTask(NDRCALL):
|
||||
opnum = 1
|
||||
structure = (
|
||||
('path', LPWSTR),
|
||||
('xml', WSTR),
|
||||
('flags', DWORD),
|
||||
('sddl', LPWSTR),
|
||||
('logonType', DWORD),
|
||||
('cCreds', DWORD),
|
||||
('pCreds', LPTASK_USER_CRED_ARRAY),
|
||||
)
|
||||
|
||||
class SchRpcRegisterTaskResponse(NDRCALL):
|
||||
structure = (
|
||||
('pActualPath', LPWSTR),
|
||||
('pErrorInfo', PTASK_XML_ERROR_INFO),
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
# 3.2.5.4.3 SchRpcRetrieveTask (Opnum 2)
|
||||
class SchRpcRetrieveTask(NDRCALL):
|
||||
opnum = 2
|
||||
structure = (
|
||||
('path', WSTR),
|
||||
('lpcwszLanguagesBuffer', WSTR),
|
||||
('pulNumLanguages', DWORD),
|
||||
)
|
||||
|
||||
class SchRpcRetrieveTaskResponse(NDRCALL):
|
||||
structure = (
|
||||
('pXml', LPWSTR),
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
# 3.2.5.4.4 SchRpcCreateFolder (Opnum 3)
|
||||
class SchRpcCreateFolder(NDRCALL):
|
||||
opnum = 3
|
||||
structure = (
|
||||
('path', WSTR),
|
||||
('sddl', LPWSTR),
|
||||
('flags', DWORD),
|
||||
)
|
||||
|
||||
class SchRpcCreateFolderResponse(NDRCALL):
|
||||
structure = (
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
# 3.2.5.4.5 SchRpcSetSecurity (Opnum 4)
|
||||
class SchRpcSetSecurity(NDRCALL):
|
||||
opnum = 4
|
||||
structure = (
|
||||
('path', WSTR),
|
||||
('sddl', WSTR),
|
||||
('flags', DWORD),
|
||||
)
|
||||
|
||||
class SchRpcSetSecurityResponse(NDRCALL):
|
||||
structure = (
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
# 3.2.5.4.6 SchRpcGetSecurity (Opnum 5)
|
||||
class SchRpcGetSecurity(NDRCALL):
|
||||
opnum = 5
|
||||
structure = (
|
||||
('path', WSTR),
|
||||
('securityInformation', DWORD),
|
||||
)
|
||||
|
||||
class SchRpcGetSecurityResponse(NDRCALL):
|
||||
structure = (
|
||||
('sddl',LPWSTR),
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
# 3.2.5.4.7 SchRpcEnumFolders (Opnum 6)
|
||||
class SchRpcEnumFolders(NDRCALL):
|
||||
opnum = 6
|
||||
structure = (
|
||||
('path', WSTR),
|
||||
('flags', DWORD),
|
||||
('startIndex', DWORD),
|
||||
('cRequested', DWORD),
|
||||
)
|
||||
|
||||
class SchRpcEnumFoldersResponse(NDRCALL):
|
||||
structure = (
|
||||
('startIndex', DWORD),
|
||||
('pcNames', DWORD),
|
||||
('pNames', PTASK_NAMES_ARRAY),
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
# 3.2.5.4.8 SchRpcEnumTasks (Opnum 7)
|
||||
class SchRpcEnumTasks(NDRCALL):
|
||||
opnum = 7
|
||||
structure = (
|
||||
('path', WSTR),
|
||||
('flags', DWORD),
|
||||
('startIndex', DWORD),
|
||||
('cRequested', DWORD),
|
||||
)
|
||||
|
||||
class SchRpcEnumTasksResponse(NDRCALL):
|
||||
structure = (
|
||||
('startIndex', DWORD),
|
||||
('pcNames', DWORD),
|
||||
('pNames', PTASK_NAMES_ARRAY),
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
# 3.2.5.4.9 SchRpcEnumInstances (Opnum 8)
|
||||
class SchRpcEnumInstances(NDRCALL):
|
||||
opnum = 8
|
||||
structure = (
|
||||
('path', LPWSTR),
|
||||
('flags', DWORD),
|
||||
)
|
||||
|
||||
class SchRpcEnumInstancesResponse(NDRCALL):
|
||||
structure = (
|
||||
('pcGuids', DWORD),
|
||||
('pGuids', PGUID_ARRAY),
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
# 3.2.5.4.10 SchRpcGetInstanceInfo (Opnum 9)
|
||||
class SchRpcGetInstanceInfo(NDRCALL):
|
||||
opnum = 9
|
||||
structure = (
|
||||
('guid', GUID),
|
||||
)
|
||||
|
||||
class SchRpcGetInstanceInfoResponse(NDRCALL):
|
||||
structure = (
|
||||
('pPath', LPWSTR),
|
||||
('pState', DWORD),
|
||||
('pCurrentAction', LPWSTR),
|
||||
('pInfo', LPWSTR),
|
||||
('pcGroupInstances', DWORD),
|
||||
('pGroupInstances', PGUID_ARRAY),
|
||||
('pEnginePID', DWORD),
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
# 3.2.5.4.11 SchRpcStopInstance (Opnum 10)
|
||||
class SchRpcStopInstance(NDRCALL):
|
||||
opnum = 10
|
||||
structure = (
|
||||
('guid', GUID),
|
||||
('flags', DWORD),
|
||||
)
|
||||
|
||||
class SchRpcStopInstanceResponse(NDRCALL):
|
||||
structure = (
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
# 3.2.5.4.12 SchRpcStop (Opnum 11)
|
||||
class SchRpcStop(NDRCALL):
|
||||
opnum = 11
|
||||
structure = (
|
||||
('path', LPWSTR),
|
||||
('flags', DWORD),
|
||||
)
|
||||
|
||||
class SchRpcStopResponse(NDRCALL):
|
||||
structure = (
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
# 3.2.5.4.13 SchRpcRun (Opnum 12)
|
||||
class SchRpcRun(NDRCALL):
|
||||
opnum = 12
|
||||
structure = (
|
||||
('path', WSTR),
|
||||
('cArgs', DWORD),
|
||||
('pArgs', PWSTR_ARRAY),
|
||||
('flags', DWORD),
|
||||
('sessionId', DWORD),
|
||||
('user', LPWSTR),
|
||||
)
|
||||
|
||||
class SchRpcRunResponse(NDRCALL):
|
||||
structure = (
|
||||
('pGuid', GUID),
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
# 3.2.5.4.14 SchRpcDelete (Opnum 13)
|
||||
class SchRpcDelete(NDRCALL):
|
||||
opnum = 13
|
||||
structure = (
|
||||
('path', WSTR),
|
||||
('flags', DWORD),
|
||||
)
|
||||
|
||||
class SchRpcDeleteResponse(NDRCALL):
|
||||
structure = (
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
# 3.2.5.4.15 SchRpcRename (Opnum 14)
|
||||
class SchRpcRename(NDRCALL):
|
||||
opnum = 14
|
||||
structure = (
|
||||
('path', WSTR),
|
||||
('newName', WSTR),
|
||||
('flags', DWORD),
|
||||
)
|
||||
|
||||
class SchRpcRenameResponse(NDRCALL):
|
||||
structure = (
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
# 3.2.5.4.16 SchRpcScheduledRuntimes (Opnum 15)
|
||||
class SchRpcScheduledRuntimes(NDRCALL):
|
||||
opnum = 15
|
||||
structure = (
|
||||
('path', WSTR),
|
||||
('start', PSYSTEMTIME),
|
||||
('end', PSYSTEMTIME),
|
||||
('flags', DWORD),
|
||||
('cRequested', DWORD),
|
||||
)
|
||||
|
||||
class SchRpcScheduledRuntimesResponse(NDRCALL):
|
||||
structure = (
|
||||
('pcRuntimes',DWORD),
|
||||
('pRuntimes',PSYSTEMTIME_ARRAY),
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
# 3.2.5.4.17 SchRpcGetLastRunInfo (Opnum 16)
|
||||
class SchRpcGetLastRunInfo(NDRCALL):
|
||||
opnum = 16
|
||||
structure = (
|
||||
('path', WSTR),
|
||||
)
|
||||
|
||||
class SchRpcGetLastRunInfoResponse(NDRCALL):
|
||||
structure = (
|
||||
('pLastRuntime',SYSTEMTIME),
|
||||
('pLastReturnCode',DWORD),
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
# 3.2.5.4.18 SchRpcGetTaskInfo (Opnum 17)
|
||||
class SchRpcGetTaskInfo(NDRCALL):
|
||||
opnum = 17
|
||||
structure = (
|
||||
('path', WSTR),
|
||||
('flags', DWORD),
|
||||
)
|
||||
|
||||
class SchRpcGetTaskInfoResponse(NDRCALL):
|
||||
structure = (
|
||||
('pEnabled',DWORD),
|
||||
('pState',DWORD),
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
# 3.2.5.4.19 SchRpcGetNumberOfMissedRuns (Opnum 18)
|
||||
class SchRpcGetNumberOfMissedRuns(NDRCALL):
|
||||
opnum = 18
|
||||
structure = (
|
||||
('path', WSTR),
|
||||
)
|
||||
|
||||
class SchRpcGetNumberOfMissedRunsResponse(NDRCALL):
|
||||
structure = (
|
||||
('pNumberOfMissedRuns',DWORD),
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
# 3.2.5.4.20 SchRpcEnableTask (Opnum 19)
|
||||
class SchRpcEnableTask(NDRCALL):
|
||||
opnum = 19
|
||||
structure = (
|
||||
('path', WSTR),
|
||||
('enabled', DWORD),
|
||||
)
|
||||
|
||||
class SchRpcEnableTaskResponse(NDRCALL):
|
||||
structure = (
|
||||
('ErrorCode',ULONG),
|
||||
)
|
||||
|
||||
################################################################################
|
||||
# OPNUMs and their corresponding structures
|
||||
################################################################################
|
||||
OPNUMS = {
|
||||
0 : (SchRpcHighestVersion,SchRpcHighestVersionResponse ),
|
||||
1 : (SchRpcRegisterTask,SchRpcRegisterTaskResponse ),
|
||||
2 : (SchRpcRetrieveTask,SchRpcRetrieveTaskResponse ),
|
||||
3 : (SchRpcCreateFolder,SchRpcCreateFolderResponse ),
|
||||
4 : (SchRpcSetSecurity,SchRpcSetSecurityResponse ),
|
||||
5 : (SchRpcGetSecurity,SchRpcGetSecurityResponse ),
|
||||
6 : (SchRpcEnumFolders,SchRpcEnumFoldersResponse ),
|
||||
7 : (SchRpcEnumTasks,SchRpcEnumTasksResponse ),
|
||||
8 : (SchRpcEnumInstances,SchRpcEnumInstancesResponse ),
|
||||
9 : (SchRpcGetInstanceInfo,SchRpcGetInstanceInfoResponse ),
|
||||
10 : (SchRpcStopInstance,SchRpcStopInstanceResponse ),
|
||||
11 : (SchRpcStop,SchRpcStopResponse ),
|
||||
12 : (SchRpcRun,SchRpcRunResponse ),
|
||||
13 : (SchRpcDelete,SchRpcDeleteResponse ),
|
||||
14 : (SchRpcRename,SchRpcRenameResponse ),
|
||||
15 : (SchRpcScheduledRuntimes,SchRpcScheduledRuntimesResponse ),
|
||||
16 : (SchRpcGetLastRunInfo,SchRpcGetLastRunInfoResponse ),
|
||||
17 : (SchRpcGetTaskInfo,SchRpcGetTaskInfoResponse ),
|
||||
18 : (SchRpcGetNumberOfMissedRuns,SchRpcGetNumberOfMissedRunsResponse),
|
||||
19 : (SchRpcEnableTask,SchRpcEnableTaskResponse),
|
||||
}
|
||||
|
||||
################################################################################
|
||||
# HELPER FUNCTIONS
|
||||
################################################################################
|
||||
def checkNullString(string):
|
||||
if string == NULL:
|
||||
return string
|
||||
|
||||
if string[-1:] != '\x00':
|
||||
return string + '\x00'
|
||||
else:
|
||||
return string
|
||||
|
||||
def hSchRpcHighestVersion(dce):
|
||||
return dce.request(SchRpcHighestVersion())
|
||||
|
||||
def hSchRpcRegisterTask(dce, path, xml, flags, sddl, logonType, pCreds = ()):
|
||||
request = SchRpcRegisterTask()
|
||||
request['path'] = checkNullString(path)
|
||||
request['xml'] = checkNullString(xml)
|
||||
request['flags'] = flags
|
||||
request['sddl'] = sddl
|
||||
request['logonType'] = logonType
|
||||
request['cCreds'] = len(pCreds)
|
||||
if len(pCreds) == 0:
|
||||
request['pCreds'] = NULL
|
||||
else:
|
||||
for cred in pCreds:
|
||||
request['pCreds'].append(cred)
|
||||
return dce.request(request)
|
||||
|
||||
def hSchRpcRetrieveTask(dce, path, lpcwszLanguagesBuffer = '\x00', pulNumLanguages=0 ):
|
||||
schRpcRetrieveTask = SchRpcRetrieveTask()
|
||||
schRpcRetrieveTask['path'] = checkNullString(path)
|
||||
schRpcRetrieveTask['lpcwszLanguagesBuffer'] = lpcwszLanguagesBuffer
|
||||
schRpcRetrieveTask['pulNumLanguages'] = pulNumLanguages
|
||||
return dce.request(schRpcRetrieveTask)
|
||||
|
||||
def hSchRpcCreateFolder(dce, path, sddl = NULL):
|
||||
schRpcCreateFolder = SchRpcCreateFolder()
|
||||
schRpcCreateFolder['path'] = checkNullString(path)
|
||||
schRpcCreateFolder['sddl'] = sddl
|
||||
schRpcCreateFolder['flags'] = 0
|
||||
return dce.request(schRpcCreateFolder)
|
||||
|
||||
def hSchRpcSetSecurity(dce, path, sddl, flags):
|
||||
schRpcSetSecurity = SchRpcSetSecurity()
|
||||
schRpcSetSecurity['path'] = checkNullString(path)
|
||||
schRpcSetSecurity['sddl'] = checkNullString(sddl)
|
||||
schRpcSetSecurity['flags'] = flags
|
||||
return dce.request(schRpcSetSecurity)
|
||||
|
||||
def hSchRpcGetSecurity(dce, path, securityInformation=0xffffffff):
|
||||
schRpcGetSecurity = SchRpcGetSecurity()
|
||||
schRpcGetSecurity['path'] = checkNullString(path)
|
||||
schRpcGetSecurity['securityInformation'] = securityInformation
|
||||
return dce.request(schRpcGetSecurity)
|
||||
|
||||
def hSchRpcEnumFolders(dce, path, flags=TASK_ENUM_HIDDEN, startIndex=0, cRequested=0xffffffff):
|
||||
schRpcEnumFolders = SchRpcEnumFolders()
|
||||
schRpcEnumFolders['path'] = checkNullString(path)
|
||||
schRpcEnumFolders['flags'] = flags
|
||||
schRpcEnumFolders['startIndex'] = startIndex
|
||||
schRpcEnumFolders['cRequested'] = cRequested
|
||||
return dce.request(schRpcEnumFolders)
|
||||
|
||||
def hSchRpcEnumTasks(dce, path, flags=TASK_ENUM_HIDDEN, startIndex=0, cRequested=0xffffffff):
|
||||
schRpcEnumTasks = SchRpcEnumTasks()
|
||||
schRpcEnumTasks['path'] = checkNullString(path)
|
||||
schRpcEnumTasks['flags'] = flags
|
||||
schRpcEnumTasks['startIndex'] = startIndex
|
||||
schRpcEnumTasks['cRequested'] = cRequested
|
||||
return dce.request(schRpcEnumTasks)
|
||||
|
||||
def hSchRpcEnumInstances(dce, path, flags=TASK_ENUM_HIDDEN):
|
||||
schRpcEnumInstances = SchRpcEnumInstances()
|
||||
schRpcEnumInstances['path'] = checkNullString(path)
|
||||
schRpcEnumInstances['flags'] = flags
|
||||
return dce.request(schRpcEnumInstances)
|
||||
|
||||
def hSchRpcGetInstanceInfo(dce, guid):
|
||||
schRpcGetInstanceInfo = SchRpcGetInstanceInfo()
|
||||
schRpcGetInstanceInfo['guid'] = guid
|
||||
return dce.request(schRpcGetInstanceInfo)
|
||||
|
||||
def hSchRpcStopInstance(dce, guid, flags = 0):
|
||||
schRpcStopInstance = SchRpcStopInstance()
|
||||
schRpcStopInstance['guid'] = guid
|
||||
schRpcStopInstance['flags'] = flags
|
||||
return dce.request(schRpcStopInstance)
|
||||
|
||||
def hSchRpcStop(dce, path, flags = 0):
|
||||
schRpcStop= SchRpcStop()
|
||||
schRpcStop['path'] = checkNullString(path)
|
||||
schRpcStop['flags'] = flags
|
||||
return dce.request(schRpcStop)
|
||||
|
||||
def hSchRpcRun(dce, path, pArgs=(), flags=0, sessionId=0, user = NULL):
|
||||
schRpcRun = SchRpcRun()
|
||||
schRpcRun['path'] = checkNullString(path)
|
||||
schRpcRun['cArgs'] = len(pArgs)
|
||||
for arg in pArgs:
|
||||
argn = LPWSTR()
|
||||
argn['Data'] = checkNullString(arg)
|
||||
schRpcRun['pArgs'].append(argn)
|
||||
schRpcRun['flags'] = flags
|
||||
schRpcRun['sessionId'] = sessionId
|
||||
schRpcRun['user'] = user
|
||||
return dce.request(schRpcRun)
|
||||
|
||||
def hSchRpcDelete(dce, path, flags = 0):
|
||||
schRpcDelete = SchRpcDelete()
|
||||
schRpcDelete['path'] = checkNullString(path)
|
||||
schRpcDelete['flags'] = flags
|
||||
return dce.request(schRpcDelete)
|
||||
|
||||
def hSchRpcRename(dce, path, newName, flags = 0):
|
||||
schRpcRename = SchRpcRename()
|
||||
schRpcRename['path'] = checkNullString(path)
|
||||
schRpcRename['newName'] = checkNullString(newName)
|
||||
schRpcRename['flags'] = flags
|
||||
return dce.request(schRpcRename)
|
||||
|
||||
def hSchRpcScheduledRuntimes(dce, path, start = NULL, end = NULL, flags = 0, cRequested = 10):
|
||||
schRpcScheduledRuntimes = SchRpcScheduledRuntimes()
|
||||
schRpcScheduledRuntimes['path'] = checkNullString(path)
|
||||
schRpcScheduledRuntimes['start'] = start
|
||||
schRpcScheduledRuntimes['end'] = end
|
||||
schRpcScheduledRuntimes['flags'] = flags
|
||||
schRpcScheduledRuntimes['cRequested'] = cRequested
|
||||
return dce.request(schRpcScheduledRuntimes)
|
||||
|
||||
def hSchRpcGetLastRunInfo(dce, path):
|
||||
schRpcGetLastRunInfo = SchRpcGetLastRunInfo()
|
||||
schRpcGetLastRunInfo['path'] = checkNullString(path)
|
||||
return dce.request(schRpcGetLastRunInfo)
|
||||
|
||||
def hSchRpcGetTaskInfo(dce, path, flags = 0):
|
||||
schRpcGetTaskInfo = SchRpcGetTaskInfo()
|
||||
schRpcGetTaskInfo['path'] = checkNullString(path)
|
||||
schRpcGetTaskInfo['flags'] = flags
|
||||
return dce.request(schRpcGetTaskInfo)
|
||||
|
||||
def hSchRpcGetNumberOfMissedRuns(dce, path):
|
||||
schRpcGetNumberOfMissedRuns = SchRpcGetNumberOfMissedRuns()
|
||||
schRpcGetNumberOfMissedRuns['path'] = checkNullString(path)
|
||||
return dce.request(schRpcGetNumberOfMissedRuns)
|
||||
|
||||
def hSchRpcEnableTask(dce, path, enabled = True):
|
||||
schRpcEnableTask = SchRpcEnableTask()
|
||||
schRpcEnableTask['path'] = checkNullString(path)
|
||||
if enabled is True:
|
||||
schRpcEnableTask['enabled'] = 1
|
||||
else:
|
||||
schRpcEnableTask['enabled'] = 0
|
||||
return dce.request(schRpcEnableTask)
|
1182
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/wkst.py
Normal file
1182
tools/MultiRelay/impacket-dev/impacket/dcerpc/v5/wkst.py
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue