XyMemory is a simple project based on memorpy that allows read and write process memory.
To start we only need to download this repository, open python command line, import this module and start fun.
$> git clone https://github.com/Xustyx/xymemory.git xymemory
$> python
#Import module
>>> from xymemory import *
#Creates a DataManager that handles a process.
>>> dm = DataManager("StarCraft.exe")
#Read unsigned int
>>> dm.read(0x0057F0F0, "uint")
50
#Read string
>>> dm.read(0x0059B420, "string")
'Computer'
>>>
- BYTE: 'byte'
- STRING: 'string'
- INT: 'int'
- UINT: 'uint'
- DataManager(process_name)
- process_name: The process name to handle.
- read(address, type)
- address: Memory address in hexadecimal format.
- type: The string value of desired Type.
- write(address, data, type)
- address: Memory address in hexadecimal format.
- data: The data to add.
- type: The string value of desired Type.
The author can not be held liable for any use of this code.