metasploit-framework/features/commands/help.feature

80 lines
3.9 KiB
Gherkin
Raw Normal View History

2014-08-13 21:54:29 +00:00
Feature: Help command
Background:
Given I run `msfconsole --defer-module-loads -x help -x exit`
Scenario: The 'help' command's output
2014-08-13 21:54:29 +00:00
Then the output should contain:
"""
Core Commands
=============
Command Description
------- -----------
? Help menu
2015-10-30 20:17:15 +00:00
advanced Displays advanced options for one or more modules
2014-08-13 21:54:29 +00:00
back Move back from the current context
banner Display an awesome metasploit banner
cd Change the current working directory
color Toggle color
connect Communicate with a host
edit Edit the current module with $VISUAL or $EDITOR
exit Exit the console
2015-01-28 18:59:51 +00:00
get Gets the value of a context-specific variable
getg Gets the value of a global variable
2014-08-13 21:54:29 +00:00
grep Grep the output of another command
help Help menu
2015-10-30 19:34:34 +00:00
info Displays information about one or more modules
2014-08-13 21:54:29 +00:00
irb Drop into irb scripting mode
jobs Displays and manages jobs
kill Kill a job
load Load a framework plugin
loadpath Searches for and loads modules from a path
makerc Save commands entered since start to a file
2015-10-30 20:17:15 +00:00
options Displays global options or for one or more modules
2014-08-13 21:54:29 +00:00
popm Pops the latest module off the stack and makes it active
previous Sets the previously loaded module as the current module
pushm Pushes the active or list of modules onto the module stack
quit Exit the console
reload_all Reloads all modules from all defined module paths
2015-02-21 03:23:02 +00:00
rename_job Rename a job
2014-08-13 21:54:29 +00:00
resource Run the commands stored in a file
route Route traffic through a session
save Saves the active datastores
search Searches module names and descriptions
sessions Dump session listings and display information about sessions
2015-01-27 19:58:54 +00:00
set Sets a context-specific variable to a value
2014-08-13 21:54:29 +00:00
setg Sets a global variable to a value
show Displays modules of a given type, or all modules
sleep Do nothing for the specified number of seconds
spool Write console output into a file as well the screen
threads View and manipulate background threads
unload Unload a framework plugin
2015-01-27 19:58:54 +00:00
unset Unsets one or more context-specific variables
2014-08-13 21:54:29 +00:00
unsetg Unsets one or more global variables
use Selects a module by name
version Show the framework and console library version numbers
Database Backend Commands
=========================
Command Description
------- -----------
creds List all credentials in the database
db_connect Connect to an existing database
db_disconnect Disconnect from the current database instance
db_export Export a file containing the contents of the database
db_import Import a scan result file (filetype will be auto-detected)
db_nmap Executes nmap and records the output automatically
db_rebuild_cache Rebuilds the database-stored module cache
db_status Show the current database status
hosts List all hosts in the database
loot List all loot in the database
notes List all notes in the database
services List all services in the database
vulns List all vulnerabilities in the database
workspace Switch between database workspaces
"""