Skip to content

Instantly share code, notes, and snippets.

@rocker9527
rocker9527 / stack_traces.c
Created April 3, 2022 16:12 — forked from jvranish/stack_traces.c
An example of catching exceptions and printing stack traces in C on Windows, Linux and OS X
/* compile with:
on linux: gcc -g stack_traces.c
on OS X: gcc -g -fno-pie stack_traces.c
on windows: gcc -g stack_traces.c -limagehlp
*/
#include <signal.h>
#include <stdio.h>
#include <assert.h>
@rocker9527
rocker9527 / resources.md
Created June 7, 2021 06:11 — forked from muff-in/resources.md
A curated list of Assembly Language / Reversing / Malware Analysis -resources