Jump to content

Recommended Posts

Posted

Hi

I found some interesting adress with CE,

type is "Text" but i have to select "Unicode" in CE to be able to read anything, else i have "'" or "s" or "+" ..

I can get the same with autoit, reading the memory ( "'" , "s" ,"+" ..) but I would like to "select" Unicode in autoit too and get my full text

I'm using this type : 'char[255]' how can I convert to unicode :)

Thanks ;)

The script i'm using :

#include "NomadMemory.au3"
#include <File.au3>
SetPrivilege("SeDebugPrivilege", 1)
;==== OPEN MEMORY=====
$ProcessID = WinGetProcess("**")
 ;checks
  _FileWriteLog(@ScriptDir & "/log.txt","process : " & $ProcessID)
 ;end checks
$info = _MemoryOpen($ProcessID)

;cheks
    If @Error Then
        MsgBox(4096, "ERROR", "Failed to open memory.")
    EndIf
    _FileWriteLog(@ScriptDir & "/log.txt","memory open : " & $info)
;end checks
;=====================

;==== LOOP ===========
While 1

    $text = _MemoryRead(0x6F9A8E58, $info, 'char[255]')
    ;cheks
        If @Error Then
            MsgBox(4096, "ERROR", "Failed to read memory.")
            Exit
        EndIf
        _FileWriteLog(@ScriptDir & "/log.txt",$text)
        ToolTip ( "Text read : " & $text ,0 , 0 )
    sleep(500)

WEnd
;=====================
Posted

Abit curious is it wow memory you are reading, just remember i allways had to use "SetPrivilege("SeDebugPrivilege", 1)" to be able to read it witch is quite not common to use.

You tried with 'var' instead of char[255] ?

UDF:Crypter a file encrypt / decrypt tool with no need to remember a password again. Based on Caesar cipher using entire ASCII Table.Script's: PixelSearch Helper, quick and simple way to create a PixelSeach.Chatserver - simplified, not so complicated multi-socket server.AutoIT - Firewall, simple example on howto create a firewall with AutoIt.

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
  • Recently Browsing   0 members

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