From b33db8c57b0875904610ae5dec64a653332ac835 Mon Sep 17 00:00:00 2001 From: dusoleil Date: Mon, 2 Aug 2021 00:36:28 -0400 Subject: Adding Initial Commit of the Sploit Tool Signed-off-by: dusoleil --- sploitpipe.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 sploitpipe.sh (limited to 'sploitpipe.sh') diff --git a/sploitpipe.sh b/sploitpipe.sh new file mode 100755 index 0000000..a761ad5 --- /dev/null +++ b/sploitpipe.sh @@ -0,0 +1,21 @@ +#!/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 +#spltout +#also works in gdb +#r spltout +#or run the program in the background and set the gdb wait timer in sploit.py +# spltout & +# gdb -p + +rm spltin 2> /dev/null +rm spltout 2> /dev/null + +mkfifo spltin +mkfifo spltout + +(./sploit.py &>spltin) | ./sploitlog.py + +rm spltin +rm spltout -- cgit v1.2.3