Bug fix on creation of reports folder

This commit is contained in:
TrustedSec 2013-04-25 09:53:32 -04:00
parent e9198421c2
commit 35d9dcdb70
3 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,10 @@
~~~~~~~~~~~~~~~~
version 5.0.9
~~~~~~~~~~~~~~~~
* fixed a bug that would cause the X10 paths to go to the wrong folder ~/.setreports vs. ~/.set/reports
* added a create reports directory upon entering the Powershell attack vectors
~~~~~~~~~~~~~~~~
version 5.0.8
~~~~~~~~~~~~~~~~

View file

@ -867,7 +867,7 @@ try:
if not os.path.isdir(setdir + "/reports/arduino_sniffers"):
os.makedirs(setdir + "/reports/arduino_sniffers")
shutil.copyfile("src/teensy/x10/x10_sniffer.pde", setdir + "/reports/arduino_sniffer")
shutil.copyfile("src/teensy/x10/libraries.zip", setdir + "reports/arduino_sniffer/")
shutil.copyfile("src/teensy/x10/libraries.zip", setdir + "/reports/arduino_sniffer/")
print_status("Arduino sniffer files and libraries exported to ~/.set/reports/arduino_sniffer")
return_continue()

View file

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