New command: ss

master
Emanuel Duss 2020-11-12 14:21:00 +01:00
parent a8458733ea
commit bde35dc4c7
1 changed files with 17 additions and 0 deletions

17
_gtfobins/ss.md Normal file
View File

@ -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"
---