mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2025-04-04 06:46:08 +00:00
Fixed a bug that caused FROM address to not be valid in event sendmail was used
This commit is contained in:
parent
5df22ba24b
commit
677b791f1f
3 changed files with 14 additions and 1 deletions
|
@ -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
|
||||
~~~~~~~~~~~~~~~~
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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]"))
|
||||
|
|
Loading…
Add table
Reference in a new issue