Windows error 0x000004FD, 1277

Detailed Error Information

ACCESS_DISABLED_WEBBLADE[1]

MessageWindows cannot open this program since it has been disabled.
Declared inwinerror.h

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

HRESULT analysis: flags: none; facility: 0 (FACILITY_NULL); error: 1277 (more)

Questions

0votes
0answers

Cannot access memory at break point address in GDB

I've already set breakpoint at address 0x000004ed. But why can't I access it even after the code has been ran? (gdb) disassemble main Dump of assembler code for function main: 0x000004ed <+0>: push ebp 0x000004ee <+1>: mov ebp,esp 0x000004f0 <+3>: sub esp,0x10 0x000004f3 <+6>: call 0x512 <__x86.get_pc_thunk.ax> 0x000004f8 <+11>: add [...] read more
c
memory
gdb
0votes
0answers

disassembly c program with gdb get error

When I disassemble c program with gdb, I get error. I googled it but no result found that I want. Can someone help me? my document first.asm is: global main main: mov eax, 1 mov ebx, 2 add eax, ebx ret root@kali-linux:~/my-document/test# gdb ./first GNU gdb (Debian 7.12-6) 7.12.0.20161007-git Copyright [...] read more
c
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