This repository was archived by the owner on Jan 6, 2025. It is now read-only.

Description
All backtrace functions are not working in the syscall overriden functions, e.g.
int backtrace(void **buffer, int size);
#include <boost/stacktrace.hpp>
std::cout << boost::stacktrace::stacktrace();
Looks like the interception assembly doesn't set the ss and sp back correctly. Not sure if this is the root cause.
Is it possible to recover the full stack trace to ease trouble-shooting?