This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
I'm new to binary analysis. I am trying to analyse a simple program I compiled from my C code via gcc. I followed these steps: 1. aaa 2. afl and I got this output: 0x00000608 3 23 sym._init 0x00000630 1 8 sym.imp.puts 0x00000638 1 8 sym.imp._IO_getc 0x00000640 1 8 sym.imp.__printf_chk [...] read more
I'm learning memory reading with AutoIt. My current problem is that when I want to read an address it only gives back 0s. Here is my code: #include "C:\Program Files (x86)\AutoIt3\Plugins\NomadMemory.au3" $ID = _MemoryOpen(0x00000650) $Address = 0x1AAFD6ECEC8 While 1 MemoryTest() WEnd Func MemoryTest() $Test = _MemoryRead($Address,$ID) Sleep(1000) ConsoleWrite('Current address value: [...] read more