Skip to content

Problems Reading string from memory #12

@Veridus

Description

@Veridus

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

image

I hope someone can help me with this.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions