Python impacket.dcerpc.v5.tsch.MSRPC_UUID_TSCHS Examples
The following are 30
code examples of impacket.dcerpc.v5.tsch.MSRPC_UUID_TSCHS().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
impacket.dcerpc.v5.tsch
, or try the search function
.
Example #1
Source File: test_tsch.py From CVE-2017-7494 with GNU General Public License v3.0 | 6 votes |
def test_hSchRpcStopInstance(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) dce2, rpctransport = self.connect(self.stringBindingAtSvc, atsvc.MSRPC_UUID_ATSVC) atInfo = AT_INFO() atInfo['JobTime'] = NULL atInfo['DaysOfMonth'] = 0 atInfo['DaysOfWeek'] = 0 atInfo['Flags'] = 0 atInfo['Command'] = '%%COMSPEC%% /C vssadmin > %%SYSTEMROOT%%\\Temp\\ANI 2>&1\x00' resp = atsvc.hNetrJobAdd(dce2, NULL, atInfo) resp.dump() jobId = resp['pJobId'] try: resp = tsch.hSchRpcRun(dce, '\\At%d\x00' % jobId, ('arg0','arg1')) resp.dump() except Exception, e: print e pass
Example #2
Source File: test_tsch.py From cracke-dit with MIT License | 6 votes |
def test_hSchRpcRun(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) dce2, rpctransport = self.connect(self.stringBindingAtSvc, atsvc.MSRPC_UUID_ATSVC) atInfo = AT_INFO() atInfo['JobTime'] = NULL atInfo['DaysOfMonth'] = 0 atInfo['DaysOfWeek'] = 0 atInfo['Flags'] = 0 atInfo['Command'] = '%%COMSPEC%% /C dir > %%SYSTEMROOT%%\\Temp\\ANI 2>&1\x00' resp = atsvc.hNetrJobAdd(dce2, NULL, atInfo) resp.dump() jobId = resp['pJobId'] try: resp = tsch.hSchRpcRun(dce, '\\At%d\x00' % jobId, ('arg0','arg1')) resp.dump() except Exception, e: print e pass
Example #3
Source File: taskexe.py From lsassy with MIT License | 6 votes |
def execute(self, commands): dce = self._rpctransport.get_dce_rpc() dce.set_credentials(*self._rpctransport.get_credentials()) if self._conn.kerberos: dce.set_auth_type(RPC_C_AUTHN_GSS_NEGOTIATE) dce.connect() dce.bind(tsch.MSRPC_UUID_TSCHS) xml = self.gen_xml(commands) tmpName = ''.join(random.choice(string.ascii_letters + string.digits) for _ in range(8)) self._log.debug("Register random task {}".format(tmpName)) tsch.hSchRpcRegisterTask(dce, '\\%s' % tmpName, xml, tsch.TASK_CREATE, NULL, tsch.TASK_LOGON_NONE) tsch.hSchRpcRun(dce, '\\%s' % tmpName) done = False while not done: resp = tsch.hSchRpcGetLastRunInfo(dce, '\\%s' % tmpName) if resp['pLastRuntime']['wYear'] != 0: done = True else: time.sleep(2) time.sleep(3) tsch.hSchRpcDelete(dce, '\\%s' % tmpName) dce.disconnect()
Example #4
Source File: test_tsch.py From cracke-dit with MIT License | 6 votes |
def test_SchRpcGetInstanceInfo(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) dce2, rpctransport = self.connect(self.stringBindingAtSvc, atsvc.MSRPC_UUID_ATSVC) atInfo = AT_INFO() atInfo['JobTime'] = NULL atInfo['DaysOfMonth'] = 0 atInfo['DaysOfWeek'] = 0 atInfo['Flags'] = 0 atInfo['Command'] = '%%COMSPEC%% /C vssadmin > %%SYSTEMROOT%%\\Temp\\ANI 2>&1\x00' resp = atsvc.hNetrJobAdd(dce2, NULL, atInfo) resp.dump() jobId = resp['pJobId'] try: resp = tsch.hSchRpcRun(dce, '\\At%d\x00' % jobId, ('arg0','arg1')) resp.dump() except Exception, e: print e pass
Example #5
Source File: test_tsch.py From cracke-dit with MIT License | 6 votes |
def test_hSchRpcGetInstanceInfo(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) dce2, rpctransport = self.connect(self.stringBindingAtSvc, atsvc.MSRPC_UUID_ATSVC) atInfo = AT_INFO() atInfo['JobTime'] = NULL atInfo['DaysOfMonth'] = 0 atInfo['DaysOfWeek'] = 0 atInfo['Flags'] = 0 atInfo['Command'] = '%%COMSPEC%% /C vssadmin > %%SYSTEMROOT%%\\Temp\\ANI 2>&1\x00' resp = atsvc.hNetrJobAdd(dce2, NULL, atInfo) resp.dump() jobId = resp['pJobId'] try: resp = tsch.hSchRpcRun(dce, '\\At%d\x00' % jobId, ('arg0','arg1')) resp.dump() except Exception, e: print e pass
Example #6
Source File: test_tsch.py From cracke-dit with MIT License | 6 votes |
def test_SchRpcStopInstance(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) dce2, rpctransport = self.connect(self.stringBindingAtSvc, atsvc.MSRPC_UUID_ATSVC) atInfo = AT_INFO() atInfo['JobTime'] = NULL atInfo['DaysOfMonth'] = 0 atInfo['DaysOfWeek'] = 0 atInfo['Flags'] = 0 atInfo['Command'] = '%%COMSPEC%% /C vssadmin > %%SYSTEMROOT%%\\Temp\\ANI 2>&1\x00' resp = atsvc.hNetrJobAdd(dce2, NULL, atInfo) resp.dump() jobId = resp['pJobId'] try: resp = tsch.hSchRpcRun(dce, '\\At%d\x00' % jobId, ('arg0','arg1')) resp.dump() except Exception, e: print e pass
Example #7
Source File: test_tsch.py From cracke-dit with MIT License | 6 votes |
def test_hSchRpcStopInstance(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) dce2, rpctransport = self.connect(self.stringBindingAtSvc, atsvc.MSRPC_UUID_ATSVC) atInfo = AT_INFO() atInfo['JobTime'] = NULL atInfo['DaysOfMonth'] = 0 atInfo['DaysOfWeek'] = 0 atInfo['Flags'] = 0 atInfo['Command'] = '%%COMSPEC%% /C vssadmin > %%SYSTEMROOT%%\\Temp\\ANI 2>&1\x00' resp = atsvc.hNetrJobAdd(dce2, NULL, atInfo) resp.dump() jobId = resp['pJobId'] try: resp = tsch.hSchRpcRun(dce, '\\At%d\x00' % jobId, ('arg0','arg1')) resp.dump() except Exception, e: print e pass
Example #8
Source File: test_tsch.py From cracke-dit with MIT License | 6 votes |
def test_hSchRpcStop(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) dce2, rpctransport = self.connect(self.stringBindingAtSvc, atsvc.MSRPC_UUID_ATSVC) atInfo = AT_INFO() atInfo['JobTime'] = NULL atInfo['DaysOfMonth'] = 0 atInfo['DaysOfWeek'] = 0 atInfo['Flags'] = 0 atInfo['Command'] = '%%COMSPEC%% /C vssadmin > %%SYSTEMROOT%%\\Temp\\ANI 2>&1\x00' resp = atsvc.hNetrJobAdd(dce2, NULL, atInfo) resp.dump() jobId = resp['pJobId'] try: resp = tsch.hSchRpcStop(dce, '\\At%d\x00' % jobId) resp.dump() except Exception, e: # It is actually S_FALSE if str(e).find('ERROR_INVALID_FUNCTION') <= 0: raise pass
Example #9
Source File: test_tsch.py From Slackor with GNU General Public License v3.0 | 6 votes |
def test_SchRpcRename(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) resp = tsch.hSchRpcCreateFolder(dce, '\\Beto') resp.dump() request = tsch.SchRpcRename() request['path'] = '\\Beto\x00' request['newName'] = '\\Anita\x00' request['flags'] = 0 try: resp = dce.request(request) resp.dump() except Exception as e: if str(e).find('E_NOTIMPL') <= 0: raise pass resp = tsch.hSchRpcDelete(dce, '\\Beto') resp.dump()
Example #10
Source File: test_tsch.py From CVE-2017-7494 with GNU General Public License v3.0 | 6 votes |
def test_hSchRpcScheduledRuntimes(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) request = tsch.SchRpcScheduledRuntimes() #request['path'] = '\\BBB\\Beto Task\x00' request['path'] = '\\Microsoft\\Windows\\Defrag\\ScheduledDefrag\x00' request['start'] = NULL request['end'] = NULL request['flags'] = 0 request['cRequested'] = 10 try: resp = tsch.hSchRpcScheduledRuntimes(dce, '\\Microsoft\\Windows\\Defrag\\ScheduledDefrag', NULL, NULL, 0, 10) resp.dump() except Exception, e: # It is actually S_FALSE if str(e).find('ERROR_INVALID_FUNCTIO') <= 0: raise e.get_packet().dump() pass
Example #11
Source File: test_tsch.py From CVE-2017-7494 with GNU General Public License v3.0 | 6 votes |
def test_SchRpcScheduledRuntimes(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) request = tsch.SchRpcScheduledRuntimes() #request['path'] = '\\BBB\\Beto Task\x00' request['path'] = '\\Microsoft\\Windows\\Defrag\\ScheduledDefrag\x00' request['start'] = NULL request['end'] = NULL request['flags'] = 0 request['cRequested'] = 10 try: resp = dce.request(request) resp.dump() except Exception, e: # It is actually S_FALSE if str(e).find('ERROR_INVALID_FUNCTIO') <= 0: raise e.get_packet().dump() pass
Example #12
Source File: test_tsch.py From Slackor with GNU General Public License v3.0 | 6 votes |
def test_hSchRpcRename(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) resp = tsch.hSchRpcCreateFolder(dce, '\\Beto') resp.dump() try: resp = tsch.hSchRpcRename(dce, '\\Beto', '\\Anita') resp.dump() except Exception as e: if str(e).find('E_NOTIMPL') <= 0: raise pass resp = tsch.hSchRpcDelete(dce, '\\Beto') resp.dump()
Example #13
Source File: test_tsch.py From CVE-2017-7494 with GNU General Public License v3.0 | 6 votes |
def test_SchRpcRename(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) resp = tsch.hSchRpcCreateFolder(dce, '\\Beto') resp.dump() request = tsch.SchRpcRename() request['path'] = '\\Beto\x00' request['newName'] = '\\Anita\x00' request['flags'] = 0 try: resp = dce.request(request) resp.dump() except Exception, e: if str(e).find('E_NOTIMPL') <= 0: raise pass
Example #14
Source File: test_tsch.py From CVE-2017-7494 with GNU General Public License v3.0 | 6 votes |
def test_hSchRpcStop(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) dce2, rpctransport = self.connect(self.stringBindingAtSvc, atsvc.MSRPC_UUID_ATSVC) atInfo = AT_INFO() atInfo['JobTime'] = NULL atInfo['DaysOfMonth'] = 0 atInfo['DaysOfWeek'] = 0 atInfo['Flags'] = 0 atInfo['Command'] = '%%COMSPEC%% /C vssadmin > %%SYSTEMROOT%%\\Temp\\ANI 2>&1\x00' resp = atsvc.hNetrJobAdd(dce2, NULL, atInfo) resp.dump() jobId = resp['pJobId'] try: resp = tsch.hSchRpcStop(dce, '\\At%d\x00' % jobId) resp.dump() except Exception, e: # It is actually S_FALSE if str(e).find('ERROR_INVALID_FUNCTION') <= 0: raise pass
Example #15
Source File: test_tsch.py From CVE-2017-7494 with GNU General Public License v3.0 | 6 votes |
def test_SchRpcStopInstance(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) dce2, rpctransport = self.connect(self.stringBindingAtSvc, atsvc.MSRPC_UUID_ATSVC) atInfo = AT_INFO() atInfo['JobTime'] = NULL atInfo['DaysOfMonth'] = 0 atInfo['DaysOfWeek'] = 0 atInfo['Flags'] = 0 atInfo['Command'] = '%%COMSPEC%% /C vssadmin > %%SYSTEMROOT%%\\Temp\\ANI 2>&1\x00' resp = atsvc.hNetrJobAdd(dce2, NULL, atInfo) resp.dump() jobId = resp['pJobId'] try: resp = tsch.hSchRpcRun(dce, '\\At%d\x00' % jobId, ('arg0','arg1')) resp.dump() except Exception, e: print e pass
Example #16
Source File: test_tsch.py From CVE-2017-7494 with GNU General Public License v3.0 | 6 votes |
def test_hSchRpcGetInstanceInfo(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) dce2, rpctransport = self.connect(self.stringBindingAtSvc, atsvc.MSRPC_UUID_ATSVC) atInfo = AT_INFO() atInfo['JobTime'] = NULL atInfo['DaysOfMonth'] = 0 atInfo['DaysOfWeek'] = 0 atInfo['Flags'] = 0 atInfo['Command'] = '%%COMSPEC%% /C vssadmin > %%SYSTEMROOT%%\\Temp\\ANI 2>&1\x00' resp = atsvc.hNetrJobAdd(dce2, NULL, atInfo) resp.dump() jobId = resp['pJobId'] try: resp = tsch.hSchRpcRun(dce, '\\At%d\x00' % jobId, ('arg0','arg1')) resp.dump() except Exception, e: print e pass
Example #17
Source File: test_tsch.py From CVE-2017-7494 with GNU General Public License v3.0 | 6 votes |
def test_SchRpcGetInstanceInfo(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) dce2, rpctransport = self.connect(self.stringBindingAtSvc, atsvc.MSRPC_UUID_ATSVC) atInfo = AT_INFO() atInfo['JobTime'] = NULL atInfo['DaysOfMonth'] = 0 atInfo['DaysOfWeek'] = 0 atInfo['Flags'] = 0 atInfo['Command'] = '%%COMSPEC%% /C vssadmin > %%SYSTEMROOT%%\\Temp\\ANI 2>&1\x00' resp = atsvc.hNetrJobAdd(dce2, NULL, atInfo) resp.dump() jobId = resp['pJobId'] try: resp = tsch.hSchRpcRun(dce, '\\At%d\x00' % jobId, ('arg0','arg1')) resp.dump() except Exception, e: print e pass
Example #18
Source File: test_tsch.py From CVE-2017-7494 with GNU General Public License v3.0 | 6 votes |
def test_hSchRpcRun(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) dce2, rpctransport = self.connect(self.stringBindingAtSvc, atsvc.MSRPC_UUID_ATSVC) atInfo = AT_INFO() atInfo['JobTime'] = NULL atInfo['DaysOfMonth'] = 0 atInfo['DaysOfWeek'] = 0 atInfo['Flags'] = 0 atInfo['Command'] = '%%COMSPEC%% /C dir > %%SYSTEMROOT%%\\Temp\\ANI 2>&1\x00' resp = atsvc.hNetrJobAdd(dce2, NULL, atInfo) resp.dump() jobId = resp['pJobId'] try: resp = tsch.hSchRpcRun(dce, '\\At%d\x00' % jobId, ('arg0','arg1')) resp.dump() except Exception, e: print e pass
Example #19
Source File: test_tsch.py From Slackor with GNU General Public License v3.0 | 6 votes |
def test_SchRpcScheduledRuntimes(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) request = tsch.SchRpcScheduledRuntimes() #request['path'] = '\\BBB\\Beto Task\x00' request['path'] = '\\Microsoft\\Windows\\Defrag\\ScheduledDefrag\x00' request['start'] = NULL request['end'] = NULL request['flags'] = 0 request['cRequested'] = 10 try: resp = dce.request(request) resp.dump() except Exception as e: # It is actually S_FALSE if str(e).find('ERROR_INVALID_FUNCTIO') <= 0 and str(e).find('SCHED_S_TASK_NOT_SCHEDULED') < 0: raise e.get_packet().dump() pass
Example #20
Source File: test_tsch.py From Slackor with GNU General Public License v3.0 | 6 votes |
def test_hSchRpcScheduledRuntimes(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) request = tsch.SchRpcScheduledRuntimes() #request['path'] = '\\BBB\\Beto Task\x00' request['path'] = '\\Microsoft\\Windows\\Defrag\\ScheduledDefrag\x00' request['start'] = NULL request['end'] = NULL request['flags'] = 0 request['cRequested'] = 10 try: resp = tsch.hSchRpcScheduledRuntimes(dce, '\\Microsoft\\Windows\\Defrag\\ScheduledDefrag', NULL, NULL, 0, 10) resp.dump() except Exception as e: # It is actually S_FALSE if str(e).find('ERROR_INVALID_FUNCTIO') <= 0 and str(e).find('SCHED_S_TASK_NOT_SCHEDULED') < 0: raise e.get_packet().dump() pass
Example #21
Source File: test_tsch.py From CVE-2017-7494 with GNU General Public License v3.0 | 6 votes |
def test_hSchRpcEnumTasks(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) dce2, rpctransport = self.connect(self.stringBindingAtSvc, atsvc.MSRPC_UUID_ATSVC) atInfo = AT_INFO() atInfo['JobTime'] = NULL atInfo['DaysOfMonth'] = 0 atInfo['DaysOfWeek'] = 0 atInfo['Flags'] = 0 atInfo['Command'] = '%%COMSPEC%% /C dir > %%SYSTEMROOT%%\\Temp\\BTO\x00' resp = atsvc.hNetrJobAdd(dce2, NULL, atInfo) resp.dump() jobId = resp['pJobId'] resp = tsch.hSchRpcEnumTasks(dce, '\\') resp.dump() resp = atsvc.hNetrJobDel(dce2, NULL, jobId, jobId) resp.dump()
Example #22
Source File: test_tsch.py From cracke-dit with MIT License | 6 votes |
def test_SchRpcRename(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) resp = tsch.hSchRpcCreateFolder(dce, '\\Beto') resp.dump() request = tsch.SchRpcRename() request['path'] = '\\Beto\x00' request['newName'] = '\\Anita\x00' request['flags'] = 0 try: resp = dce.request(request) resp.dump() except Exception, e: if str(e).find('E_NOTIMPL') <= 0: raise pass
Example #23
Source File: test_tsch.py From cracke-dit with MIT License | 6 votes |
def test_SchRpcScheduledRuntimes(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) request = tsch.SchRpcScheduledRuntimes() #request['path'] = '\\BBB\\Beto Task\x00' request['path'] = '\\Microsoft\\Windows\\Defrag\\ScheduledDefrag\x00' request['start'] = NULL request['end'] = NULL request['flags'] = 0 request['cRequested'] = 10 try: resp = dce.request(request) resp.dump() except Exception, e: # It is actually S_FALSE if str(e).find('ERROR_INVALID_FUNCTIO') <= 0: raise e.get_packet().dump() pass
Example #24
Source File: test_tsch.py From cracke-dit with MIT License | 6 votes |
def test_hSchRpcScheduledRuntimes(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) request = tsch.SchRpcScheduledRuntimes() #request['path'] = '\\BBB\\Beto Task\x00' request['path'] = '\\Microsoft\\Windows\\Defrag\\ScheduledDefrag\x00' request['start'] = NULL request['end'] = NULL request['flags'] = 0 request['cRequested'] = 10 try: resp = tsch.hSchRpcScheduledRuntimes(dce, '\\Microsoft\\Windows\\Defrag\\ScheduledDefrag', NULL, NULL, 0, 10) resp.dump() except Exception, e: # It is actually S_FALSE if str(e).find('ERROR_INVALID_FUNCTIO') <= 0: raise e.get_packet().dump() pass
Example #25
Source File: test_tsch.py From cracke-dit with MIT License | 6 votes |
def test_hSchRpcEnumTasks(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) dce2, rpctransport = self.connect(self.stringBindingAtSvc, atsvc.MSRPC_UUID_ATSVC) atInfo = AT_INFO() atInfo['JobTime'] = NULL atInfo['DaysOfMonth'] = 0 atInfo['DaysOfWeek'] = 0 atInfo['Flags'] = 0 atInfo['Command'] = '%%COMSPEC%% /C dir > %%SYSTEMROOT%%\\Temp\\BTO\x00' resp = atsvc.hNetrJobAdd(dce2, NULL, atInfo) resp.dump() jobId = resp['pJobId'] resp = tsch.hSchRpcEnumTasks(dce, '\\') resp.dump() resp = atsvc.hNetrJobDel(dce2, NULL, jobId, jobId) resp.dump()
Example #26
Source File: test_tsch.py From cracke-dit with MIT License | 5 votes |
def test_hSchRpcGetTaskInfo(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) try: resp = tsch.hSchRpcGetTaskInfo(dce, '\\Microsoft\\Windows\\Defrag\\ScheduledDefrag', tsch.SCH_FLAG_STATE) resp.dump() except Exception, e: print e pass
Example #27
Source File: test_tsch.py From cracke-dit with MIT License | 5 votes |
def test_SchRpcGetNumberOfMissedRuns(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) request = tsch.SchRpcGetNumberOfMissedRuns() request['path'] = '\\Microsoft\\Windows\\Defrag\\ScheduledDefrag\x00' try: resp = dce.request(request) resp.dump() except Exception, e: print e pass
Example #28
Source File: test_tsch.py From Slackor with GNU General Public License v3.0 | 5 votes |
def test_hSchRpcHighestVersion(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) resp = tsch.hSchRpcHighestVersion(dce) resp.dump()
Example #29
Source File: test_tsch.py From Slackor with GNU General Public License v3.0 | 5 votes |
def test_SchRpcHighestVersion(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) request = tsch.SchRpcHighestVersion() resp = dce.request(request) resp.dump()
Example #30
Source File: test_tsch.py From Slackor with GNU General Public License v3.0 | 5 votes |
def test_hSchRpcEnumInstances(self): dce, rpctransport = self.connect(self.stringBindingAtSvc, tsch.MSRPC_UUID_TSCHS) try: resp = tsch.hSchRpcEnumInstances(dce, '\\') resp.dump() except Exception as e: if e.get_error_code() != 0x80070002: raise