Continuous pursuit technical details
发布时间:2013-12-10 15:32:04
#include <sys/ptrace.h>#include <sys/types.h>#include <sys/wait.h>#include <sys/syscall.h>#include <sys/reg.h>#include <unistd.h>#include <stdio.h>#include <stdlib.h>typedef enum __bool { false = 0, true = 1, } bool;int main(){ pid_t child; long orig_eax, ea.........【阅读全文】
发布时间:2013-12-10 15:24:31
#include <stdio.h>int main(){ return printf("\e[38;41m colorful \e[m\n");}......【阅读全文】
发布时间:2013-12-10 15:20:57
#include <malloc.h>#include <iostream>#include <map>using namespace std;int main(){ cout << "==============================" << endl; malloc_stats(); map<int,float> tmpMap; for(int.........【阅读全文】