diff --git a/monkey/common/data/zero_trust_consts.py b/monkey/common/data/zero_trust_consts.py index 7135485da..8d55bc320 100644 --- a/monkey/common/data/zero_trust_consts.py +++ b/monkey/common/data/zero_trust_consts.py @@ -57,7 +57,7 @@ PRINCIPLES = { PRINCIPLE_ENDPOINT_SECURITY: "Use anti-virus and other traditional endpoint security solutions.", PRINCIPLE_DATA_TRANSIT: "Secure data at transit by encrypting it.", PRINCIPLE_RESTRICTIVE_NETWORK_POLICIES: "Configure network policies to be as restrictive as possible.", - PRINCIPLE_USERS_MAC_POLICIES: "Users' permissions to the network and to resources should be MAC (Mandetory " + PRINCIPLE_USERS_MAC_POLICIES: "Users' permissions to the network and to resources should be MAC (Mandatory " "Access Control) only.", } diff --git a/monkey/common/utils/mongo_utils.py b/monkey/common/utils/mongo_utils.py index 4c5a7f669..0dd610b01 100644 --- a/monkey/common/utils/mongo_utils.py +++ b/monkey/common/utils/mongo_utils.py @@ -24,7 +24,7 @@ class MongoUtils: return o elif isinstance(o, str): - # mongo dosn't like unprintable chars, so we use repr :/ + # mongo doesn't like unprintable chars, so we use repr :/ return repr(o) elif hasattr(o, "__class__") and o.__class__ == wmi._wmi_object: @@ -32,7 +32,7 @@ class MongoUtils: elif hasattr(o, "__class__") and o.__class__ == win32com.client.CDispatch: try: - # objectSid property of ds_user is problematic and need thie special treatment. + # objectSid property of ds_user is problematic and need this special treatment. # ISWbemObjectEx interface. Class Uint8Array ? if str(o._oleobj_.GetTypeInfo().GetTypeAttr().iid) == "{269AD56A-8A67-4129-BC8C-0506DCFE9880}": return o.Value diff --git a/monkey/infection_monkey/exploit/shellshock.py b/monkey/infection_monkey/exploit/shellshock.py index 4c4c9eff0..db3347c66 100644 --- a/monkey/infection_monkey/exploit/shellshock.py +++ b/monkey/infection_monkey/exploit/shellshock.py @@ -86,7 +86,7 @@ class ShellShockExploiter(HostExploiter): LOG.info("SSH Skipping unknown os: %s", uname_os) return False except Exception as exc: - LOG.debug("Error running uname os commad on victim %r: (%s)", self.host, exc) + LOG.debug("Error running uname os command on victim %r: (%s)", self.host, exc) return False if not self.host.os.get('machine'): try: @@ -95,7 +95,7 @@ class ShellShockExploiter(HostExploiter): if '' != uname_machine: self.host.os['machine'] = uname_machine.lower().strip() except Exception as exc: - LOG.debug("Error running uname machine commad on victim %r: (%s)", self.host, exc) + LOG.debug("Error running uname machine command on victim %r: (%s)", self.host, exc) return False # copy the monkey diff --git a/monkey/infection_monkey/exploit/sshexec.py b/monkey/infection_monkey/exploit/sshexec.py index 3966a7330..f13841785 100644 --- a/monkey/infection_monkey/exploit/sshexec.py +++ b/monkey/infection_monkey/exploit/sshexec.py @@ -129,7 +129,7 @@ class SSHExploiter(HostExploiter): LOG.info("SSH Skipping unknown os: %s", uname_os) return False except Exception as exc: - LOG.debug("Error running uname os commad on victim %r: (%s)", self.host, exc) + LOG.debug("Error running uname os command on victim %r: (%s)", self.host, exc) return False if not self.host.os.get('machine'): @@ -139,7 +139,7 @@ class SSHExploiter(HostExploiter): if '' != uname_machine: self.host.os['machine'] = uname_machine except Exception as exc: - LOG.debug("Error running uname machine commad on victim %r: (%s)", self.host, exc) + LOG.debug("Error running uname machine command on victim %r: (%s)", self.host, exc) if self.skip_exist: _, stdout, stderr = ssh.exec_command("head -c 1 %s" % self._config.dropper_target_path_linux) diff --git a/monkey/monkey_island/cc/models/monkey.py b/monkey/monkey_island/cc/models/monkey.py index ad10084d9..adaca4922 100644 --- a/monkey/monkey_island/cc/models/monkey.py +++ b/monkey/monkey_island/cc/models/monkey.py @@ -32,7 +32,7 @@ class Monkey(Document): ip_addresses = ListField(StringField()) keepalive = DateTimeField() modifytime = DateTimeField() - # TODO make "parent" an embedded document, so this can be removed and the schema explained (and validated) verbosly. + # TODO make "parent" an embedded document, so this can be removed and the schema explained (and validated) verbosely. # This is a temporary fix, since mongoengine doesn't allow for lists of strings to be null # (even with required=False of null=True). # See relevant issue: https://github.com/MongoEngine/mongoengine/issues/1904 diff --git a/monkey/monkey_island/cc/services/config_schema.py b/monkey/monkey_island/cc/services/config_schema.py index 367c281f7..b0378fc5c 100644 --- a/monkey/monkey_island/cc/services/config_schema.py +++ b/monkey/monkey_island/cc/services/config_schema.py @@ -576,7 +576,7 @@ SCHEMA = { "default": True, "description": "Determines whether the monkey should retry exploiting machines" - " it didn't successfuly exploit on previous iterations" + " it didn't successfully exploit on previous iterations" } } } @@ -713,7 +713,7 @@ SCHEMA = { "type": "boolean", "default": True, "description": - "Determines whether the dropper should try to move itsel instead of copying itself" + "Determines whether the dropper should try to move itself instead of copying itself" " to target path" } }