12 KiB
12 KiB
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
[Unreleased]
Added
- Random Number Generator Seeding by specifying a random number seed in the config file.
- Implemented Terminal service class, providing a generic terminal simulation.
Changed
- Removed the install/uninstall methods in the node class and made the software manager install/uninstall handle all of their functionality.
[3.2.0] - 2024-07-18
Added
- Action penalty is a reward component that applies a negative reward for doing any action other than DONOTHING
- Application configuration actions for RansomwareScript, DatabaseClient, and DoSBot applications
- Ability to configure how long it takes to apply the service fix action
- Terminal service using SSH
- Airspaces now track the amount of data being transmitted, viewable using the
show_bandwidth_loadmethod - Tests to verify that airspace bandwidth is applied correctly and can be configured via YAML
- Agent logging for agents' internal decision logic
- Action masking in all PrimAITE environments
Changed
- Application registry was moved to the
Applicationclass and now updates automatically when Application is subclassed - Databases can no longer respond to request while performing a backup
- Application install no longer accepts an
ip_addressparameter - Application install action can now be used on all applications
- Actions have additional logic for checking validity
- Frame
sizeattribute now includes both core size and payload size in bytes - The
speedattribute ofNetworkInterfacehas been changed frominttofloat - Tidied up CHANGELOG
- Enhanced
AirSpacelogic to block transmissions that would exceed the available capacity. - Updated
_can_transmitfunction inLinkto account for current load and total bandwidth capacity, ensuring transmissions do not exceed limits.
Fixed
- Links and airspaces can no longer transmit data if this would exceed their bandwidth
[3.1.0] - 2024-06-25
Added
- Observations for traffic amounts on host network interfaces
- NMAP application network discovery, including ping scan and port scan
- NMAP actions
- Automated adding copyright notices to source files
- More file types
showmethod to filesmodel_dumpmethods to network enums to enable better logging
Changed
- Updated file system actions to stop failures when creating duplicate files
- Improved parsing of ACL add rule actions to make some parameters optional
Fixed
- Fixed database client uninstall failing due to persistent connections
- Fixed packet storm when pinging broadcast addresses
[3.0.0] - 2024-06-10
Added
- New simulation module
- Multi agent reinforcement learning support
- File system class to manage files and folders
- Software for nodes that can have its own behaviour
- Software classes to model FTP, Postgres databases, web traffic, NTP
- Much more detailed network simulation including packets, links, and network interfaces
- More node types: host, computer, server, router, switch, wireless router, and firewalls
- Network Hardware - NIC, SwitchPort, Node, and Link. Nodes have fundamental services like ARP, ICMP, and PCAP running them by default.
- Malicious network event detection
- New
gamemodule for managing agents - ACL rule wildcard masking
- Network broadcasting
- Wireless transmission
- More detailed documentation
- Example jupyter notebooks to demonstrate new functionality
- More reward components
- Packet capture logs
- Node system logs
- Per-step full simulation state log
- Attack randomisation with respect to timing and attack source
- Ability to set log level via CLI
- Ability to vary the YAML configuration per-episode
- Developer CLI tools for enhanced debugging (with
primaite dev-mode enable) showfunction to many simulation objects to inspect their current state
Changed
- Decoupled the environment from the simulation by adding the
gameinterface layer - Made agents share a common base class
- Added more actions
- Made all agents use CAOS actions, including red and green agents
- Reworked YAML configuration file schema
- Reworked the reward system to be component-based
- Changed agent logs to create a JSON output instead of CSV with more detailed action information
- Made observation space flattening optional
- Made all logging optional
- Agent actions now provide responses with a success code
Removed
- Legacy simulation modules
- Legacy training modules
- Tests for legacy code
- Hardcoded IERs and PoL, traffic generation is now handled by agents and software
- Inbuilt agent training scripts
[2.0.0] - 2023-07-26
Added
- Command Line Interface (CLI) for easy access and streamlined usage of PrimAITE.
- Application Directories to enable PrimAITE as a Python package with predefined directories for storage.
- Support for Ray Rllib, allowing training of PPO and A2C agents using Stable Baselines3 and Ray RLlib.
- Random Red Agent to train the blue agent against, with options for randomised Red Agent
POLandIER. - Repeatability of sessions through seed settings, and deterministic or stochastic evaluation options.
- Session loading to revisit previously run sessions for SB3 Agents.
- Agent Session Classes (
AgentSessionABCandHardCodedAgentSessionABC) to standardise agent training with a common interface. - Standardised Session Output in a structured format in the user's app sessions directory, providing four types of outputs: Session Metadata, Results, Diagrams, Trained agents.
- Configurable Observation Space managed by the
ObservationHandlerclass for a more flexible observation space setup. - Benchmarking of PrimAITE performance, showcasing session and step durations for reference.
- Documentation overhaul, including automatic API and test documentation with recursive Sphinx auto-summary, using the Furo theme for responsive light/dark theme, and enhanced navigation with
sphinx-code-tabsandsphinx-copybutton.
Changed
- Action Space updated to discrete spaces, introducing a new
ANYaction space option for combinedNODEandACLactions. - Improved
Nodeattribute naming convention for consistency, now adhering toPascal Case. - Package Structure has been refactored for better build, distribution, and installation, with all source code now in the
src/directory, and thePRIMAITEPython package renamed toprimaiteto adhere to PEP-8 Package & Module Names. - Docs and Tests now sit outside the
src/directory. - Non-python files (example config files, Jupyter notebooks, etc.) now sit inside a
*/_package_data/directory in their respective sub-packages. - All dependencies are now defined in the
pyproject.tomlfile. - Introduced individual configuration for the number of episodes and time steps for training and evaluation sessions, with separate config values for each.
- Decoupled the lay down config file from the training config, allowing more flexibility in configuration management.
- Updated
Transactionsto only report pre-action observation, improving the CSV header and providing more human-readable descriptions for columns relating to observations. - Changes to
AccessControlList, where theacldictionary is now a list to accommodate changes to ACL action space and positioning ofACLRulesinside the list to signal their level of priority.
Fixed
- Various bug fixes, including Green IERs separation, correct clearing of links in the reference environment, and proper reward calculation.
- Logic to check if a node is OFF before executing actions on the node by the blue agent, preventing erroneous state changes.
- Improved functionality of Resetting a Node, adding "SHUTTING DOWN" and "BOOTING" operating states for more reliable reset commands.
- Corrected the order of actions in the
Primaiteenv to ensure the blue agent uses the current state for decision-making.
[1.1.1] - 2023-06-27
Fixed
- Fixed bug whereby 'reference' environment links reach bandwidth capacity and are never cleared due to green & red IERs being applied to them. This bug had a knock-on effect that meant IERs were being blocked based on the full capacity of links on the reference environment which was not correct; they should only be based on the link capacity of the 'live' environment. This fix has been addressed by:
- Implementing a reference copy of all green IERs (
self.green_iers_reference). - Clearing the traffic on reference IERs at the same time as the live IERs.
- Passing the
green_iers_referenceto theapply_iersfunction at the reference stage. - Passing the
green_iers_referenceas an additional argument tocalculate_reward_function. - Updating the green IERs section of the
calculate_reward_functionto now take into account both the green reference IERs and live IERs. Thegreen_ier_blockedreward is only applied if the IER is blocked in the live environment but is running in the reference environment. - Re-ordering the actions taken as part of the step function to ensure the blue action happens first before other changes.
- Removing the unnecessary "Reapply PoL and IERs" action from the step function.
- Moving the deep-copy of nodes and links to below the "Implement blue action" stage of the step function.
- Implementing a reference copy of all green IERs (
[1.1.0] - 2023-03-13
Added
- The user can now initiate either a TRAINING session or an EVALUATION (test) session with the Stable Baselines 3 (SB3) agents via the config_main.yaml file. During evaluation/testing, the agent policy will be fixed (no longer learning) and subjected to the SB3
evaluate_policy()function. - The user can choose whether a saved agent is loaded into the session (with reference to a URL) via the
config_main.yamlfile. They specify a Boolean true/false indicating whether a saved agent should be loaded, and specify the URL and file name. - Active and Service nodes now possess a new "File System State" attribute. This attribute is permitted to have the states GOOD, CORRUPT, DESTROYED, REPAIRING, and RESTORING. This new feature affects the following components:
- Blue agent observation space;
- Blue agent action space;
- Reward function;
- Node pattern-of-life.
- The Red Agent node pattern-of-life has been enhanced so that node PoL is triggered by an 'initiator'. The initiator is either DIRECT (state change is applied to the node without any conditions), IER (state change is applied to the node based on IER entry condition), or SERVICE (state change is applied to the node based on a service state condition on the same node or a different node within the network).
- New default config named "config_5_DATA_MANIPULATION.yaml" and associated Training Use Case Profile.
- NodeStateInstruction has been split into
NodeStateInstructionGreenandNodeStateInstructionRedto reflect the changes within the red agent pattern-of-life capability. - The reward function has been enhanced so that node attribute states of resetting, patching, repairing, and restarting contribute to the overall reward value.
- The User Guide has been updated to reflect all the above changes.
Changed
- "config_1_DDOS_BASIC.yaml" modified to make it more simplistic to aid evaluation testing.
- "config_2_DDOS_BASIC.yaml" updated to reflect the addition of the File System State and the Red Agent node pattern-of-life enhancement.
- "config_3_DOS_VERY_BASIC.yaml" updated to reflect the addition of the File System State and the Red Agent node pattern-of-life enhancement.
- "config_UNIT_TEST.yaml" is a copy of the new "config_5_DATA_MANIPULATION.yaml" file.
- Updates to Transactions.
Fixed
- Fixed "config_2_DDOS_BASIC.yaml" by adding another ACL rule to allow traffic to flow from Node 9 to Node 3. Previously, there was no rule, so one of the green IERs could not flow by default.