-
Notifications
You must be signed in to change notification settings - Fork 36
Open
Description
Hey there,
I'm having some problem while trying to read a string from another program. Somehow my output is this:{'name': 'Deezer.exe', 'pid': 1100, 'handle': 456, 'error_code': None}
{'Titel': ''}
This is my code
from ReadWriteMemory import ReadWriteMemory
rwm = ReadWriteMemory()
process = rwm.get_process_by_name("Deezer.exe")
print(process.__dict__)
process.open()
title_pointer = process.get_pointer(0x04D21E1C, offsets=[0x10C, 0x44, 0x4, 0x30, 0x0])
titel = process.readString(title_pointer, 20)
print({'Titel': titel})
process.close()
And this is what i got with CE
I hope someone can help me with this.
Metadata
Metadata
Assignees
Labels
No labels
