From bde35dc4c7ef86bd09fd3564ebe526b65d65dec8 Mon Sep 17 00:00:00 2001 From: Emanuel Duss Date: Thu, 12 Nov 2020 14:21:00 +0100 Subject: [PATCH] New command: ss --- _gtfobins/ss.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 _gtfobins/ss.md diff --git a/_gtfobins/ss.md b/_gtfobins/ss.md new file mode 100644 index 0000000..082acd4 --- /dev/null +++ b/_gtfobins/ss.md @@ -0,0 +1,17 @@ +--- +description: | + The read file content is limited to the first line and corrupted by an error message. +functions: + file-read: + - code: | + LFILE=file_to_read + ss -a -F "$LFILE" + suid: + - code: | + LFILE=file_to_read + ./ss -a -F "$LFILE" + sudo: + - code: | + LFILE=file_to_read + sudo ss -a -F "$LFILE" +---