Windows error 0x000011E0, 4576

Detailed Error Information

PLATFORM_MANIFEST_NOT_SIGNED[1]

MessageThe Platform Manifest file was not properly signed.
Declared inwinerror.h

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

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 Code4576 (0x11e0)

Questions

2votes
1answer

Overwrite EIP in the main function

I'm curious about how overwriting the stack is different in the main function than in other functions Take this example: #include <stdio.h> int main(int argc, char *argv[]) { char buf[8]; gets(buf); } In this code, the buffer to be overflowed is created in the main function, and as a result [...] read more
c
gdb
stack-overflow
buffer-overflow
0votes
1answer

GDB disassembly address different when adding breakpoint

Here is my function with line numbers 8 | void function(char* string) { 9 | char buffer[16]; 10| strcpy(buffer,string); 11| } Here is gdb disassemble function output 0x000011d4 <+0>: push %ebp 0x000011d5 <+1>: mov %esp,%ebp 0x000011d7 <+3>: push %ebx 0x000011d8 <+4>: sub $0x14,%esp 0x000011db <+7>: call 0x123d <__x86.get_pc_thunk.ax> 0x000011e0 <+12>: [...] read more
gdb
disassembly

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