Windows error 0x00000648, 1608

Detailed Error Information

UNKNOWN_PROPERTY[1]

MessageUnknown property.
Declared inwinerror.h

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

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 Code1608 (0x0648)

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
0votes
2answers

Why is the string specified in `LD_PRELOAD` loaded on the memory of setuid executables in RedHat 6.2?

First of all, let me tell you the context. I'm solving problems of the wargame called The lord of the BoF, which is based on RedHat Linux 6.2, which has no address space layout randomization(ASLR), NX bit, ASCII armor, etc.. And the gcc there does not make any dummy when [...] read more
linux
security
memory
ld-preload
0votes
1answer

CUDA Race Check Hazard after __syncthreads()

I am trying to process a matrix in parallel in CUDA. I need to compute each column of the matrix against a given vector and if the result is greater than certain value I will keep this column, otherwise the column is removed for further computation. To avoid copying and [...] read more
c++
cuda
gpu
thrust

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