x32x01
ADMINISTRATOR
The Metasploit framework is well known in the realm of exploit development. It is a standalone tool for security researchers, penetration testers and IDS/IPS developers. As of now, it has 1700+ exploit definitions and 215 payloads for injection – a huge database.
Metasploit is a great tool, and it allows you to not only do some cool things, but being able to do those cool things in a useful way. Once you got the meterpreter session, use “shell” command to get the command prompt of the target machine. Here are the list of commands which you can try after gaining the session.
- netsh wlan show networks mode=bssid
- netsh wlan show profiles
- netsh wlan show drivers
- netsh wlan disconnect
- netsh wlan connect name=Chandigarh
- netsh wlan export profile name=Chandigarh
- netsh wlan show blockednetworks


Code:
netsh wlan show profiles

You can also view the detailed information about the installed wireless drivers by typing “netsh wlan show drivers“.


With the command line, you can directly connect to any network by typing “netsh wlan connect name=Chandigarh“.

Code:
netsh wlan export profile name=Chandigarh

