Jump to content

Reading longer string from memory


xdp22
 Share

Recommended Posts

Hello, i have problem with memory reading.

I have to read long string, i want to made function to do that, this string is just in this offsets :

0x76D928, and next just add +4 like 0x76D928 +4, 0x76D928 + 8

So i need to made function to _MemoryRead(0x76D928 + $x, $proces) until finish all string.

I tried to do it like that :

Func string()
$d = -4
For $i = 0 To 7
$x[$i] = _MemoryRead(0x76D928 + $d, $proces)
$d = $d + 4
$z = BinaryToString($x[$i])
$string &= $z
Next
Return $string
EndFunc

But doesn't work :/

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...