Island: Use Tuple[SocketAddress] for tcp_connections
There are serialization issues when using FrozenSet because pydantic converts the SocketAddress to a dict, which is not hashable. There are probably ways to work around this, but it's not worth the effort at thsi time. If performance becomes an issue (doubtful) we can revisit using a frozenset instead.
This commit is contained in:
parent
8799a60f47
commit
10e3c97489
|
@ -1,4 +1,4 @@
|
||||||
from typing import FrozenSet, Mapping
|
from typing import FrozenSet, Mapping, Tuple
|
||||||
|
|
||||||
from pydantic import Field
|
from pydantic import Field
|
||||||
from typing_extensions import TypeAlias
|
from typing_extensions import TypeAlias
|
||||||
|
@ -26,5 +26,5 @@ class Node(MutableInfectionMonkeyBaseModel):
|
||||||
connections: NodeConnections
|
connections: NodeConnections
|
||||||
"""All outbound connections from this node to other machines"""
|
"""All outbound connections from this node to other machines"""
|
||||||
|
|
||||||
tcp_connections: Mapping[MachineID, FrozenSet[SocketAddress]] = {}
|
tcp_connections: Mapping[MachineID, Tuple[SocketAddress, ...]] = {}
|
||||||
"""All successfull outbound TCP connections"""
|
"""All successfull outbound TCP connections"""
|
||||||
|
|
|
@ -2,6 +2,7 @@ from typing import MutableSequence
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
|
from common.types import SocketAddress
|
||||||
from monkey_island.cc.models import CommunicationType, Node
|
from monkey_island.cc.models import CommunicationType, Node
|
||||||
|
|
||||||
|
|
||||||
|
@ -11,13 +12,21 @@ def test_constructor():
|
||||||
6: frozenset((CommunicationType.SCANNED,)),
|
6: frozenset((CommunicationType.SCANNED,)),
|
||||||
7: frozenset((CommunicationType.SCANNED, CommunicationType.EXPLOITED)),
|
7: frozenset((CommunicationType.SCANNED, CommunicationType.EXPLOITED)),
|
||||||
}
|
}
|
||||||
|
tcp_connections = {
|
||||||
|
6: tuple(
|
||||||
|
(SocketAddress(ip="192.168.1.1", port=80), SocketAddress(ip="192.168.1.1", port=443))
|
||||||
|
),
|
||||||
|
7: tuple((SocketAddress(ip="192.168.1.2", port=22),)),
|
||||||
|
}
|
||||||
n = Node(
|
n = Node(
|
||||||
machine_id=1,
|
machine_id=machine_id,
|
||||||
connections=connections,
|
connections=connections,
|
||||||
|
tcp_connections=tcp_connections,
|
||||||
)
|
)
|
||||||
|
|
||||||
assert n.machine_id == machine_id
|
assert n.machine_id == machine_id
|
||||||
assert n.connections == connections
|
assert n.connections == connections
|
||||||
|
assert n.tcp_connections == tcp_connections
|
||||||
|
|
||||||
|
|
||||||
def test_serialization():
|
def test_serialization():
|
||||||
|
@ -27,9 +36,12 @@ def test_serialization():
|
||||||
"6": [CommunicationType.CC.value, CommunicationType.SCANNED.value],
|
"6": [CommunicationType.CC.value, CommunicationType.SCANNED.value],
|
||||||
"7": [CommunicationType.EXPLOITED.value, CommunicationType.CC.value],
|
"7": [CommunicationType.EXPLOITED.value, CommunicationType.CC.value],
|
||||||
},
|
},
|
||||||
|
"tcp_connections": {
|
||||||
|
"6": [{"ip": "192.168.1.1", "port": 80}, {"ip": "192.168.1.1", "port": 443}],
|
||||||
|
"7": [{"ip": "192.168.1.2", "port": 22}],
|
||||||
|
},
|
||||||
}
|
}
|
||||||
# "6": frozenset((CommunicationType.CC, CommunicationType.SCANNED)),
|
|
||||||
# "7": frozenset((CommunicationType.EXPLOITED, CommunicationType.CC)),
|
|
||||||
n = Node(**node_dict)
|
n = Node(**node_dict)
|
||||||
|
|
||||||
serialized_node = n.dict(simplify=True)
|
serialized_node = n.dict(simplify=True)
|
||||||
|
@ -44,6 +56,8 @@ def test_serialization():
|
||||||
for key, value in serialized_node["connections"].items():
|
for key, value in serialized_node["connections"].items():
|
||||||
assert set(value) == set(node_dict["connections"][key])
|
assert set(value) == set(node_dict["connections"][key])
|
||||||
|
|
||||||
|
assert serialized_node["tcp_connections"] == node_dict["tcp_connections"]
|
||||||
|
|
||||||
|
|
||||||
def test_machine_id_immutable():
|
def test_machine_id_immutable():
|
||||||
n = Node(machine_id=1, connections={})
|
n = Node(machine_id=1, connections={})
|
||||||
|
|
Loading…
Reference in New Issue