Additional post-exploitation modules
Metasploit offers 250 plus post-exploitation modules; however, we will only cover a few interesting ones, and will leave the rest for you to cover as an exercise.
Gathering wireless SSIDs with Metasploit
Wireless networks around the target system can be discovered efficiently using the wlan_bss_list
module. The module allows us to fingerprint the location and other necessary information about the Wi-Fi networks around the target, as shown in the following screenshot:

Gathering Wi-Fi passwords with Metasploit
Similar to the preceding module, we have the wlan_profile
module, which collects all saved credentials for the Wi-Fi from the target system. We can use the module as follows:

We can see the name of the network in the <name>
tag, and the password in the <keyMaterial>
tag in the preceding screenshot.
Getting the applications list
Metasploit offers credential harvesters for various types of application; however, to figure out which apps are installed...