Skip to content

Python module for write and read memory of process

License

Notifications You must be signed in to change notification settings

Xustyx/xymemory

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

XyMemory

XyMemory is a simple project based on memorpy that allows read and write process memory.

Example of use

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'
>>>

Actually supported types and methods

Types

  • BYTE: 'byte'
  • STRING: 'string'
  • INT: 'int'
  • UINT: 'uint'

Methods (DataManager)

  • 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.

Disclaimer

The author can not be held liable for any use of this code.

About

Python module for write and read memory of process

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages