From 2f92a8309263ee900e9fc8688ae7eb04186e3ca0 Mon Sep 17 00:00:00 2001 From: HD Moore Date: Thu, 20 Nov 2014 14:53:36 -0600 Subject: [PATCH] Change to example.com as the default domain --- lib/msf/core/exploit/smtp.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/msf/core/exploit/smtp.rb b/lib/msf/core/exploit/smtp.rb index f8d72879f9..1259d577fe 100644 --- a/lib/msf/core/exploit/smtp.rb +++ b/lib/msf/core/exploit/smtp.rb @@ -24,8 +24,8 @@ module Exploit::Remote::Smtp [ Opt::RHOST, Opt::RPORT(25), - OptString.new('MAILFROM', [ true, 'FROM address of the e-mail', 'zombie@brains.net']), - OptString.new('MAILTO', [ true, 'TO address of the e-mail', 'human@ahhhzombies111.net']), + OptString.new('MAILFROM', [ true, 'FROM address of the e-mail', 'sender@example.com']), + OptString.new('MAILTO', [ true, 'TO address of the e-mail', 'target@example.com']), ], Msf::Exploit::Remote::Smtp) register_autofilter_ports([ 25, 465, 587, 2525, 25025, 25000]) register_autofilter_services(%W{ smtp smtps})