Metasploid: Introduction - TryHackMe Write-up

Info
- Name: Metasploit: Introduction
- Description: An introduction to the main components of the Metasploit Framework.
- Difficulty: Easy
- Room link: https://tryhackme.com/room/metasploitintro
Write-up
Task 2
Q: What is the name of the code taking advantage of a flaw on the target system?
A: Exploit
Q: What is the name of the code that runs on the target system to achieve the attacker's goal?
A: Payload
Q: What are self-contained payloads called?
A: Singles
Q: Is "windows/x64/pingback_reverse_tcp" among singles or staged payload?
A: Singles
Task 3
Q: How would you search for a module related to Apache?
A: search apache
Q: Who provided the auxiliary/scanner/ssh/ssh_login module?
A:
Task 4
Q: How would you set the LPORT value to 6666?
A: set LPORT 6666
Q: How would you set the global value for RHOSTS to 10.10.19.23 ?
A: set RHOSTS 10.10.19.23
Q: What command would you use to clear a set payload?
A: unset payload
Q: What command do you use to proceed with the exploitation phase?
A: exploit



