Fixed a bug that caused FROM address to not be valid in event sendmail was used

This commit is contained in:
TrustedSec 2013-12-30 20:25:09 -05:00
parent 5df22ba24b
commit 677b791f1f
3 changed files with 14 additions and 1 deletions

View file

@ -1,3 +1,15 @@
~~~~~~~~~~~~~~~~
version 5.4.3
~~~~~~~~~~~~~~~~
* Fixed a from address bug when sending emails through an open relay
~~~~~~~~~~~~~~~~
version 5.4.3
~~~~~~~~~~~~~~~~
* Re-added database support for msfconsole, originally -n was specified to speed up load times, this is no longer needed and causes confusion
~~~~~~~~~~~~~~~~
version 5.4.2
~~~~~~~~~~~~~~~~

View file

@ -229,7 +229,7 @@ def print_error(message):
print bcolors.RED + bcolors.BOLD + "[!] " + bcolors.ENDC + bcolors.RED + str(message) + bcolors.ENDC
def get_version():
define_version = '5.4.3'
define_version = '5.4.4'
return define_version
class create_menu:

View file

@ -153,6 +153,7 @@ if option1 != "99":
# Specify Open-Relay Option Here
if relay == '2':
user1 = raw_input(setprompt(["1"], "From address (ex: moo@example.com)"))
user = user1
from_address = raw_input(setprompt(["1"], "The FROM NAME the user will see"))
if sendmail==0:
user = raw_input(setprompt(["1"], "Username for open-relay [blank]"))