fix outfile bug issue on pdf exe

This commit is contained in:
TrustedSec 2016-05-06 10:38:59 -04:00
parent 3564b286f7
commit a70947691a
3 changed files with 9 additions and 8 deletions

View file

@ -1,3 +1,9 @@
~~~~~~~~~~~~~~~~
version 7.1.1
~~~~~~~~~~~~~~~~
* fixes an issue when generating PDF exes that would cause an outfile error
~~~~~~~~~~~~~~~~
version 7.1
~~~~~~~~~~~~~~~~

View file

@ -16,6 +16,7 @@ me = mod_name()
definepath = os.getcwd()
define_version = get_version()
users_home = os.getenv("HOME")
outfile = ("template.pdf")
# metasploit path
meta_path = meta_path()

View file

@ -260,7 +260,7 @@ def print_error(message):
def get_version():
define_version = '7.1'
define_version = '7.1.1'
return define_version
class create_menu:
@ -892,7 +892,7 @@ def show_banner(define_version, graphic):
print(bcolors.BLUE + """
[---] The Social-Engineer Toolkit (""" + bcolors.YELLOW + """SET""" + bcolors.BLUE + """) [---]
[---] Created by:""" + bcolors.RED + """ David Kennedy """ + bcolors.BLUE + """(""" + bcolors.YELLOW + """ReL1K""" + bcolors.BLUE + """) [---]
[---] Version: """ + bcolors.RED + """%s""" % (define_version) + bcolors.BLUE + """ [---]
[---] Version: """ + bcolors.RED + """%s""" % (define_version) + bcolors.BLUE + """ [---]
[---] Codename: '""" + bcolors.YELLOW + """Blue Steel""" + bcolors.ENDC + bcolors.BLUE + """' [---]
[---] Follow us on Twitter: """ + bcolors.PURPLE + """@TrustedSec""" + bcolors.BLUE + """ [---]
[---] Follow me on Twitter: """ + bcolors.PURPLE + """@HackingDave""" + bcolors.BLUE + """ [---]
@ -1625,8 +1625,6 @@ class DNSQuery:
return packet
# main dns routine
def dns():
udps = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
udps.bind(('', 53))
@ -1642,14 +1640,10 @@ def dns():
udps.close()
# start dns
def start_dns():
thread.start_new_thread(dns, ())
# the main ~./set path for SET
def setdir():
if check_os() == "posix":
return os.path.join(os.path.expanduser('~'), '.set')