naksyn / PythonMemoryModule

pure-python implementation of MemoryModule technique to load dll and unmanaged exe entirely from memory
Apache License 2.0
297 stars 46 forks source link

some questions #4

Closed DataReset closed 11 months ago

DataReset commented 11 months ago

first question: why i cant just run exe without arguments? it throws an error TypeError: unsupported operand type(s) for +: 'NoneType' and 'str' second question: does is support nuitka executable? ( i tried, but it doesn't work ) DEBUG: Starting new thread to execute PE DEBUG: Checking for entry point. DEBUG: Calling exe entrypoint 0x140001125 and nothing then

naksyn commented 11 months ago

Hi, yes you can run exe without arguments, should be solved with commit https://github.com/naksyn/PythonMemoryModule/commit/9bb2f6761d17177798e739b7c5160267e569a9cb. Never tried nuitka executables with pythonmemorymodule, don't know if that would work.

DataReset commented 11 months ago

okey, i will try then