summaryrefslogtreecommitdiffstats
path: root/sploitpipe
diff options
context:
space:
mode:
Diffstat (limited to '')
l---------sploitpipe1
-rwxr-xr-xsploitpipe.sh21
2 files changed, 0 insertions, 22 deletions
diff --git a/sploitpipe b/sploitpipe
deleted file mode 120000
index 3e5a956..0000000
--- a/sploitpipe
+++ /dev/null
@@ -1 +0,0 @@
-sploitpipe.sh \ No newline at end of file
diff --git a/sploitpipe.sh b/sploitpipe.sh
deleted file mode 100755
index a761ad5..0000000
--- a/sploitpipe.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/bash
-
-#sets up sploit.py to use the input/output of a target program
-#after running ./sploit you can launch the target program with
-#<spltin ./target_program &>spltout
-#also works in gdb
-#r <spltin &>spltout
-#or run the program in the background and set the gdb wait timer in sploit.py
-# <spltin ./target_program &>spltout &
-# gdb -p <pid that gets printed out when backgrounding target>
-
-rm spltin 2> /dev/null
-rm spltout 2> /dev/null
-
-mkfifo spltin
-mkfifo spltout
-
-<spltout tee >(./sploit.py &>spltin) | ./sploitlog.py
-
-rm spltin
-rm spltout