To view the options for a specific module in Metasploit, you can use the show options command after selecting the module. Here’s how you can do it:
-
Start the Metasploit console:
cd ~ msfconsole -
Select the module you are interested in. For example:
use auxiliary/analyze/jtr_linux -
Then, display the available options for that module:
show options
This command will list all the configurable options and their descriptions for the selected module.
