From aa9da0f6f27759f5f3201bafb0e52f41367f08ef 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 --- tools/sploit/sploitpipe.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 tools/sploit/sploitpipe.sh (limited to 'tools/sploit/sploitpipe.sh') diff --git a/tools/sploit/sploitpipe.sh b/tools/sploit/sploitpipe.sh new file mode 100755 index 0000000..a761ad5 --- /dev/null +++ b/tools/sploit/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