PythonForWindows
PythonForWindows copied to clipboard
A codebase aimed to make interaction with Windows and native execution easier
Using Api ReadFile() can't be blocked before server writes data. Client, python ver. ``` pipe_name = "dotnetest_py" pipe_full_name = windows.pipe.full_pipe_address(pipe_name) pipe_handle = windows.winproxy.CreateFileA(pipe_full_name, dwDesiredAccess=gdef.GENERIC_READ | gdef.GENERIC_WRITE, dwShareMode=gdef.FILE_SHARE_WRITE | gdef.FILE_SHARE_READ) bool_receive...
Hi, Great project. I used a simple RPC example to run the server. I had a bug when I used James Forshaw function `Get-RpcAlpcServer`, from his RPC tool ([NtObjectManager](https://www.powershellgallery.com/packages/NtObjectManager/1.1.32)). The...
Hello, So this PR contains a few functions for helping to share memory between two processes. This require PR #21 for having some of the function needed. A function `get_shared_mapping`...
sorry , l search RtlMoveMemory is null ,how to use?
Hello, Sorry if this package is not intended for ARM64, but I had to use it on that architecture and unfortunately I got some errors. When trying to get the...
The goal of this PR is to have full unicode compatibility by using `W` api whenever possible. This results of the use of `unicode` string in python2 & `str` in...
Im sorry for the long read.😒 I'm trying to 100% successfully import a PFX encrypted certificate for use on a remote computer to the "local machine" certificate store, for use...
NdrWriteStream object use to marshall data to the memory, however, there's a problem when do alignment. Let' see the rpc interface idl below: ``` int Output2( [in] handle_t hBinding, [in]...