forked from p15670423/monkey
Rename {windows,linux}_dir to *_target_dir for consistency
This commit is contained in:
parent
9a58d5bc7a
commit
946641f9a2
|
@ -28,14 +28,16 @@ class RansomwarePayload:
|
|||
|
||||
target_directories = config["encryption"]["directories"]
|
||||
LOG.info(
|
||||
f"Windows dir configured for encryption is \"{target_directories['windows_dir']}\""
|
||||
"Windows dir configured for encryption is " + target_directories["windows_target_dir"]
|
||||
)
|
||||
LOG.info(
|
||||
f"Linux dir configured for encryption is \"{target_directories['linux_target_dir']}\""
|
||||
)
|
||||
LOG.info(f"Linux dir configured for encryption is \"{target_directories['linux_dir']}\"")
|
||||
|
||||
self._target_dir = (
|
||||
target_directories["windows_dir"]
|
||||
target_directories["windows_target_dir"]
|
||||
if is_windows_os()
|
||||
else target_directories["linux_dir"]
|
||||
else target_directories["linux_target_dir"]
|
||||
)
|
||||
|
||||
self._readme_enabled = config["other_behaviors"]["readme"]
|
||||
|
|
|
@ -17,7 +17,7 @@ RANSOMWARE = {
|
|||
"title": "Directories to encrypt",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"linux_dir": {
|
||||
"linux_target_dir": {
|
||||
"title": "Linux target directory",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
|
@ -25,7 +25,7 @@ RANSOMWARE = {
|
|||
"used to safely simulate the encryption behavior of ransomware. If no "
|
||||
"directory is specified, no files will be encrypted.",
|
||||
},
|
||||
"windows_dir": {
|
||||
"windows_target_dir": {
|
||||
"title": "Windows target directory",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
|
|
|
@ -35,8 +35,8 @@ def ransomware_payload_config(ransomware_target):
|
|||
"encryption": {
|
||||
"enabled": True,
|
||||
"directories": {
|
||||
"linux_dir": str(ransomware_target),
|
||||
"windows_dir": str(ransomware_target),
|
||||
"linux_target_dir": str(ransomware_target),
|
||||
"windows_target_dir": str(ransomware_target),
|
||||
},
|
||||
},
|
||||
"other_behaviors": {"readme": False},
|
||||
|
|
Loading…
Reference in New Issue