Last active
December 11, 2018 13:13
-
-
Save asolino/464666795b4b9e8d4c95e2697eeb8cb9 to your computer and use it in GitHub Desktop.
[MS-EVEN] Interface implementation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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-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_ERROR_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 | |
# 2.2.2 EventType | |
EVENTLOG_SUCCESS = 0 | |
EVENTLOG_ERROR_TYPE = 1 | |
EVENTLOG_WARNING_TYPE = 2 | |
EVENTLOG_INFORMATION_TYPE = 4 | |
EVENTLOG_AUDIT_SUCCESS = 8 | |
EVENTLOG_AUDIT_FAILURE = 0x10 | |
################################################################################ | |
# 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.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.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.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.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.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 = { | |
9 : (ElfrOpenBELW, ElfrOpenBELWResponse), | |
7 : (ElfrOpenELW, ElfrOpenELWResponse), | |
8 : (ElfrRegisterEventSourceW, ElfrRegisterEventSourceWResponse), | |
10 : (ElfrReadELW, ElfrReadELWResponse), | |
0 : (ElfrClearELFW, ElfrClearELFWResponse), | |
1 : (ElfrBackupELFW, ElfrBackupELFWResponse), | |
11 : (ElfrReportEventW, ElfrReportEventWResponse), | |
} | |
################################################################################ | |
# HELPER FUNCTIONS | |
################################################################################ | |
def hElfrOpenBELW(dce, UNCServerName = NULL, backupFileName = NULL, majorVersion=1 , minorVersion=1): | |
request = ElfrOpenBELW() | |
request['UNCServerName'] = UNCServerName | |
request['BackupFileName'] = backupFileName | |
request['MajorVersion'] = majorVersion | |
request['MinorVersion'] = minorVersion | |
return dce.request(request) | |
def hElfrOpenELW(dce, UNCServerName = NULL, moduleName = NULL, regModuleName = NULL, majorVersion=1 , minorVersion=1): | |
request = ElfrOpenELW() | |
request['UNCServerName'] = UNCServerName | |
request['ModuleName'] = moduleName | |
request['RegModuleName'] = regModuleName | |
request['MajorVersion'] = majorVersion | |
request['MinorVersion'] = minorVersion | |
return dce.request(request) | |
def hElfrRegisterEventSourceW(dce, UNCServerName = NULL, moduleName = NULL, regModuleName = NULL, majorVersion=1 , minorVersion=1): | |
request = ElfrRegisterEventSourceW() | |
request['UNCServerName'] = UNCServerName | |
request['ModuleName'] = moduleName | |
request['RegModuleName'] = regModuleName | |
request['MajorVersion'] = majorVersion | |
request['MinorVersion'] = minorVersion | |
return dce.request(request) | |
def hElfrReadELW(dce, logHandle = '', readFlags = 0, 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) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment