Tiny C Program

Jan 25 2009


$ cat tiny.c
int main = 0xc3c031;
$ cc tiny.c
$ ./a
$ echo $?
0
$ gdb -q ./a
(no debugging symbols found)
(gdb) x/x main
0x402000 <main>:        0x00c3c031
(gdb) disas main
Dump of assembler code for function main:
0x00402000 <main>:    xor    %eax,%eax
0x00402002 <main>:    ret
0x00402003 <main>:    .byte 0x0
End of assembler dump.
(gdb)

Ida Plugin

Jan 24 2009

How to make a simple ida pro plugin.

Interactive Pydbg

Jan 24 2009

This page describes how IPython can be used to make pydbg more interactive.

Thanks from Ms

Jan 14 2009

They thanked me for reporting crap in their online services.

Memory Allocation Failures

Jan 4 2009

A document and debugger code describing how to monitor applications for allocation failures: here.

Site up

Jan 4 2009