mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2025-02-17 05:48:46 +00:00
Updated to fix multiple Arduino bugs
This commit is contained in:
parent
d3b1940f13
commit
97d1a35fdf
4 changed files with 11 additions and 5 deletions
|
@ -1,3 +1,10 @@
|
|||
~~~~~~~~~~~~~~~~
|
||||
version 5.4.5
|
||||
~~~~~~~~~~~~~~~~
|
||||
|
||||
* fixed a bug in generating Arduino powershell injection would cause setdir to not be defined (bug ticket #44)
|
||||
* fixed a bug in generating x10 Arduino blackout devices
|
||||
|
||||
~~~~~~~~~~~~~~~~
|
||||
version 5.4.4
|
||||
~~~~~~~~~~~~~~~~
|
||||
|
|
|
@ -864,8 +864,8 @@ try:
|
|||
# if we are doing the X10 Arduino Sniffer
|
||||
if teensy_menu_choice == "10":
|
||||
print_status("Generating the Arduino sniffer and libraries pde..")
|
||||
if not os.path.isdir(setdir + "/reports/arduino_sniffers"):
|
||||
os.makedirs(setdir + "/reports/arduino_sniffers")
|
||||
if not os.path.isdir(setdir + "/reports/arduino_sniffer"):
|
||||
os.makedirs(setdir + "/reports/arduino_sniffer")
|
||||
shutil.copyfile("src/teensy/x10/x10_sniffer.pde", setdir + "/reports/arduino_sniffer/x10_sniffer.pde")
|
||||
shutil.copyfile("src/teensy/x10/libraries.zip", setdir + "/reports/arduino_sniffer/libraries.zip")
|
||||
print_status("Arduino sniffer files and libraries exported to ~/.set/reports/arduino_sniffer")
|
||||
|
|
|
@ -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.4'
|
||||
define_version = '5.4.5'
|
||||
return define_version
|
||||
|
||||
class create_menu:
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#!/usr/bin/python
|
||||
import pexpect
|
||||
from src.core.setcore import yesno_prompt
|
||||
from src.core import *
|
||||
from src.core.setcore import *
|
||||
|
||||
print """
|
||||
The powershell - shellcode injection leverages powershell to send a meterpreter session straight into memory without ever touching disk.
|
||||
|
|
Loading…
Add table
Reference in a new issue