Commit Graph

10718 Commits

Author SHA1 Message Date
Ilija Lazoroski 9a3afb051d Agent: Use IPv4Address for RelayUser.address 2022-09-01 12:10:21 +02:00
Ilija Lazoroski 1d394bbd2e Agent: Fix docstrings in TCPRelay 2022-09-01 11:39:25 +02:00
Ilija Lazoroski d478e99227 Agent: Make TCPRelay non-optional in ExploitInterceptingTelemetryMessenger 2022-09-01 11:29:03 +02:00
Ilija Lazoroski ecdf04a85e Agent: Change relay control message
'-' to 'infection-monkey-relay-control-message: -'
2022-09-01 10:35:29 +02:00
Ilija Lazoroski 94fba0fdf0 Agent: Rename RelayUser.time to last_update_time 2022-09-01 10:17:13 +02:00
Ilija Lazoroski 302cdaac70 Agent: Use event.wait() when running TCPRelay 2022-09-01 09:57:46 +02:00
Mike Salvatore 453f45e403
Merge pull request #2232 from guardicore/2218-get-network-interfaces
2218 get network interfaces
2022-08-31 15:54:13 -04:00
Kekoa Kaaikala a954df3ed8 Agent: Replace get_local_network_interfaces
Replaced get_local_network_interfaces() with get_network_interfaces()
2022-08-31 19:25:42 +00:00
Mike Salvatore 973a82e087 Merge branch 'machine-repository' into develop
PR #2228
2022-08-31 10:54:54 -04:00
Mike Salvatore ba7dab26d7 Island: Refactor how Machine objects are managed by IMachineRepository
- Replace `create_machine()` with `get_new_id()`
- Replace `update_machine()` with `upsert_machine()`

Benefits:
    The repository doesn't store Machine objects that only have the ID
    populated (unless that is the caller's desire).

    Upsert instead of update allows the interface to be more permissive.
2022-08-31 10:17:20 -04:00
Kekoa Kaaikala 31ff85ad3c Agent: Add timeout to wait for pending clients 2022-08-31 13:51:54 +00:00
Kekoa Kaaikala 4b5d93beb0 Agent: Add disconnect protocol to TCPRelay 2022-08-31 12:06:13 +00:00
Kekoa Kaaikala cd0b3077cf Agent: Notify TCPRelay of exploit 2022-08-30 21:31:06 +00:00
Kekoa Kaaikala 9425a9463a Agent: Track relay users in TCPRelay 2022-08-30 20:53:16 +00:00
Kekoa Kaaikala 79d5b8bed1 Agent: Add TCPRelay class 2022-08-30 20:08:54 +00:00
Kekoa Kaaikala b10327af5c Agent: Register agent interfaces 2022-08-30 15:36:30 +00:00
Mike Salvatore 4cbefedad2
Merge pull request #2222 from guardicore/2135-use-ipaddress
2135 use ipaddress
2022-08-30 10:04:21 -04:00
Kekoa Kaaikala 70a9251c5b Agent: Fix type hints 2022-08-30 13:44:32 +00:00
Mike Salvatore 81128a4842 Island: Don't use Field() for simple defaults in Machine 2022-08-30 09:34:17 -04:00
Mike Salvatore b538842e84 Island: Remove display_name from MongoMachineRepository._find_one() 2022-08-30 09:32:47 -04:00
Kekoa Kaaikala fedfe4e45d Agent: Use str(interface) instead of building string 2022-08-30 11:58:57 +00:00
Kekoa Kaaikala e6663747eb Agent: Use IPv4Interface's string 2022-08-30 11:36:51 +00:00
Kekoa Kaaikala 2b55c35a65 Agent: Use str() instead of .compressed 2022-08-30 11:36:51 +00:00
Kekoa Kaaikala 01c508e248 Agent: Replace NetworkInterface with IPv4Interface 2022-08-30 11:36:51 +00:00
Kekoa Kaaikala f31ba824c6 UT: Fix tests 2022-08-30 11:36:51 +00:00
Kekoa Kaaikala d8beba17fd Agent: Update NetworkInterface to be IPv4Interface 2022-08-30 11:36:51 +00:00
Kekoa Kaaikala 75ba889f57 Agent: Fix typing issues 2022-08-30 11:36:51 +00:00
Kekoa Kaaikala 06ae6a8b90 Project: Add ipaddress types for mypy 2022-08-30 11:36:51 +00:00
Mike Salvatore bf5e54ebc9 Island: Raise RemovalError from IMachineRepository.reset() 2022-08-30 07:34:20 -04:00
Mike Salvatore 383cfdfefe Island: Rename `id_` parameter to `machine_id` in IMachineRepository 2022-08-30 07:30:41 -04:00
Mike Salvatore 0adf9d8467 Island: Add MongoMachineRepository 2022-08-30 05:03:47 -04:00
Mike Salvatore 1383332d33 Merge branch 'machine-model-defaults' into machine-repository 2022-08-29 20:31:44 -04:00
Mike Salvatore 5713d1c99b UT: Add test_hardware_id_default() 2022-08-29 20:30:07 -04:00
Mike Salvatore ac1cda40a8 Island: Add default value for Machine.hostname 2022-08-29 20:27:57 -04:00
Mike Salvatore 5d51b40475 Island: Add default value for Machine.operating_system_version 2022-08-29 20:26:11 -04:00
Mike Salvatore 3e2244cd62 UT: Add test_operating_system_default_value() 2022-08-29 20:26:11 -04:00
Mike Salvatore 40601b955c Island: Add default value for Machine.network_interfaces 2022-08-29 20:26:05 -04:00
Mike Salvatore da8ed9e6db Island: Fix ICredentialsRepository import in MongoCredentialsRepository 2022-08-29 19:35:04 -04:00
Mike Salvatore 10d8d8e756 Island: Use MONGO_OBJECT_ID_KEY in MongoCredentialsRepository 2022-08-29 19:32:40 -04:00
Mike Salvatore bf6125dd55 Island: Add MONGO_OBJECT_ID_KEY 2022-08-29 19:31:35 -04:00
Mike Salvatore 3eda8d640d Island: Export IMachineRepository from repository package 2022-08-29 19:27:17 -04:00
Mike Salvatore da752e041b Project: Exclude vulture_allowlist.py from mypy checks 2022-08-29 19:27:17 -04:00
Mike Salvatore eb3fe21b11 Island: Redefine IMachineRepository 2022-08-29 19:27:14 -04:00
Mike Salvatore 4c03c8aae9 Island: Import TypeAlias from typing_extensions 2022-08-29 19:13:23 -04:00
Mike Salvatore c73a29c1b7 Common: Import TypeAlias from typing_extensions 2022-08-29 19:13:03 -04:00
Mike Salvatore e98086e3d1 Project: Exclude vulture_allowlist.py from mypy checks 2022-08-29 15:46:29 -04:00
Mike Salvatore 6b083ca61b Island: Remove superfluous "pass" from repository.errors 2022-08-29 15:15:49 -04:00
Mike Salvatore 1de552ea94 Island: Add UnknownRecordError to repository.errors 2022-08-29 15:14:42 -04:00
Mike Salvatore 694cdca883 Island: Make Machine.operating_system Optional 2022-08-29 15:00:45 -04:00
Mike Salvatore ebcfe5a9fc Island: Add docstrings to Machine 2022-08-29 14:35:45 -04:00