Add stubborn implementation + first orpc test based on that

This commit is contained in:
hakril
2025-01-06 16:40:02 +01:00
parent 4b034fc0fe
commit d535440a44
2 changed files with 118 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
import sys
import pytest
import os.path
import time
import windows.rpc.stubborn
import windows.rpc as rpc
from windows.rpc import ndr
import windows.generated_def as gdef
from .pfwtest import *
# Test ORPC capabilities by manually connecting to a DCOM Object and querying a simple method
# The server choosen is 0002DF01-0000-0000-C000-000000000046 (Internet Explorer)
# Target is IWebBrowser2->get_FullName which should return a path to iexplorer
# A second check about in parameters can be done with put_Left / get_Left or put_Visible
# Test ORPC capabilities by manually connecting to a DCOM Object and querying a simple method
# The server choosen is A47979D2-C419-11D9-A5B4-001185AD2B89 (Service C:\Windows\System32\netprofmsvc.dll)
# Target is INetWorkListManager->17 which should return a simple byte about network state
def test_orpc_network_manager():
iid = gdef.GUID.from_string("D0074FFD-570F-4A9B-8D69-199FDBA5723B")
client, ipid = windows.rpc.stubborn.stubborn_create_instance("A47979D2-C419-11D9-A5B4-001185AD2B89", iid)
response = client.call(iid, 17, b"", ipid=ipid)
import pdb;pdb.set_trace()
assert response[0] not in (b"\x00", 0)
+89
View File
@@ -0,0 +1,89 @@
# An implementation of stubborn:
# https://blog.exatrack.com/STUBborn/
# https://github.com/ExaTrack/COM_IExaDemo/blob/master/stubborn_client.py
## Allows to retrieve a raw RPCClient on a DCOM object
import ctypes
import windows.rpc
import windows.generated_def as gdef
# Should be in windows.com ?
def stubborn_create_instance(clsid, iid):
"""Require windows.com.init()"""
if isinstance(clsid, str):
clsid = gdef.GUID.from_string(clsid)
if isinstance(iid, str):
iid = gdef.GUID.from_string(iid)
windows.com.init()
# Retrieve the COM Catalog to get a IComClassInfo
comcatalog = gdef.IComCatalog()
windows.com.create_instance("00000346-0000-0000-c000-000000000046", comcatalog)
# Retrieve the IComClassInfo on CLSID_TARGET
comclassinfo = gdef.IComClassInfo()
comcatalog.GetClassInfo(clsid, gdef.IComClassInfo.IID, comclassinfo)
# Create an ActivationPropertiesIn
propin = gdef.IActivationPropertiesIn()
windows.com.create_instance("00000338-0000-0000-c000-000000000046", propin)
# Query the interfaces we need to fill the ActivationPropertiesIn
propin_init = propin.query(gdef.IInitActivationPropertiesIn)
propin_as_priv = propin.query(gdef.IPrivActivationPropertiesIn)
propin_as_stage = propin.query(gdef.IActivationStageInfo)
# Fill the ActivationPropertiesIn
# Simple example : We directly ask for a pointer to an gdef.ITaskService.IID
# We could ask for a IUnknown and then use RemQueryInterface
propin.AddRequestedIIDs(1, iid)
propin_init.SetClassInfo(ctypes.cast(comclassinfo, gdef.IUnknown))
propin_init.SetClsctx(gdef.CLSCTX_LOCAL_SERVER)
propin_as_stage.SetStageAndIndex(gdef.CLIENT_CONTEXT_STAGE, 0) # We are a Client activator
# Make the actual CreateInstance
propout = gdef.IActivationPropertiesOut()
remiunknown = gdef.IUnknown()
propin_as_priv.DelegateCreateInstance(remiunknown, propout)
# Query the interfaces we need to from the ActivationPropertiesOut
propout_as_priv = propout.query(gdef.IPrivActivationPropertiesOut)
propout_as_scmreply = propout.query(gdef.IScmReplyInfo)
# TODO: a real analysis of which combase version change this structure ?
# 6.1.7601.17514 -> 10.0.19041.4894 -> PPRIV_RESOLVER_INFO_LEGACY
# 10.0.22000.65 -> 10.0.26100.2454 -> PPRIV_RESOLVER
rpiv_infoptr = gdef.PPRIV_RESOLVER_INFO() # Structure may change on older windows and be PPRIV_RESOLVER_INFO_LEGACY
propout_as_scmreply.GetResolverInfo(rpiv_infoptr)
resolver_info = rpiv_infoptr[0]
if resolver_info.OxidInfo.containerVersion.version > 3:
print("resolver_info.OxidInfo.containerVersion.version == {0}".format(resolver_info.OxidInfo.containerVersion.version))
print("Probable bad structure ! -> cast to legacy !")
resolver_info = ctypes.cast(rpiv_infoptr, gdef.PPRIV_RESOLVER_INFO_LEGACY)[0]
print("")
psa = resolver_info.OxidInfo.psa[0] # Retrieve the bidings to our COM server
print("psa.bidings: {0}".format(psa.bidings))
# ipidRemUnknown = resolver_info.OxidInfo.ipidRemUnknown # Useful for IRemQueryInterface
# Retrieve info about the IPID from GetMarshalledResults
nb_interface = gdef.DWORD()
iids = gdef.LPGUID()
results = ctypes.POINTER(gdef.HRESULT)()
interfaces = ctypes.pointer(gdef.PMInterfacePointer())
propout_as_priv.GetMarshalledResults(nb_interface, iids, results, interfaces)
objref = interfaces[0][0].objref
# Parse the RPC biding and connect to the related ALPC Port
target_alpc_endpoint = psa.bidings[0]
assert target_alpc_endpoint.startswith("ncalrpc:[")
target_alpc_server = "\\RPC Control\\" + target_alpc_endpoint[len("ncalrpc:["):-1]
client = windows.rpc.RPCClient(target_alpc_server)
# RPC: Bind to the IID on ou server
iid = client.bind(iid, (0, 0))
return client, objref.std.ipid