Explanation:
RCPT TO is an SMTP command used to verify the email address of a recipient during the SMTP conversation. This command is used to check if an email address exists on the server. If the email address exists, the server responds with a 250 status code; otherwise, it responds with a 550 status code.
VRFY is an SMTP command used to verify the existence of a particular user account on the server. If the user account exists, the server responds with a 250 status code, which indicates that the user account is valid; otherwise, it responds with a 550 status code, which indicates that the user account is invalid.
By using the combination of RCPT TO and VRFY commands, the penetration tester can enumerate all the user accounts on the SMTP server and verify if they are still active or not.