From 4a9be9780cd5e3aa680fe3d956ac0e12d5e7a5c4 Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Mon, 5 Aug 2024 01:57:22 -0600 Subject: [PATCH] Update Scripts/Bash/Transfer Files with Netcat.md --- Scripts/Bash/Transfer Files with Netcat.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/Bash/Transfer Files with Netcat.md b/Scripts/Bash/Transfer Files with Netcat.md index 8f6cd38..ae2d61e 100644 --- a/Scripts/Bash/Transfer Files with Netcat.md +++ b/Scripts/Bash/Transfer Files with Netcat.md @@ -1,4 +1,4 @@ -**Purpose**: You may find that you need to transfer a file, such as a public SSH key, or some other kind of file between two devices. In this scenario, we assume both devices have the `netcat` command available to them. By putting a network listener on the device recieving the file, then sending the file to that device's IP and port, you can successfully transfer data between computers without needing to set up SSH, FTP, or anything else to establish initial trust between the devices. +**Purpose**: You may find that you need to transfer a file, such as a public SSH key, or some other kind of file between two devices. In this scenario, we assume both devices have the `netcat` command available to them. By putting a network listener on the device recieving the file, then sending the file to that device's IP and port, you can successfully transfer data between computers without needing to set up SSH, FTP, or anything else to establish initial trust between the devices. [Original Reference Material](https://www.youtube.com/shorts/1j17UBGqSog). ### Destination Computer Run the following command on the computer that will be recieving the file.