Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cyberbattle/simulation/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ class NodeInfo:
# Properties of the nodes, some of which can imply further vulnerabilities
properties: List[PropertyName] = dataclasses.field(default_factory=list)
# Fireall configuration of the node
firewall: FirewallConfiguration = FirewallConfiguration()
firewall: FirewallConfiguration = dataclasses.field(default_factory=FirewallConfiguration)
# Attacker agent installed on the node? (aka the node is 'pwned')
agent_installed: bool = False
# Esclation level
Expand Down
Loading