Skip to content

Commit

Permalink
Use wbscript to run files detected as vbe (#833)
Browse files Browse the repository at this point in the history
  • Loading branch information
msm-code authored Nov 15, 2023
1 parent dce70d4 commit edbbbfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drakrun/drakrun/sample_startup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def get_sample_startup_command(extension, sample, file_path):
start_command = "powershell.exe -executionpolicy bypass -File %f"
elif is_office_file(extension):
start_command = get_office_file_startup_command(extension, file_path)
elif extension in ["js", "jse", "vbs"]:
elif extension in ["js", "jse", "vbs", "vbe"]:
start_command = "wscript.exe %f"
elif extension in ["hta", "html", "htm"]:
start_command = "mshta.exe %f"
Expand Down

0 comments on commit edbbbfa

Please sign in to comment.