How to change the value stored in memory address? PYTHON

Viewed 27

Lets say that memory address 0688DFA4 stores a value 120. How to change it to 124 using python? Is there a module supplied for this kind of task?

import ctypes memfield = (ctypes.c_char).from_address(0x0688DFA4) I tried but it didn't change.

I use gnu/linux. Debian

0 Answers
Related