summaryrefslogtreecommitdiff
path: root/detect/gdb.h
diff options
context:
space:
mode:
Diffstat (limited to 'detect/gdb.h')
-rw-r--r--detect/gdb.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/detect/gdb.h b/detect/gdb.h
new file mode 100644
index 0000000..c899cf2
--- /dev/null
+++ b/detect/gdb.h
@@ -0,0 +1,13 @@
1#ifndef _GDB_
2#define _GDB_
3
4#define check_strings(str_buff) (strstr(str_buff, "gdb") || strstr(str_buff, "ltrace") || strstr(str_buff, "strace"))
5
6int dbg_file_descriptor();
7int dbg_cmdline();
8int dbg_ptrace();
9int dbg_sigtrap();
10int dbg_check_bp();
11int dbg_getppid_name();
12
13#endif