Exploring the msfconsole
We have already covered some basics of Metasploit in the previous chapters. In this recipe, you will learn some techniques to use meterpreter and Metasploit for more efficient exploitation.
How to do it...
To learn about Metasploit follow the given steps:
- Let's start the Metasploit console, by typing
msfconsole
: Â
- To see the list of exploits available, we use the following command:
show exploits
The following screenshot shows the output for the preceding command:
- Similarly, in order to see the list of payloads, we use the following command:
show payloads
The following screenshot shows the output for the preceding command:
- Metasploit also comes with hundreds of auxiliary modules that contain scanners, fuzzers, sniffers, and so on. To see the auxiliary, we use the following command:
show auxiliary
The following screenshot shows the output for the preceding command:
- Let's use an FTP fuzzer with the following command:
use auxiliary/fuzzers/ftp/ftp_client_ftp...