mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2024-11-23 21:13:05 +00:00
Bug fix on creation of reports folder
This commit is contained in:
parent
e9198421c2
commit
35d9dcdb70
3 changed files with 9 additions and 2 deletions
|
@ -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
|
||||
~~~~~~~~~~~~~~~~
|
||||
|
|
|
@ -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()
|
||||
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue