Windows error 0x00000650, 1616

Detailed Error Information

INVALID_FIELD[1]

MessageRecord field does not exist.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x80070650.

HRESULT analysis[2]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

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.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[2][1]
DescriptionThe default facility code.[2][1]
Error Code1616 (0x0650)

Questions

2votes
1answer

entry0 meaning in radare2

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
reverse-engineering
binaryfiles
1vote
1answer

Autoit memory read only give back 0s

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
memory
autoit

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0