coreminer 0.5.2

A debugger which can be used to debug programs that do not want to be debugged
Documentation
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
#include <stdlib.h>
#include <sys/ptrace.h>
int main() {
  if (ptrace(PTRACE_TRACEME, 0) < 0) { // if fails, some other process
    printf("Program is being traced"); // is already tracing
    exit(1);
  }
  printf("Program is not being traced");
  return 0;
}