Transferring Files through Pivot
Here’s how you can set up another listener on a different port to forward traffic to a web server, and then use it to transfer files through a pivot:
Step 1: Create Another Listener for Port 80
To set up a dedicated listener for port 80, which is typically used for web traffic, you can add another listener. This will be used for your Python3 web server.
Listener Add Command:
This command tells the pivot machine to listen for incoming traffic on port 1235 and forward it to port 80 (localhost).
This second listener will act as a proxy for HTTP traffic (in this case, to your web server).
Step 2: Verify Both Listeners Are Active
You should now have two listeners running on the pivot machine:
One listener on port 2222 for the reverse shell.
Another listener on port 1235 for your web server (port 80).
You can check active listeners with:
Check Active Listeners:
This will show both listeners with the ports and their respective forwarding configuration.
Step 3: Set Up a Python Web Server on Port 80
On your Kali machine (or the machine where you want to serve files), you can run a Python3 HTTP server on port 80. This is where files like mimikatz.exe or WinPeas.exe can be served.
Start a Python3 HTTP Server on Port 80:
This will serve files from the directory you run the command in on port 80.
Step 4: Transfer Files Using Certutil
Now that you have your second listener set up and your web server running, you can use the certutil tool on the target machine to download files through the pivot.
Transfer File from the Web Server: On the target machine, use the following command to download a file (e.g., mimikatz.exe) from your Python HTTP server:
10.129.229.129 is the IP address of your pivot machine.
port 1235 is the port where your second listener is forwarding traffic to port 80.
mimikatz.exe is the file you want to download and save on the target machine.
This command will connect back to your Kali machine on port 1235, which will forward traffic to port 80 where your Python HTTP server is serving mimikatz.exe.
Step 5: Verify the File Transfer
After running the above command, mimikatz.exe (or any other file you choose to serve) will be transferred to the target machine.
You can use other tools like WinPeas in the same way by changing the file path.
Last updated