Skip to content

security-cheatsheet/metasploit-cheat-sheet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Metasploit Cheat Sheet

The Metasploit Project is a computer security project that provides information on vulnerabilities, helping in the development of penetration tests and IDS signatures.

Metasploit :
Search for module:
msf > search [regex] 
Specify and exploit to use:
msf > use exploit/[ExploitPath] 
Specify a Payload to use:
msf > set PAYLOAD [PayloadPath] 
Show options for the current modules:
msf > show options 
Set options:
msf > set [Option] [Value] 
Start exploit:
msf > exploit 
Useful Auxiliary Modules
Port Scanner:
msf > use auxiliary/scanner/portscan/tcp msf > set RHOSTS 10.10.10.0/24 msf > run 
DNS Enumeration:
msf > use auxiliary/gather/dns_enum msf > set DOMAIN target.tgt msf > run 
FTP Server:
msf > use auxiliary/server/ftp msf > set FTPROOT /tmp/ftproot msf > run 
Proxy Server:
msf > use auxiliary/server/socks4 msf > run