ConceptioArchivearXiv CS
arXiv CSopen access

A Knowledge-Based Multi-Agent Framework for Security Control Recommendation

Unknown · 2026 · arxiv_cs
arXiv CS · Papers · License: Open Access · 2026
Open Source ↗Direct PDF ↓
cryptography, security, privacy, cybersecurity

A Knowledge-Based Multi-Agent Framework for Security Control Recommendation Carolina Fernández-Martínez 1,2,* , Shuaib Siddiqui 1 , and Vanesa Daza 2 1 Cybersecurity & Blockchain Research Group, i2CAT Foundation, Barcelona, 08039, Spain 2 Department of Information and Communication Technologies, Universitat Pompeu Fabra, Barcelona, 08018, Spain

Abstract Hardening IT on-premises environments can be a daunting task for teams without access to adequate cybersecurity expertise. In this regard, Decision Support Systems (DSS) with embedded expert knowledge can assist users by guiding them with security recommendations to meet their objectives. This work proposes a Security DSS that recommends security control sub-families given minimal user requirements indicating coverage of different security dimensions. It leverages a curated, unified dataset from both well-known Information Security (InfoSec) and academic sources. This DSS is defined as a non-zero-sum, simultaneous game that is grounded in a Multi-Agent Influence Diagram (MAID) model and explores the decision space over 7 security dimensions or agents, using no-regret online learning to ultimately find the security control sub-families that best fit the requirements while incurring minimal under- and over-provisioning of security resources. This work was validated in terms of performance and accuracy, among others, for varying dataset sizes. It shows exceptional satisfaction coverage results of 99% when using as little as ∼65% of the SW-implementable security controls, running in 1.2-35.7 seconds; and more moderate coverage results of 73%-77% when using ∼29% of the controls, resolving in 0.8-13.8 seconds.

arXiv:2607.09954v1 [cs.GT] 10 Jul 2026

Keywords: Decision Support Systems, Knowledge Graphs, Information Security, Multi-Agent Influence Diagrams, Game Theory, No-Regret Learning

1

under- and over-provisioning from vast catalogues [5] with varying contributions, which makes a comprehensive survey even more complex. Specifically, the vulnerability surface of the organisation must be maintained or reduced, whilst ensuring minimal resources are committed to it. A proper balance ultimately minimises costs, and is thus also reviewed from the economic side [6]. The above complexity can be tamed by introducing Security Decision Support Systems (DSS). Such systems guide operators during the initial surveying stage, bridging the knowledge gap by internally evaluating the security control frameworks according to formalised requirements. By providing tailored, optimised recommendations, a Security DSS allows operators to harden their environment more efficiently by maximising compliance and minimising invested time and effort.

Introduction

System administrators and operators find themselves required to survey, design and secure environments constructed from an everexpanding ecosystem of architectures, specifications, frameworks and tools. The public and hybrid cloud paradigm has handed a varying degree of these responsibilities over to hyperscalers, depending on the number and type of businesses’ services an IT company may host there. However, the adoption of the private cloud approach has grown over the last few years [1]. Whilst using hybrid, multicloud environments is the norm, the investment in private cloud infrastructure is increasing at twice the rate of public clouds [2]. Some of the adduced reasons for this shift include increasingly stringent regulatory compliance, translating into data sovereignty and isolated workloads (e.g. AI) on premises. These hybrid and private cloud approaches require organisations to retain in-house knowledge regarding general and security-related configurations. Modern tooling used in both local and hybrid setups becomes more complex as it encompasses more moving parts that must be continuously managed (e.g. tools for granular and stricter identity management, authentication and authorisation) [3]. At the same time, the scarcity of qualified cybersecurity experts [4] makes it more difficult to properly assess the significance and impact of adopting security-related tooling, not to mention the interpretation of the security control frameworks and threat modelling. While methodologies like DevSecOps aim to involve all actors to reduce the threat surface early in the software development lifecycle, setting up and hardening operational environments with third-party tools is more fragmented and prone to error. Because of that, teams without proper security expertise face a three-fold problem: (i) deciding which security controls to survey and prioritise first from a large, abstract pool; (ii) selecting subsets of controls that best mitigate their organisation’s requirements and processes; and (iii) optimising this selection to minimise both the vulnerable attack surface and the invested time, effort and budget. In some occasions, this task is complex even for cybersecurity experts, as the optimal control selection requires reaching a trade-off between

1.1

Contributions

This work proposes a Security DSS that embodies expert knowledge as a Knowledge Graph (KG) and a Game Theory framework that recommends minimal security control sub-families to best meet the requirements over the security dimensions. These dimensions represent the system’s data protection objectives, encompassing the CIA triad (confidentiality, integrity, availability) and others (authenticity, accountability, non-repudiation, privacy) [7, 8]. The game evaluates the agents’ utility functions while exploring the decision space to maximise required security coverage and minimise under- and overprovisioning. Finally, a minimal set of best-suited control subfamilies is identified and recommended. The following make this possible: 1. A curated and unified dataset that maps the Security and Privacy Control Families (SPCFs) and Sub-Families (SPCSFs) from NIST SP 800-53 rev5 [9] to 38 columns with data of interest: their contribution to cover the security dimensions, to mitigate threat vectors from the STRIDE-LM model; as well as detailed and aggregated scores from other works measuring effectiveness on mitigating attacker’s techniques and scores from expert surveys, among others described in Section 3.1. 2. A Multi-Agent Influence Diagram (MAID), as an extension to classical Bayesian Network (BN) [10] models. These encode the coverage per security dimension and the total score from the dataset above as a KG with embedded probabilistic influences

© 2026. This manuscript version is made available under the CC-BY-NC-SA 4.0 license. The final published version of record is available in Knowledge-Based Systems at https://doi.org/10.1016/j.knosys.2026.116558. *Corresponding author

1

yet others exist, such as Stackelberg, subgame perfect, epsilon or correlated equilibria.

across random variables within MAID nodes. 3. A multi-agent, non-zero-sum, simultaneous game-theoretic framework using no-regret online learning algorithms to heavily reduce the computational complexity of exploring the decision space. It evaluates the agents’ (security dimensions) utilities from the MAID’s KG and maximises the overall payoff, returning the joint profile that best meets the requirements. This is used as upper boundary by the recommender stage to maximise accuracy while minimising over-provisioning.

Probabilistic models, such as those based on the Bayes’ Theorem, allow updating the probability of a hypothesis, given its likelihood and the conditioned probability of some evidence (known data) given that hypothesis. Bayes’ theorem is at the core of BNs [10, 17], which allow modelling and updating events (as random variables, depicted as nodes) based on known information or beliefs (evidence) and use these to infer the events’ unknown joint probabilities (hypothesis) conditioned on selected subsets of evidence. BNs can leverage this for recommender systems. In [18], an adaptive DSS for cybersecurity incident mitigation leverages the Directed Acyclic Graph (DAG) within a BN as well as a custom, domain-specific model data for better computational efficiency. It applies Bayesian confidence calibration on well-known vulnerability and exploit scoring systems to compute the exposure probability, applying multi-objective optimisation for three pillars (attack likelihood, impact severity and system availability) to recommend mitigating controls. [19] proposes a cybersecurity DSS that converts the online optimisation to Mixed-Integer Conic Programming and runs over probabilistic attack graphs using Bayesian Stackelberg Games. They model the defender (leader) and attacker (follower) and account for the uncertainty on the latter’s capabilities; ultimately selecting a subset of security controls from 24 defined from their university, so to counteract potential or ongoing attacks.

The remainder of this paper introduces first the related work in Section 2. The main sections detail the contents and generation process of the curated security dataset in Section 3 and the design and implementation of the MAID-based security recommender that leverages such dataset in Section 4. Section 5 compiles the evaluation methodology, metrics and tests of the security recommender and its baseline. Section 6 concludes with an overview of the system along with its assumptions and identified limitations for both the security dataset and recommender; as well as the concluding remarks and future work directions.

2

Related work

Related academic literature is documented for each contribution from this work: (i) assessing and modelling the impact of the security controls available to users; and (ii) modelling the security decision support problem to find suitable recommendations. 2.1

Game Theory approaches can also be used to model systems that consider the behaviour of agents under either collaborative or competing incentives and propose the most strategically beneficial behaviour. Some authors combine these with Influence Diagrams to provide more descriptive and versatile frameworks, and at the same time, ensure fairness across involved agents and overall stability. A MAID is used in [20] to model an attacker-defender environment, modelling four categories of custom counter-hybrid measures that range from the technical to the policy level; then calculating the subgame perfect equilibrium that balances each agent’s payoff and ultimately analysing results per counter-hybrid measure. In [21], a game-theoretic DSS evaluates the effectiveness of strategies used by an analyst to protect according to the attacker’s objective. It uses a 2player (security analyst and attacker), zero-sum, one-shot algorithm, considering attacker profiles and filtering on budget effectiveness. The end-user is left to provide the security controls’ catalogue and expert data evaluation. Another game-theoretic approach to cybersecurity decision is provided in [22], where a 2-player game models two competing countries and guides them on the optimal strategy regarding disclosure of vulnerabilities. In [23], attacker and defender populations are modelled as a 2-player asymmetric, non-cooperative, non-zero sum game where each can either act or not. Based on Evolutionary Game Theory, this helps investigating the dynamics of the players’ interactions, including the costs, benefits and defence probability and providing suggestions for the organisations’ defence. Adversarial Risk Analysis (ARA) is a related approach that allows decision making with strategic opponents and uncertain outcome; modelling different types of (non collaborative) agents. Authors from [24] propose a risk analysis framework for AI-based systems, modelling both the defender’s and attacker’s expected utilities with multiple attributes. They consider, among others, the portfolio costs and organisational risk attitude for the defender; and follow a Bayesian probabilistic approach with Monte Carlo sampling on the attacker to model its uncertainty. With this, potential portfolios of (generic) cost-effective security controls are suggested. On the ground of forensic investigations against strategic adversaries, [25] proposes a two-player (investigator and attacker), non-zero-sum game that finds the Nash Equilibrium through the Lemke–Howson algorithm [26]. Utility functions model benefits and costs per actor and attempt to maximise each actor’s payoff, considering the other actor’s actions: uncovering the attack (investigator) or hide traces (attacker). A multi-stage cyber attack is modelled as multiple Bayesian games of incomplete information that use a graph of attack actions. Bayesian probabilities also model here the uncertainty regarding the type of

Security control’s importance evaluation

For a security decision process, a knowledge base must exist that (i) categorises the different security mechanisms or controls to enact; and that (ii) scores these appropriately to the task at hand, i.e. depending on specific criteria. Three academic works were identified that perform an evaluation of security mechanisms, whether using its own taxonomy or basing on existing ones, such as the list of SPCFs and SPCSFs provided by NIST SP 800-53 rev5 standard [9]. This list contains (i) 20 families (SPCFs); (ii) 300 active intermediate controls, or sub-families (SPCSFs); and (iii) 714 active control enhancements. Whilst other standardised security and privacy controls catalogues exist, such as ISO/IEC 27002:2022 [11] or MITRE D3FEND [12], NIST SP 800-53 is chosen for its higher relevance in previous literature, its periodic revisions and its open availability both from reports [9] and repositories [13] (whose common format allows for easy programmatic analysis). To identify the most impacting security controls, [14] performed a three-round interview with cybersecurity management layer experts. This work provides its own taxonomy for the security controls and provides scores and a mapping towards NIST CSF 2.0, used to improve organisation’s cybersecurity plans. In [15], a simplified taxonomy of functional security dimensions was produced with five categories of security controls. The authors analysed which controls could be implemented by software and provided code examples for popular security frameworks. The NIST SP 800-53 SPCSFs had its effectiveness assessed in [5], based on their ability to mitigate 188 adversarial techniques from the MITRE ATT&CK framework. This study considered 7 metrics per SPCSF, where Technique Coverage (TEC) is the prominent one. They filtered the SPCSFs by relevance (107 with T EC > 0), they applied k-means clustering to separate the top 21 critical SPCSFs that perform the best (i.e. more risk-efficient and versatile) for organisations to prioritise. 2.2

Probabilistic security and risk decision support

Both probabilistic and game-theoretic approaches are used in recommender and decision support scenarios; starting from the more probability-oriented classification and suggestion and incorporating also the motivation of different agents that are to converge. The latter typically consider Nash Equilibrium [16] as a stable state reached when agents cannot improve their outcome by acting unilaterally — 2

The structure and contents of the dataset are explained below, along with its generation process and the analysis of the resulting data.

attacker, and the ultimate goal is to generate an optimal strategy for the investigator that also balances the attacker’s type and the potential benefit and cost per action. 2.3

When assessing the security controls’ contribution for a security decision scenario, the current literature shows significant fragmentation between taxonomies [15] that capture relations and the SWimplementable assessment, expert managers’ surveys [14] focusing on cybersecurity management and maturity assessment and datasets providing several technical metrics per control [5] and mappings to threats, yet not exhaustively computed for all the security catalogue in use. This work combines relevant attributes (such as score and SWimplementability) from the previously indicated academic datasets into a unified one. It also integrates other attributes from standardised catalogues of security and privacy controls and also mapping controls to their impact on threats, following well-known threat modelling. This considerably enriches the resulting dataset, providing enough granularity (per SPCSF) to facilitate the construction of KGs. Besides this, applying these full datasets as KG in game-theoretic models to obtain exact, optimal results (or equilibria) introduces considerable scalability issues. Since finding exact equilibria can be Polynomial Parity Arguments on Directed graphs (PPAD)-complete [27], such computational complexity restricts analysed implementations to 2-player games with small decision domains [19–25]. Without simplifications like zero-sum games [21], obtaining exact optimal solutions using Nash, Stackelberg or subgame perfect equilibria becomes directly intractable as the decision space grows, as influenced from e.g. number of agents or decision domains [19–21, 25]. To bypass exact calculations, other approaches rely on iterative Monte Carlo simulations [24], which sample random utilities to estimate the attacker’s actions but can incur heavy computational overhead for large control sets; as well as on Evolutionary Game Theory [23], which handles probabilities of interactions at population-level and thus can lose significant granularity. Overall, the literature does not adequately cover the combination addressed in this work. Existing works either evaluate security controls from specific perspectives (e.g. expert judgement, implementability or threat mitigation) or model cybersecurity decisions through probabilistic and game-theoretic approaches that typically focus on smaller control sets, two-player (e.g. attacker/defender) setups, or cost-driven objectives. What remains insufficiently addressed is a knowledge-based framework that integrates heterogeneous controllevel evidence into a unified representation, expresses requirements in terms of security dimensions and delivers granular objectives while supporting scalable multi-agent recommendation of Security and Privacy Control Sub-Families. Therefore, this work models a non-zero-sum, simultaneous game with granular interactions across 7 agents. By relating each security dimension to an agent, the game can account for the differentiated interactions (e.g. cooperative or competitive) across each type of agent. By avoiding exact calculations and applying instead no-regret online learning algorithms, this approach bypasses the PPAD-complete scalability issue and offers a scalable approach that converges faster on approximate optimal joint profiles from the explored decision space and refines these into optimal solutions. Consequently, the resulting DSS runs in up to 35.7 seconds. The KG is recreated from the latest available dataset for every execution; thus maximising operations on an up-to-date dataset.

3

✜✢✢ ✤ ☞✌✍✞✠✎ ✏✂✠✟✠✂✌ ✑✏✡✆✂✠✝✡ ✒✓✔✕✖✗✘✙✚ ✛

Gap analysis

✹ ✁✂✁✄☎✂ ✆✝✞✞☎✟✁✂✠✝✡ ✒✓✔✕✖✗✘✙✚ ✣

✴✵✶ ✷☎✡☎✞✁✂✠✝✡ ✒✓✔✕✖✗✘✙✚ ✛

✸ ✥✦✚✧ ★✙✧✕✖✩ ✧✪✫✓✕✖✦✘✗✕✬ ✒✓✔✕✖✗✘✙✚ ✭ ✳ ✮✧✯✕✚✚✧✬✰✧✖ ✱ ✖✦✬✲✗✬✔ ✒✓✔✕✖✗✘✙✚ ✭

Figure 1: Security DSS system overview

3.1

Structure

This dataset relates security controls (SPCSFs) from well-established frameworks in the cybersecurity community to both existing expertand ML-generated scores provided by academic works. It also performs a simple quantification process on the SPCSF’s impact on mitigating threats and on covering or addressing the seven security dimensions, as taken from well-known open Information Security (InfoSec) sources. With these scores and information, three partial and one global scores are generated per SPCSF. To extract security controls highly relevant to the community, the NIST SP 800-53 rev5 [9] catalogue was chosen. Beyond its ∼20-year life and its adoption in both engineering and academic communities, it is accessible in machine-friendly formats that facilitate automated processing, e.g. OSCAL [13]. It is structured in 20 control families, with each family containing multiple controls, here called SPCSFs; and each control potentially having multiple control enhancements. These SPCSFs families comprise specific security topics, from access control (AC) to Supply Risk Management (SR). It contains 324 SPCSFs (300 of these not being withdrawn). These conform the rows of the proposed dataset DS8 . Table 1 groups the 38 columns available in DS8 , indicating the number of features or columns per group, the originating source (DSi ) and arrows indicating which were used to derive aggregated partial and total scores. All sources used to construct the dataset DS8 are identified as DSi , i ∈ [1, 7] and summarised in Table 2. The data transformations used to generate the dataset are detailed in Algorithm 1. Overall, the generated dataset DS8 contains 300 SPCSFs and 38 columns with extracted and generated data properly correlated.

Security dataset 3.1.1

A security dataset is first constructed to provide relevant information for the security controls. This dataset acts as the cornerstone of the proposed Security DSS, as its information feeds the different decisions and information modelling present in the DSS architectural building blocks. Fig. 1 illustrates the relations (dependencies) across these blocks, their mapping to the three described algorithms and their order of execution as part of the Security DSS.

Source datasets

As indicated in Table 1, three types of datasets were used: from InfoSec communities, from academic papers and GenAI-interpreted. Three academic works, introduced in Section 2.1, were used in this contribution to deliver averaged scores for SPCSFs. These are (i) expert-based scores per SPCSF in DS2∗ [14]; (ii) taxonomy and SW-implementability criteria in DS6 [15]; and (iii) the analysed 3

Table 1: Provenance and relation across groups of features/columns per dataset Source attributes

Derived scores

Dataset

Source

NIST (2+2)

SW-impl. (3)

Sec. dim. cov. (8)

STRIDE-LM cov. (7)

Expert scores (5)

Taxonomy (1)

ATT&CK & impact (6)

Partial (3)

Total (1)

DS1 DS2∗ DS3 DS4 DS5 DS6 DS7 DS8

ï e ï Æ ï e e ⋆

# G ## # # # #

G ### ### ### # # ### ## ### ###

# # #

# # # #

#

# # # # #

# # # # # #

# # # # # # # ⋆

# # # # # # # ⋆

##

Source (dataset): ï InfoSec

e Academy

# # # #

Æ Generative AI (GenAI)

⋆ Derived

# # #

Source (column):

Native

G # Inferred

# #

# Absent

⋆ Derived

#

averaging these three partial scores. The model detailed in Section 4 uses the NIST identifiers, the SWimplementability criteria, the security dimension coverage and the total score — obtained from the aggregated values in the partial scores described in Table 1.

mitigation impact, considering the MITRE ATT&CK framework in DS7 [5]. InfoSec sources from NIST were also used; both from (i) the OSCAL catalogue (DS1 ) [13] and from (ii) the CyberSecurity Framework (CSF) (DS3 ); as well as from the CSFtools site [28] for both (iii) the impact of the NIST 800-53 rev5 SPCSFs on mitigating Microsoft’s STRIDE-LM threat vectors (DS5 ). GenAI was used to analyse the coverage of each SPCSF towards the security dimensions (DS4 ), based on the text-based description from the InfoSec source (i). As introduced above, two well-known threat frameworks are used in DS8 . One of them is the MITRE ATT&CK, considered from DS7 and involving a taxonomy of adversarial tactics composed of techniques, as well as detection strategies and mitigations per technique. The other one is Microsoft’s STRIDE-LM, providing seven threat vectors that can be leveraged by an attacker to compromise an environment: spoofing (S), tampering (T), repudiation (R), information disclosure (I), denial of service (D), elevation of privilege (E) and lateral movement (LM). 3.1.2

# # # # # #

Algorithm 1 Dataset generation Require: DSi ̸= ∅ ∀i ∈ [1, 7] Ensure: DS8 ̸= ∅ // Extract Security Families from DS1 [13] 1: for each g in DS1 .catalog.group do 2: 3: 4: 5:

ga ← g.controls s.t. g.status ∈ / withdrawn nsf [g] ← |ga | for each d1i in ga do DS8 [d1i ].impl ← d1i .status ∈ / T1 withdrawn d1i .implementation ∈ system

// Merge DS2A and DS2B as DS2 [14] 6: DS2 ← merge(DS2A .process_id = DS2B .process_id)

Dataset attributes

// Merge DS4 and DS5 7: DS8 .llm_∗ ← merge(DS8 .id = DS4 .id) 8: DS8 .stridelm_∗ ← merge(DS8 .id = DS5 .id)

The columns provided in DS8 contain mostly attributes correlated from the other DS sources. The grouped columns from Table 1 are explained below. The two NIST columns provide the identifier and name per SPCSF for most DS (except for DS2∗ ), which are used for direct (or indirect) correlation across datasets. Two other columns from DS7 provide the NIST baseline and priority from both NIST SP 800-53 rev5 and rev4, respectively. The priority was removed in r5, yet is deemed of interest here. The interpretation of the implementability through SW of a SPCSF is provided in three columns that are either inferred from attributes from DS1 or directly extracted from DS4 and DS6 . The contribution (coverage) of each SPCSF to the seven considered security dimensions is provided in DS4 as real values between 0 and 1, with the constraint that all of them sum up to 1 for normalisation. This comes from interpreting the SPCSF descriptions from OSCAL DS1 and CSFtools site [28], which was left to a GenAI model. For human inspection, an extra column was provided with its justification of the interpretation. Another measure of impact is the contribution of each control enhancement per SPCSF to cover the seven threat vectors from the STRIDE-LM framework. These columns are included in DS5 and contain a list of comma-separated SPCSF’s control enhancements. A custom taxonomy column coming from DS6 is added to potentially help establishing categories of SPCSFs depending on their kind of actions and benefit. Six columns are used to denote the impact of SPCSFs as mitigating mechanisms, considering the MITRE ATT&CK framework. These are fetched from DS7 and encode varying metrics, such as the number of techniques or mean number of tactics covered. Finally, scores are derived from previous attributes. Three partial scores are calculated (i) from the scores given by cybersecurity experts(DS2∗ ), by averaging these; (ii) from STRIDE-LM (DS5 ), the mitigation efficacy is computed using a simple ratio based on the number of controls enhancements involved in mitigation from all available in each SPCSF; and (iii) from MITRE ATT&CK (DS7 ), the mitigation efficacy averages its metrics after performing on-the-fly normalisation. The total score is obtained by

// Merge DS6 [15] 9: DS8 .impl2 ← merge(DS8 .id = DS6 .id) // Incorporate scores from DS2 by relating to DS3 10: for each d8i in DS8 do 11: 12: 13: 14: 15:

for each d3j in DS3 do if d8i .id = d3j .reference_document then f amd3 ← family(d3j .focal_document) for each d2k in filter_fam(DS2 , famd3 ) do d8i .stats ← stat_metrics(d2k )

// Compute score from DS2 , DS5 and DS7 [5]

16: for each d8i in DS8 do 17: 18: 19: 20: 21: 22:

23:

3.2

⃗ d8i .scoreDS2 ← avg(mms(d8i .stats[sj ])) ∀s ∈ S av7c ← avg(mms(DS7 .cm)) 7 .nm) av7n ← avg(DS ∀n ∈ DS7⃗.nm DS7 .nmmax d8i .scoreDS7 ← avg(av7c , av7n ) |sct(c)| d8i .scoreDS5 ← nsf ∀c ⊂ DS5 | g ∈ SP CSF [g]+1 av8i ← avg(d8i .scoreDS2 , d8i .scoreDS7 , d8i .scoreDS5 )  2 1 if S DS .impl ≥ 1 8 k d8i .score ← pi · av8i | pi = k=1  0 otherwise

Generation process

First, the NIST OSCAL catalogue [13] is processed to identify (i) active SPCSFs per SPCF group (ga ) and (ii) SW-implementable criteria per SPCSF, determined by OSCAL labels and depending on whether the SPCSF is not withdrawn from previous releases and it is labelled as either "implementation-level" or "system" – but not as 4

Table 3: Top 20 SW-implementable SPCSFs & contribution from works

Table 2: Notation for Algorithm 1

Statistical columns [14] Min-max scale / normalisation from Eq. (1) DS7 ’s custom metrics (except TAC) DS7 ’s NIST metrics (baseline, priority) STRIDE-LM threats covered per c ∈ SPCSF No. of active SPCSF within each SPCF |SPCSF| ⊂ ga ∀ ga ∈ SPCF SW-implementability of a SPCSF

"organization", which are deemed more strategic. These are covered in Algorithm 1, lines 1-5. Now, the data for each SPCSF from the covered works is correlated and aggregated. First, the two datasets from DS2∗ (DS2A , DS2B ) [14] are merged, using the common "process_id" column. These hold (i) the security ontology resulting from the interviews as one dataset; and (ii) the score for each category in the security ontology as another one. This is covered in Algorithm 1, line 6. It is worth noting that the "merge" function is implemented as a left join, which takes as ground truth all items at the first (left) parameter. Then, the DS4 mapping is merged into the final dataset, considering the full list of SPCSFs (Algorithm 1, line 7). DS4 was manually compiled upon querying the Gemini 2.5 Pro model on the CSFtools [28] reference to identify the contribution (a real number between 0 and 1) of each SPCSF towards the fulfilment of the security dimensions: confidentiality (C), integrity (I), availability (A), authenticity (Au), accountability (Ac), non-repudiation (Nr) and privacy (Pr). While relying on expert knowledge per SPCSF yields a more accurate operational ground truth, this LLM-generated data serves well the primary objective of validating the appropriateness of the framework across varying values. In operational environments, cybersecurity experts should replace these values upon a manual, detailed approach; e.g. inspired by guidance from authoritative sources such as CNSSI 1253 [30] or from programmatic, statistic analysis of descriptions from the OSCAL catalogue [13]. After this, the final dataset is extended with a mapping (DS5 ) that stores the contribution of each SPCSF (and internal control enhancements) towards the mitigation of each STRIDE-LM threat vectors. This mapping was obtained manually per SPCSF in CSFtools [28] and merged in Algorithm 1, line 8. A second criterion to determine the SW-implementation, as provided by DS6 [15], is also integrated here (Algorithm 1, line 9). At this point, the previously generated DS2 is merged into the final dataset. To do so, the DS3 mapping is used for correlating keys; as it relates controls from NIST SP 800-53 r5 and those from NIST CyberSecurity Framework (CSF) 2.0 [29]. In particular, the ID of each SPCSF in the final dataset is compared against each item from the "reference_document" column in DS3 . If these match, the SPCSF’s family (i.e. its SPCF) is retrieved. The available statistical metrics from DS2 (i.e. 36 processes from its custom taxonomy) are incorporated by using both (i) the internally provided mapping between this custom taxonomy to NIST CSF 2.0 (column "mapping_nist_csf", post-processed in the "filter_fam" method) and (ii) the DS3 mapping described above ("focal_document" column). These statistical metrics consider the mean, median, mode, Standard

#3 [14] (DS2∗ )

#4 (DS5 )

SI-3 CM-7 SI-4 AC-3 SC-7 SI-7 AC-4 AC-2 SI-10 AC-17 SC-28 SC-4 SC-39 SC-8 SC-12 SC-16 IA-4 SC-32 SC-11 IA-2

0.87633 0.86460 0.85704 0.84544 0.81730 0.80637 0.77137 0.76486 0.73619 0.72794 0.70501 0.70336 0.70105 0.69072 0.68915 0.68896 0.68591 0.68562 0.68562 0.66727

0.73287 0.72341 0.85878 0.71865 0.60155 0.56957 0.57407 0.59733 0.45530 0.39921 0.21889 0.22396 0.22103 0.17602 0.17133 0.17073 0.27311 0.16071 0.16071 0.55055

0.89614 0.87041 0.79568 0.81766 0.85035 0.84953 0.80457 0.77417 0.89614 0.78461 0.89614 0.88612 0.88211 0.89614 0.89614 0.89614 0.78461 0.89614 0.89614 0.78461

1.00000 1.00000 0.91667 1.00000 1.00000 1.00000 0.93548 0.92308 0.85714 1.00000 1.00000 1.00000 1.00000 1.00000 1.00000 1.00000 1.00000 1.00000 1.00000 0.66667

Deviation (SD) and Inter-Quartile Range (IQR). This is covered in Algorithm 1, lines 10-15.

ID)

Security Controls Families AC PE AT PL AU PM CA PS CM PT CP RA IA SA IR SC MA SI MP SR

0

Contributing Secur

30 20 10

ity Control (family's

50 40

Score decile 1 2 3 4 5 6 7 8 9

9 AC AT AU CA CM CP IA

8

TS

P8

00

-53

6

rev 5

Se cur

5

ity

Co n

4 3

tro

ls F am

ilie

s

ore Sc

2 1

SR

NIS

7

d

e

(10

il ec

ee tw

.0

n0

.0) d1 an

be

10 0

Contributing Secu

30 20

rity Control (fami

50 40

ly's ID)

(a) All SPCFs (global score)

9 AC AT AU CA CM CP IA

8

NIS TS P8

00 -53

7 6

rev 5

Se

cur

ity

Co n

ls F am

4 3

ilie

s

2 1

il ec

d re co

10

e(

ee etw

.0)

1 nd

a .0

n0

5

tro

SR

pi

Generated dataset from research & InfoSec

#2 [5] (DS7 )

IR

⃗ f : mms(S) cm nm f : sct(c) nsf [g]

Existing dataset or ground truth DS 1 800-53r5 (OSCAL) catalogue [13] DS2∗ Taxonomy & CSF 2.0 scores map containing DS2A and DS2B [14] DS3 CSF 2.0 to 800-53r5 map [29] DS4 Gemini 2.5 Pro to security dim. map DS5 800-53r5 to STRIDE-LM map [28] DS6 800-53r5 to implementable map [15] DS7 800-53r3 to scores map [5]

Total

MA MP PE PL PM PS PT RA SA SC SI

Internals ⃗ S

Partial score generated per source SPCSF

IR

Output DS8

Description

MA MP PE PL PM PS PT RA SA SC SI

Term Inputs DSi (i ∈ [1, 7])

Security Controls Families AC AU CM CP IA RA SC SI SR

Score decile 1 2 3 4 5 6 7 8 9

b

S

(b) SW-implementable SPCFs (global score)

Figure 2: Security controls contributing to each global score’s decile

⃗ = mms(S)

s − smin ⃗ ∀s∈S smax − smin

(1)

The last block in the algorithm performs a series of calculations to (i) provide a single score from the considered academic works DS2 [14] and DS7 [5]; (ii) generate a score for the STRIDE-LM 5

Table 4: No. of SW-implementable (total) SPCSFs covering security dimensions CIA triad SPCF

C

I

Extra Dimensions A

14 (22) 14 (20) 0 (3) 0 (3) 1 (2) 1 (1) 0 (6) 0 (6) 1 (6) 3 (14) 1 (1) 2 (4) 4 (4) 4 (4) 0 (4) 0 (3) 0 (6) 0 (6) 0 (8) 0 (5) 0 (10) 0 (6) 0 (7) 0 (7) 0 (12) 0 (12) 0 (6) 0 (7) 0 (1) 0 (0) 1 (7) 1 (7) 0 (8) 0 (16) 26 (31) 29 (33) 11 (17) 12 (17) 1 (8) 1 (10)

AC AT AU CA CM CP IA IR MA MP PE PL PM PS PT RA SA SC SI SR

before this process can start, the publicly available dataset for DS7 [5] seemed to require minor modifications in the publicly provided scripts in order to generate the full dataset. To that end, both the "main" and "utils" files were modified to (i) properly compute the severity centrality from the given patterns; (ii) use the latest file names; and (iii) extract all values from the clustering method. With that covered, all but one effectiveness custom metrics (DS7 .cm) provided by DS7 [5] are used; which makes it 6 out of the original 7 metrics. Such metric is the Tactic Coverage (TAC), which provides granular scalars per SPCF that are already considered in the already used mean TAC (MTAC) metric. These values are handled similarly to the DS2 ones: first normalised using the mms function, then averaged (Algorithm 1, line 18). Besides the custom metrics, this dataset incorporates the NIST-defined baseline and priority metrics (DS7 .nm) per SPCF; which are used to prioritise the implementation of a given control depending on the baseline to cover (i.e. lower must be implemented first) and priority, both of which range from 0 to 4. Each of these values per SPCSF is averaged and normalised simply considering its maximum value (Algorithm 1, line 19). Then, both custom (DS7 .cm) and NIST (DS7 .nm) metrics are averaged in Algorithm 1, line 20. It is worth noting that both the CR (cm) and the NIST priority (nm) metrics follow essentially different approaches than other metrics, since smaller values denote higher importance there; and must thus be transformed to convey a similar approach whilst still keeping their significance. The third and final score relates to the contribution towards the mitigation of the STRIDE-LM threat vectors, previously introduced from DS5 . In Algorithm 1, line 21; each SPCSF is iterated to count how many of its main (e.g. AC-9) or its control enhancements (e.g. AC9(3)) contribute towards mitigating the STRIDE-LM’s threat vectors. That number is divided by the total number of control enhancements available per SPCSF, which is programmatically obtained from the OSCAL catalogue DS1 – and adding one more to count also the SPCSF itself. This provides a measure of the effectiveness of a given SPCSF into mitigating such threats. Finally, the three scores above are averaged and then the final score per SPCSF is calculated, conditioned on whether either one or the other implementation criteria (pi , considering both impl1 , impl2 ) is met. The generated dataset, correlated from the previous source, is available at DS8 .

Au

Ac

Nr

Pr

2 (3) 2 (2) 3 (4) 0 (0) 2 (6) 0 (3) 0 (0) 0 (3) 0 (0) 0 (3) 2 (2) 1 (1) 6 (11) 2 (2) 0 (0) 0 (3) 0 (0) 0 (5) 0 (0) 0 (0) 1 (4) 1 (1) 0 (5) 0 (0) 0 (1) 2 (12) 0 (0) 0 (1) 0 (0) 0 (0) 0 (0) 10 (13) 3 (4) 0 (0) 0 (0) 0 (6) 0 (0) 0 (3) 0 (0) 0 (1) 0 (3) 0 (1) 0 (0) 0 (0) 0 (0) 0 (1) 0 (0) 0 (2) 0 (0) 0 (0) 0 (11) 0 (0) 0 (4) 0 (0) 0 (0) 0 (6) 0 (0) 0 (6) 0 (0) 0 (1) 0 (15) 0 (0) 0 (18) 0 (0) 0 (12) 0 (1) 0 (0) 0 (5) 0 (0) 0 (0) 0 (0) 0 (0) 0 (3) 0 (0) 0 (8) 0 (6) 0 (0) 0 (3) 0 (0) 0 (2) 0 (16) 0 (0) 0 (1) 0 (0) 0 (2) 8 (13) 7 (7) 2 (4) 0 (0) 3 (3) 5 (12) 0 (0) 2 (3) 0 (0) 4 (5) 1 (8) 0 (2) 0 (4) 0 (0) 0 (0)

Total 60 (169) 67 (181) 21 (125) 21 (27) 16 (89) 2 (2) 9 (44)

50 40

Contributing Secur

30

ity Control (family's

ID)

contribution; and (iii) average all 3 scores, conditioned to any of the SW-implementation criteria (impl1 or impl2 ) being true. First, each statistical set of metrics from DS2 is first normalised applying the mms function for min-max scaling, as per Eq. (1), to ensure that each value s inside meets 0 ≤ s ≤ 1. Then, the value of each statistical metric for any given SPCSF is taken and aggregated into the intermediate d8i .scoreDS2 . This takes place in Algorithm 1, line 17.

20 10 0 privacy AC AT AU CA CM CP IA

nonrepudiation

NIS

accountability

IR

00 -5

Se cu

rity

Co n

tro

ls F am

ilie

s

SR

3r ev5

MA MP PE PL PM PS PT RA SA SC SI

TS P8

authenticity

ve Co

sio

ns

3.3

Security Dimensions confidentiality integrity availability authenticity accountability nonrepudiation privacy

re

confidentiality

50

10 0 privacy AC AT AU CA CM CP IA

nonrepudiation

NIS

Se cur

Security Dimensions confidentiality integrity availability authenticity accountability nonrepudiation privacy

s ion

ity

Co n

tro

ls F am

ilie

s

SR

-53 rev 5

Security Controls Families AC AU CM CP IA RA SC SI SR

accountability

IR

00

MA MP PE PL PM PS PT RA SA SC SI

TS P8

Contributing Secur

30 20

ity Control (family's

ID)

(a) All SPCFs (security dimensions)

40

authenticity availability integrity

Co

re ve

ity

r cu

e dS

Composition analysis

Table 3 enumerates the top 20 SPCSFs that are SW-implementable, ordered from highest to lowest and according to the total score calculated in this work (Algorithm 1, line 23). It shows each SPCSF, its total score and the degree of contribution from each of the contemplated works and datasets. Additionally, a colour code is used to represent if any given SPCSF is also present in the top 20 ranked controls of each considered dataset by showing its colour: blue for #2 [5], yellow for #3 [14] and green for #4; as well as gray for contributions from 2 or more datasets. Those without colour indicate that these are still contributed from these other datasets, yet further down in their ranked list. There, the highest contributing SPCFs are SC, AC and SI with an average of 9.25, 4.25 and 2.5 contributed SPCSF items, respectively. Some SPCF categories (AT, CA, IR, MA, MP, PE, PL, PM, PS, PT, SA) are contributed only by non-SWimplementable SPCSF items that relate to awareness, assessment, authorisation, monitoring, incident response and management, among others. The rest of the categories (AC, AU, CM, CP, IA, RA, SC, SI, SR) are considered instead; contributing to access control, accountability, configuration management and protection efforts, among others. More information can be found in the dataset’s ancillary files, such as the top 20 total (i.e. SW-implementable or not) SPCSF –also in Fig. 2a– and the number of contributing SPCSF controls per SPCF and their statistical metrics and spread. Fig. 2b complements this by placing each SPCSF into each of the 10 deciles (in the Y-axis), depending on its total calculated score. Besides the score distribution, Table 4 and Fig. 3 show the number

ur ec dS

availability integrity

en

im

D ity

Security Controls Families AC PE AT PL AU PM CA PS CM PT CP RA IA SA IR SC MA SI MP SR

s en

Dim

confidentiality

(b) SW-implementable SPCFs (security dimensions)

Figure 3: No. of SPCFs contributing to security dimensions

Then, values from DS7 are incorporated. It is worth noting that, 6

Table 5: Summary with the number and statistical values for total and SW-implementable SPCFs

Scope

Contribution

Score statistics

SPCF

Impl

Total

#2 [5] (DS7 )

#3 [14] (DS2∗ )

#4 (DS5 )

Min

Mean

Mode

Max

SD

IQR

AC AT AU CA CM CP IA IR MA MP PE PL PM PS PT RA SA SC SI SR

15 0 10 0 3 2 10 0 0 0 0 0 0 0 0 1 0 40 15 1

23 5 15 8 14 12 13 9 7 8 22 8 32 9 8 9 17 47 22 12

15 (23) 0 (5) 10 (15) 0 (8) 3 (14) 2 (12) 10 (13) 0 (9) 0 (7) 0 (8) 0 (22) 0 (8) 0 (32) 0 (9) 0 (8) 1 (9) 0 (17) 40 (47) 15 (22) 1 (12)

11 (16) 0 (0) 5 (10) 0 (6) 2 (11) 0 (8) 10 (13) 0 (8) 0 (1) 0 (2) 0 (18) 0 (2) 0 (20) 0 (3) 0 (1) 1 (8) 0 (11) 19 (21) 5 (9) 1 (8)

11 (13) 0 (0) 6 (9) 0 (0) 1 (4) 0 (6) 5 (6) 0 (0) 0 (4) 0 (5) 0 (7) 0 (0) 0 (0) 0 (1) 0 (1) 0 (0) 0 (2) 19 (24) 5 (7) 0 (3)

0.06174 0 0.07143 0 (0) 0.05357 0.05357 0.30915 0 0 0 0 0 0 0 0 0.22588 0 0.03436 0.04447 0.35899

0.48610 0 0.36807 0 0.48267 0.05357 0.49091 0 0 0 0 0 0 0 0 0.22588 0 0.35038 0.29980 0.35899

0.06174 0 0.07143 0 0.05357 0.05357 0.30915 0 0 0 0 0 0 0 0 0.22588 0 0.05357 0.05357 0.35899

0.84544 0 0.66181 0 0.86460 0.05357 0.68591 0 0 0 0 0 0 0 0 0.22588 0 0.81730 0.87633 0.35899

0.23577 0 0.14086 0 0.33278 0 0.16686 0 0 0 0 0 0 0 0 0 0 0.25662 0.32869 0

0.34124 0 0.08928 0 0.40552 0 0.33852 0 0 0 0 0 0 0 0 0 0 0.57374 0.51410 0

SPCSFs that can best cover it belong to SC and SI instead — yet with a high scoring variability. This highlights the direct impact of non-SW-implementable SPCSFs (on planning, physical and personal data protection) to ensure data availability and privacy. On the other hand, these non-SW-implementable SPCFs usually score low in the aggregated DS7 [5] data and often also in the final score.

and IDs of the SPCSFs contributing to the security dimensions, considering both the CIA triad with confidentiality (C), integrity (I) and availability (A); along with authenticity (Au), accountability (Ac), non-repudiation (Nr) and privacy (Pr). Fig. 3 renders the contribution of all 20 (Fig. 3a) and the 9 SW-implementable (Fig. 3b) SPCFs. Finally, Table 5 summarises some relevant data. From the total 300 SPCSFs, 97 are considered SW-implementable. Regarding the contribution of the considered works towards these SW-implementable SPCSFs, #2 [5] is the most comprehensive, as its measurements yield > 0 for 96 out of these 97; whereas #3 [14] provides 53 and #4 considers 47, as per the "Contribution" columns of Table 5. The minimum, average, mode, maximum, SD and IQR statistical metrics are provided right after for the SW-implementable SPCSF items belonging to each SPCF category. As observed in Fig. 2b, the SC, AC and SI SPCFs are the most prevalent in the highest deciles (roughly around 6 to 9) for the top 20 SPCSFs from Table 3. 3.3.1

• The IA and SC SPCFs (identification and authentication & system and information integrity) contribute towards authenticity (with scores ranging between 0.8-0.5 and 0.5-0.1, respectively); no matter whether considering total or SW-implementable SPCSFs.

4

Security recommender

The knowledge-based multi-agent framework, explained below, leverages the previous dataset DS8 to encode as KG in the MAID model M that recommends SPCSFs.

Key findings 4.1

From the analysis of the dataset’s content, the following considerations are highlighted:

Background

MAIDs [31] extend from Influence Diagrams (IDs) [32], and IDs extend themselves from BNs [33]. On the one hand, BNs B = (G, P) are represented with (i) a Directed Acyclic Graph (DAG) G = (V, E) encoding random variables (events) Xi as vertices and the influence across these as directed edges; and (ii) Conditional Probability Distributions (CPD), encoding the probability P of an event Xi occurring based on that of its parent nodes P a(Xi ), i.e. P(Xi |P a(Xi )). On the other hand, IDs consider (i) the nodes V in BNs, representing Xi , as chance nodes C, and also include two new types of nodes: (ii) decision variables, for the agents to select as part of their strategy; and (iii) utility variables, to represent the agent’s preferences. Thus, the resulting graph could be formalised as G = (C, D, U ) and can be used to more easily analyse the probabilistic dependencies across Xi (C) and D. A MAID M = (G, θ) [34, 35] consists of (i) a MAID G = (A, V, E), where A is the set of agents and (V, E) is a graph defined by nodes V = (C, D, U ) to represent chance, decision and utility nodes, respectively, and edges E = V × V ; along with (ii) a parameterisation θ that contains, per node in V , a finite domain Dom(Xi ) ∈ R ∀ Xi ∈ V ; a real domain Dom(Xi ) ∈ R ∀ Xi ∈ U ;

• The highest scored SW-implementable SPCSFs lie in the SI, SC, IA, AC and CM SPCFs (deciles 6 to 9); with the majority coming from SC. Unsurprisingly, these cover data (e.g. configuration) integrity, protect system communications and control access to data for confidentiality. This is consistent with DS7 [5], whose top 10 controls (per T EC metric) consist only of these SPCSFs and which covers also 85% of the whole dataset’s upper T EC. • Considering the SW-implementable SPCSFs, the best covered security dimensions are confidentiality and integrity, followed by availability and authenticity; whereas the least covered ones are privacy, accountability and non-repudiation. The SWimplementable SPCFs with higher overall coverage are SC, AC, IA and SI. • When considering total SPCFs, some SPCFs cover well a specific security dimension that cannot be covered by contained SW-implementable SPCSFs (e.g. the total number of SPCSFs in PE and PM covers availability well), but the implementable 7

and CPDs for chance C and utility U nodes. Dom(Xi ) will be defined, from now on, as DXi . The parents of a decision node P a(D) (C or other D) contain the information set available (observable) for D to decide; utility nodes U usually have no children and are probabilistically determined by their parents P a(U ) (C or D) [31]; and its DAG and properties offer advantages regarding complexity and explainability regarding the traditional Extensive Form Game representations [34].

4.3

Utility definition

The utility function is constructed on-the-fly during the MAID generation from the dataset DS8 . The utility Ua (σ) for an agent a evaluated for a joint decision profile σ is defined in Eq. (2).     Ua (σ) = Sa (σ) + Qa (σ) − Pap (σ) + Pas (σ) | {z } | {z } Incentives (∆a (σ))

4.2

This work intends to recommend minimal SPCSFs to fulfil the requirements indicating the degree of coverage of the 7 considered security dimensions. To that end, a MAID M models the security dimensions as agents A, encodes SPCSFs’ coverage as chance nodes C, uses SPCSFs’ domain in the decision nodes D and formally defines the utility function for agents A as the utility nodes U . Chance nodes internally encode each SPCSF’s SW-implementability and score from DS8 ; whereas utility nodes embody the utility formulation for each agent, formalising its behaviour from its relation to other agents (which can tend from collaboration to competition) and the contribution received from each SPCSF, among others. Edges between these represent how much a SPCSF contributes to cover an agent. Fig. 4 depicts a simple MAID representing C, D and U nodes as circles, squares and diamonds; respectively. Dotted edges denote the information links or information available to an agent/decision (e.g. P a(D) → D), whereas solid edges indicate the dependency over other nodes into the calculation of the utility or payoff of the agent.

D1

U2

SFj

DN

U1

UN

Penalties (Γa (σ))

The utility encodes the motivation (objective) per agent a, which is to be maximised as per Eq. (3a). To do so, it evaluates Ua to determine its optimal strategy σa∗ against the strategies of other agents σ−a . The objective of the system, in Eq. (3b), is to find the optimal joint strategy (discrete) profile σ ∗ or approximate equilibrium; where incentives and penalties are balanced across agents.

Problem and model definition

SFi

(2)

σa∗ = arg max Ua (σa , σ−a ) σa ∈D

σ ∗ = {(a, σa∗ ) | a ∈ A}

(3a) (3b)

In practice, Ua must be able to guide the agent a ∈ A to explore the minimal number of SPCSFs that can best serve each security requirement τa per agent a and maximise tailored coverage for its associated security dimension. It considers contributions providing both incentives ∆a (σ) and penalties Γa (σ), as per Eq. (4). The incentives group (i) the synergy Sa (σ) between any pair of agents; and (ii) the overall quality Qa (σ) for a chance node in the MAID — where chance nodes are either a SPCSF cluster or item, depending on the type of MAID M, and prioritising controls with higher coverage towards agents. The penalties group (iii) the provisioning penalty Pap (σ); and (iv) the sparsity penalty Pas (σ) to maximise accuracy and minimise the number of SPCSFs in use, respectively.

Sa (σ) =

X

C−a (σ) · ρa,−a · ws

(4a)

−a∈A\{a}

D2

Qa (σ) =

X

p(ω, σ) · q(ω, a)

(4b)

ω∈Ω

Figure 4: MAID sample with C, D and U nodes

Pap (σ) = λ(Ea , τa ) · Ea2

Two modes M of MAID are proposed to model this problem: Fig. 5 shows the full MAID and Fig. 6 depicts the clustered MAID. These have |V | = 111, |E| = 203 and |V | = 25, |E| = 39 vertices and edges, respectively. Edges E connect C with D and D with U . Vertices V directly represent (full M ) or indirectly aggregate (clustered M ) the 97 SW-implementable SPCSF from the dataset, along with 7 decision and utility nodes to represent the agents. Each C node is coloured based on the D and U nodes it contributes and relates to. Each proposed MAID M is used for a multi-player, non-zero-sum, simultaneous game with utilities that consider both incentives and penalties. M can be used to find suitable joint, optimal cross-agent policy or decision profile σ ∗ that cannot be improved by any agent’s unilateral deviation; which acts as an approximate equilibrium. It is important to note that, while obtaining exact optimal equilibria for a full MAID is intractable using exact calculations methods, the clustered MAID heavily brings the computational complexity down; making it still possible to obtain an approximate equilibrium. Both M are solved in this work with no-regret learning dynamics rather than exact calculations to ensure proper scalability; specifically using the Hedge / Exponential Weights Algorithm (EWA) [36] and the Exponential-weight algorithm for Exploration and Exploitation (EXP3) [37] methods. Section 4.5 explains the rationale for this approach, including empirical validation and theoretical complexity analysis.

Pas (σ) =

X ω∈Ω

p(ω, σ) ·

s Pmax |Ω|

(4c) (4d)

As a scaling factor in Sa (σ) via Ca (σ) in Eq. (5), Qa (σ), and Pas (σ); the weight p(ω, σ) ∈ [0, 1] indicates how likely each SPCSF ω is to contribute to cover a given agent under the examined joint policy profile σ. That is, it represents the need of an SPCSF to satisfy each requirement. It is worth noting that this weight is obtained deterministically and does not follow a known probability distribution. In particular, Algorithm 2 maps the agents’ possible choices from DA to numerical requirement weights denoting the required coverage of each agent’s associated security dimension. p(ω, σ) takes the maximum weight across all a ∈ A covered by each SPCSF ω. Besides this, other weights defined for the incentive (ws ) and s penalty (Wu , θneg , Pmax ) utility terms were fine-tuned after manual sensitivity testing. It had been observed that ws > 0.1 hoarded SPCSFs to increase synergy at the cost of over-provisioning; that small Wu were not penalising enough the under-provisioning and were increased orders of magnitude; that θneg should only consider for negative correlation under a minimal threshold (analysed from s Fig. 7) and that Pmax was calculated to be a bit larger than the value delivered by Sa (σ), yet considerably smaller than that given by Pap (σ). Finally, the Cmax is used in Sa (σ) as the upper boundary to limit coverage when aggregating contributions. 8

Node Types Chance node Decision node Utility node

CP_13 SI_20

AC_4

AC_14 SC_28

SI_21

SC_44

SC_43

IA_5

AC_20

SC_7 SC_10

SC_32 SI_10

CP_12 AU_4 SC_6 SI_22 AU_5 SR_3 SI_3 SC_47 SC_45

AC_2 SC_22 SC_5

D_INTEGRITY

SC_20

IA_4

AU_8

IA_7

CM_14

IA_8

D_AVAILABILITY

D_PRIVACY

SC_4

IA_13 SC_12

D_CONFIDENTIALITY

D_NONREPUDIATION

IA_11

IA_2 IA_6 SC_21

AU_7

AU_11 AU_12 AU_3

D_AUTHENTICITY

SI_4 AC_8

SC_16

U_ACCOUNTABILITY

AC_10

AU_14

D_ACCOUNTABILITY

SC_26

SC_50

U_AUTHENTICITY

U_PRIVACY

SC_48

AC_18 U_AVAILABILITY

SI_17

Security Dimensions Accountability Authenticity Availability Confidentiality Integrity Nonrepudiation Privacy

U_CONFIDENTIALITY

SC_42 RA_10

AC_7

SC_15 AC_11 SC_24

AC_17

SC_18

AC_3

SC_8

AU_9 AC_25

SC_25 SI_16

SI_19

U_NONREPUDIATION

SC_3

SC_2 AC_12 SC_41

SI_15

U_INTEGRITY

SI_6 AU_10

SC_40 SC_49 SC_46 CM_7 SI_23 AC_9 SC_11 SC_39 SC_27

SC_34

SC_13 SC_23 IA_3

SI_11

IA_9

SC_17

AC_19

SI_18

CM_6

SC_35 SC_51

SI_7

Figure 5: Full MAID showing the contributions of each of the 97 SW-implementable SPCSF to each agent

4.3.1

Node Types Chance node Decision node Utility node

D_AVAILABILITY C8 D_ACCOUNTABILITY

The synergy across agents Sa (σ), in Eq. (4a), rewards agent a when the selected SPCSFs provide simultaneous coverage to any other agent −a ∈ A \ {a}. This models the nature of collaborative vs competitive coverage; given that when covering an agent a, the coverage of another agent −a can be either augmented or diminished. This is obtained from the correlation matrix R across agents and fosters complementary coverage relationships, measured through the cross-dimensional coverage C−a (σ) and the dimensional correlation ρd,−a . The total synergy is scaled by weight ws (here, 0.1) to avoid dominating the utility function that guides the exploration.

C7

D_CONFIDENTIALITY

D_INTEGRITY

C2

D_AUTHENTICITY

C4 D_NONREPUDIATION D_PRIVACY U_NONREPUDIATION

C9 C10 U_AVAILABILITY

Security Dimensions Accountability Authenticity Availability Confidentiality Integrity Nonrepudiation Privacy

C6 C5

C11

U_ACCOUNTABILITY U_PRIVACY U_INTEGRITY

Incentive Sa (σ): dimension synergy

C1 U_AUTHENTICITY C3U_CONFIDENTIALITY

! Ca (σ) = min Cmax ,

Figure 6: Clustered MAID with contribution per SPCSF to A (k=11 clusters)

Co

1.00

0.17

-0.21

-0.19

-0.33

-0.29

0.06

In

0.17

1.00

0.03

0.19

-0.39

-0.37

-0.34

Av

-0.21

0.03

1.00

-0.27

-0.25

-0.17

-0.27

Au

-0.19

0.19

-0.27

1.00

-0.05

-0.17

-0.23

-0.33

-0.39

-0.25

-0.05

1.00

-0.13

-0.00

No

-0.29

-0.37

-0.17

-0.17

-0.13

1.00

-0.17

Pr

0.06

-0.34

-0.27

-0.23

-0.00

-0.17

1.00

Co

In

Av

Au

Ac

No

Pr

p(ω, σ) · vω,a

(5)

ω∈Ω

Eq. (5) denotes the cross-dimensional coverage Ca (σ) per dimension a ∈ A. It is worth noting that C−a (σ) is derived by evaluating Ca (σ) identically, yet for other dimensions −a. Ca (σ) aggregates the contribution vω,a ∈ [0, 1] of SPCSF (chance nodes Nω , or simply ω ∈ Ω in M), towards each agent a; which is multiplied by the weight p(ω, σ). In order to account for multiple SPCSFs covering a given a (even exceeding 100% coverage), the upper bound is set to Cmax (here, 1). To compute the final synergy Sa (σ), the dimensional correlation ρa,−a ∈ [−1, 1] expresses the synergy between dimensions a and −a, as obtained from R. Fig. 7 provides an example of R. ρa,−a acts as a weight: (i) if positive, agents are complementary and it yields an incentive for SPCSFs covering also other dimensions; and (ii) otherwise, the agents are in conflict; likely hindering coverage of the current agent, and thus discourages the selection of such SPCSFs. 4.3.2

Ac

X

Incentive Qa (σ): SPCSF quality

The quality incentive Qa (σ), in Eq. (4b), rewards an agent a that explores SPCSFs with high alignment on both the security baseline and its total score; where the baseline alignment is favoured. This can act as a tie breaker when multiple SPCSFs offer equivalent coverage. To obtain this value, it considers the weight p(ω, σ) and multiplies it to the evaluation function q(ω, a) - which combines a weighted sum of (i) the NIST SP 800-53 baseline, aligning its significance to that defined in the joint profile σ for a; and (ii) the total score; both available in DS8 for each SPCSF.

Figure 7: Correlation across agents for clustered MAID

4.3.3

Penalty Pap (σ): under- and over-provisioning

The recommendation of suitable SPCSFs to meet the security requirements τa per agent a can be seen as a resource provisioning problem 9

Table 6: Notation for Algorithm 2 and Algorithm 3

(i.e. provisioning SPCSFs to cover requirements on security dimensions). This can incur two undesirable situations: under-provisioning (recommending fewer SPCSFs than needed) and over-provisioning (recommending redundant SPCSFs). From a conservative cybersecurity provisioning approach, under-provisioning increases the vulnerability of the environment; whereas over-provisioning wastes resources (e.g. time or adoption effort) - making the latter preferable to an exposed attack surface. The provisioning penalty Pap , in Eq. (4c), is introduced to discourage agents from exploring the decision space in ways that can more easily lead to such conditions. To identify both conditions, the difference (distance) between the provided coverage Ca (σ) and requested coverage τa of an agent a is calculated. This is captured by the error Ea = Ca (σ) − τa , with a negative value indicating under-provisioning; and otherwise, over-provisioning. The squared error Ea2 is multiplied by a dynamic weight function λ(Ea , τa ) that defines a proper coefficient depending on conditions of under-provisioning (Ea < 0) or over-provisioning (Ea ≥ 0). In the first case, it uses Wu (here, 50) to heavily penalise this case; whereas in the second case it uses Wo , obtained from the correlation matrix R across agents and from a multiplier proportional to the maximum over-provisioning (i.e. exceeding coverage regarding security requirements), which is bounded between 0.1 and 1.0. Cneg = {ρi,j ∈ Rtri | ρi,j < θneg } ( min(C )+mean(C ) neg neg if Cneg ̸= ∅ 2 V = 0 otherwise   Wo = max wmin , min wmax , wbase + γ · V

Term Inputs DS8 T M Gc Ω A DA R ⃗τ M L L B Variables Nd , N u , N c Ea Ca Sa , Qa Pap , Pas Ua W, p ⃗ H σ ⃗ β F, Fs fω R ⃗c

(6)

Wo , in Eq. (6), is dynamically calculated to avoid agents from getting a direct penalty when the available SPCSFs in the dataset lead to over-provisioning. It is calculated dynamically from the conflicting dimensions Cneg , using the upper triangular elements Rtri of the security dimensions’ correlation matrix R whose negative correlation is below a negative correlation threshold θneg (here, -0.05). It is worth noting that R is also used to calculate Sa . From that, V is calculated from the minimal and average values of these conflicts. Then, Wo increases V by γ and keeps it bound between wmin and wmax around a baseline wbase . In this case, the chosen values for these parameters were 2, 0.5, 2 and 2, respectively. Negative correlations (seen as conflicts between agents) incur less over-provisioning; and thus, Wo ∝ 1/Vi . In these cases, a higher V denotes that covering multiple dimensions becomes more complicated and likely require more overlapping SPCSFs; thus Wo must be more lenient. 4.3.4

4.4.1

Dataset with SPCSFs Filtering threshold for DS8 MAID mode (full, clustered) Target no. of clusters for GMM (optional) Set of filtered candidate chance nodes Agents (security dimensions D) Decision domain for A (∼ SPCSF baseline) security dimension correlation matrix Security requirements per Sec. Dim. A MAID model Learning algorithm (Hedge, EXP3) Total learning iterations Maximum budget limit for SPCSFs Decision, utility and chance nodes Edges for agent a ∈ M Coverage for agent a Synergy and quality incentives for agent a Penalties per agent a: provisioning, sparsity Utility function for agent a Weights and sampling probabilities History space of explored joint profiles Joint policy profile Upper bounds extracted from σ ∗ Raw and ranked list of ω by adequacy Adequacy (fitness) of ω to cover ⃗τ Final recommended set of SPCSFs Achieved physical coverage vector of R

MAID construction from dataset

Algorithm 2 uses the dataset DS8 from Algorithm 1 along with the dataset filtering threshold T , the mode M (i.e. clustered or full) used to represent the data in the MAID, the maximum clusters Gc (if needed), the data for SPCSFs Ω, the list of agents A and their domain DA , the correlation matrix R across agents and the requirements per agent ⃗τ . First, the dataset DS8 is filtered in Algorithm 2, line 1. This filters SPCSFs according to their total score through a configurable threshold T , and ends up with a subset of SPCSFs DS8f that will be used to cover the security requirements ⃗τ . Depending on M , the set of available, filtered SPCSFs to be used as chance nodes in the MAID M is further modified, as Ω. If the mode M is clustered, the GMM clustering process creates clusters containing specific SPCSFs according to their coverage of the agents. This process can either use an optional upper limit for clusters (Gc ) or apply the Bayesian Information Criterion (BIC) to find the optional number of clusters. Gc is optional and the default runs GMM with BIC to automatically find this value. Otherwise, for a full MAID, the whole DS8f is used. This runs in Algorithm 2, lines 2-5. With this data, the vertices V and edges E for the MAID M can be extracted from the filtered SPCSFs in Ω. V is defined from the different nodes Nc , Nd and Nu . These nodes encode some information as well: chance nodes Nc comprise its approximate, average total score (Algorithm 2, lines 6-7); decision nodes Nd host the domain D, or values that can be considered (Algorithm 2, line 9); and utility nodes Nu contain hybrid utility functions UA (Algorithm 2, lines 12-18). It must be noted that chance nodes use here a probabilistic normal distribution around its average total score (µ) and with a deviation (σ) of 0.1, restricted to the [0.0, 1.0] interval. These represent the uncertainty over exact values to accommodate changes in the origin data, whether from DS8 or its sourced datasets (e.g. changes in 12 columns for DS7 .cm can get ∼ 10% average variability), and introduce variability to test the framework under varying conditions.

Penalty Pas (σ): sparsity

The sparsity penalty Pas (σ), in Eq. (4d), applies L1 regularisation to limit feature selection. That is, it penalises the selection of unnecessary SPCSFs and instead fosters the selection of a smaller, more meaningful set of SPCSFs that can equally cover each security s dimension a. To do so, it uses a global penalty Pmax (here, 2) as the upper boundary evenly across the number of available SPCSFs (|Ω|). With a smaller number of SPCSFs (e.g. clustered mode), this penalty increases considerably — since adding a cluster may incur massive over-provisioning depending on the SPCSFs it contains. Conversely, with a larger number of SPCSFs (e.g. in the full mode), this penalty is reduced to allow selecting more specialised SPCSFs (i.e. those covering less dimensions at the time). This global penalty is then weighted by p(ω, σ). Therefore, Pas (σ) can adapt to the topology of the MAID M (and thus, to the selected mode M ) and the maximum available SPCSFs; guiding towards more accurate decision profiles. 4.4

Description

Recommendation procedure

The MAID model M is constructed along with the utility function Ua per agent a (Algorithm 2). This is used for exploring the decision space and recommending SPCSFs (Algorithm 3). Notation is available in Table 6. 10

Algorithm 2 MAID generation and hybrid utility formulation

Algorithm 3 MAID exploration and SPCSF recommendation

Require: DS8 , T , M , Gc , Ω, A, DA , R, ⃗τ Ensure: M

Require: M, M , Ω, ⃗τ , L, L, B Ensure: σ ∗ , R

// Filter dataset and generate clusters

// Decision space exploration

1: DS8f ← filter_implementable(DS8 , T )

1: W, L ← init_params(M, M, L)

2: if M = clustered then

2: H ← ∅

Ω ← gmm_g_bic(DS8f , Gc ) 4: else 5: Ω ← DS8f

4:

3: for l = 1toL do

3:

5: 6:

// Construct MAID with data 6: for each node ω ∈ Ω do 7: Nc,ω ← create_chance(normal_distr(ω)) 8: for each agent a ∈ A do 9: Nd,a ← create_decision(a, Da )  10: Ea ← (Nc,ω , Nd,a ), (Nd,a , Nu,a ) 11: Ca ← agent_coverage(Ω, a)

7: 8:

// Extract best joint profile from history ∗ 9: σ ← extract_min_distance_profile(H, ⃗ τ) // Recommendation analysis and ranking 10: F ← ∅

11: for each node ω ∈ Ω do

// Hybrid utility function per agent 12: for each agent a ∈ A do

fω ← calculate_similarity(ω, ⃗τ ) F ← F ∪ {(ω, fω )} 14: Fs ← sort_descending(F ) 12:

Sa ← agent_synergy(R, C−a ) 14: Qa ← spcsf_quality(Ω, Nd,a ) 15: Pap ← provisioning_penalty(Ca , τa ) 16: Pas ← sparsity_penalty(Ω) 17: Ua ← Qa + Sa − Pap − Pas 18: Nu,a ← create_utility(Ua ) 19: M ← create_maid(Nc , Na , Nu , UA , EA ) 20: return M 13:

13:

// Bounded, greedy selection with dynamic pruning 15: R ← ∅, ⃗ c ← ⃗0

⃗ ← max(coverage(σ ), ⃗τ ) 16: β ∗

c < ⃗τ and |R| < B and ∃ω ∈ Fs do 17: while ⃗ ⃗ Wo ) ω ∗ ← arg maxω ∆ cov(ω, ⃗c) − peno (ω, β, ∗ 19: R ← R ∪ {ω } 20: ⃗c ← max(⃗c, coverage(ω ∗ )) 21: for each node r ∈ R do 22: if coverage(R \ {r}) ≥ ⃗τ then 23: R ← R \ {r} ∗ 24: return σ , R 18:

Utility functions base on direct or indirect data from the dataset, e.g. the coverage Ca of an agent (Algorithm 2, line 11). The edges EA (constructed in Algorithm 2, line 10) express the flow of information by connecting chance nodes to decision nodes, and decision nodes to utility nodes. Finally, a MAID M can now be generated for each set of parameters (e.g. mode M ) in Algorithm 2, line 19. 4.4.2

σ (l) , p ⃗ ← sample_joint_profile(W, L) H ← H ∪ {σ (l) } for each agent a ∈ A do (l) Ua ← Ua (σ (l) ) (l) W ← update_params(W, Ua , p ⃗, L)



degree of coverage ca that can be low, intermediate or high (or none), depending on the amount of coverage. Since this result is met after running the utilities Ua , as the approximate equilibrium for the agents it indicates which security requirements can be effectively met and to which extent. From this point onwards, the recommender stage takes place. An initial ranking stage (Algorithm 3, lines 10-14) evaluates how well each SPCSF ω ∈ Ω can cover the requested security requirements. This is calculated by the identified similarity fω between the coverage provided by such SPCSF ω and the expected total coverage ⃗τ (Algorithm 3, line 12) and is used to discourage both under- and overprovisioning. Then, all items added to F are ranked from most to least similarity, yielding Fs . After the ranking, the second part of the recommendation stage ensures that the coverage provided by the approximate equilibrium σ ∗ acts as an upper bound; avoiding over-provisioning and allowing to identify the subset of the SPCSFs R to recommend. The set R is initialised along with the coverage vector ⃗c. The best joint profile ω ∗ is considered, along with the passed security requirements ⃗τ , to ⃗ for coverage that each agent a must determine the upper boundary β achieve to avoid over-provisioning (Algorithm 3, lines 15-16). With all of that, the recommender runs a loop to accumulate adequate SPCSFs in Algorithm 3, lines 17-20. This process checks whether (i) the requested security requirements ⃗τ are still unmet by the current achieved coverage ⃗c, while ensuring that (ii) the current amount of recommendations do not exceed the internally defined budget B; it continues taking SPCSFs from those available at the sorted pool Fs .

Game-theoretic exploration and recommendation

Once MAID M is constructed, Algorithm 3 runs two stages: (i) the game-theoretic exploration across the decision space for all agents, invoking each utility action Ua to maximise each agent’s payoff and obtain the most accurate joint solution or (discrete) profile σ ∗ that can meet best the security requirements without exceeding these; and (ii) the recommendation stage itself, which navigates the sorted SPCSFs and select those that contribute to the coverage without exceeding it or exhausting the budget. Based on the MAID M, mode M and learning algorithm L, the initial learning parameters are defined (Algorithm 3, lines 1-2). The probability weights W per agent and the number of iterations L per algorithm L (i.e. Hedge/EWA and EXP3) are calculated, along with the empty history set H to track explored decisions. For each iteration l ∈ L, the learning algorithm picks, in a stochastic manner, a joint strategy profile σ (l) with values from domain DA and a probabilistic distribution p ⃗ (Algorithm 3, line 4). This profile represents the collective explored/covered agents at that iteration. This is recorded as part of the decisions’ history (Algorithm 3, line 5). Then, the utility function Ua is invoked per agent considering the current profile σ (l) ; and its result is used to update the probability weights W and sampling distribution p ⃗, in order to steer the stochastic selection of the profile (Algorithm 3, lines 6-8). Finally, and after running all L iterations per algorithm L; the history of explored decisions H is analysed to extract the most accurate profile σ ∗ from it (Algorithm 3, line 9). Such profile σ ∗ minimises the distance between the required τa and obtained ca degree of coverage to an agent a; where this coverage is obtained from the joint profiles previously explored and tracked in H. With this, the game-theoretic exploration stage produces the coverage profile σ ∗ , implemented as a discretised vector that maps each agent a to a

∆ cov(ω, ⃗c) =

X

min(ca + vω,a , τa ) − ca



(7a)

a∈A

⃗ Wo ) = Wo · peno (ω, β,

X a∈A

11

max 0, (ca + vω,a ) − βa



(7b)

associated memory size Cs , respectively. These scale exponentially with mp = |max(P a(D))|, but also grow with DV — namely, the maximum number of parents and decision domain per decision node.

At each iteration, the best candidate SPCSF ω ∗ is selected, trying to maximise only the useful coverage for requested agents ∆cov and to minimise unnecessary coverage peno , in the same way as the underand over- provision constraints in the utility function itself. These conditions are detailed in Eq. (7a) and Eq. (7b) respectively; with ca being the accumulated coverage per agent a and vω,a being the coverage of SPCSF ω to agent a. It is worth noting that, if an agent (its represented security dimension) is already fully covered, ∆ cov is zero. Then, the recommended set R and the coverage are updated adequately with the best SPCSF ω ∗ . In a final pass (Algorithm 3, lines 21-23), R is reviewed to ensure the bare minimum SPCSF set is proposed to cover the security requirements ⃗τ . Results for an exploration and recommendation stage (Algorithm 3) using a selected requirements profile chosen at random are shown in Fig. 8, as evaluated for both full (Fig. 5) and clustered (Fig. 6) modes and applying two different learning algorithms L to minimise the regret over the selected decisions: Hedge Learning and EXP3. In the radar plot, each agent is located in a vertex and coloured differently. The explored space is identified by dots, with arrows indicating the direction of the exploration considering the best joint profile (approximate equilibrium). The security requirements ⃗τ are shown in a bold dashed polygon, whose shape is the approximation to the ideal, exact fit that indicates no under- and over-provisioning. The best joint discrete profile (approximate equilibrium) obtained from the exploration stage is shaded in light blue and its contour is dotted. The crosses at each agent denote its perimeter or boundaries. Finally, the polygon in purple shade and solid contour reflects the degree of coverage for the agents suggested in the final, recommending stage. The best joint profile is selected out of the history of explored profiles H, where each learning algorithm L runs different iterations L, suited to their behaviour. As in the utility function, the criteria to select it heavily penalises under-provisioning, and in case of similar coverage between two decision profiles, it favours those that minimise over-provisioning. This can be observed in the blue shades, which are always larger than the purple shades. The purple shade will more often than not have minor over-provisioning to ensure covering at least the desired degree of security. Conversely, it also can incur under-provisioning if the SPCSF dataset (DS8 ) is too small (i.e. a high threshold T ); which is considerably more problematic. In the execution shown in Fig. 8, the recommendation between the clustered and full MAID returned slightly different SPCSFs. It is worth noting that no under-provisioning is found in that execution until filtering the dataset with T = 0.4 (i.e. total score of at least 0.4). Here, the accountability agent is penalised due to related SPCSFs being filtered out due to its lower total score; considerably reducing the original 16 identified SW-implementable SPCSFs from Table 4. This is comparable to executions with other requirements (Section 5.3). 4.5

Ce ≤ |V | · |DV |mp | mp = max(|P a(V )|) Cs =

|V | 4 X · (|k| + |Dv | − 1) · (|Dk ||k| ) | k = P a(v) 109 v 1

(8b)

=

Table 7: Dimension and upper space bound required per MAID M type, size (N , |V |, |E|), P a(V ) |V |, |E|

P a(V )

Full (DS8 ) 300 314, 644 score_total > 0.0 285 299, 612 SW-implem. 97 111, 203 score_total > 0.4 37 51, 87

2-181 2-174 2-67 0-28

DAG content

N

Space used by CPD Ce

Cs (GB)

3.14 · 10183 7.6 · 10174 2.99 · 10176 7.32 · 10167 1.11 · 1069 3.04 · 1060 5.1 · 1029 1.48 · 1021

Table 7 summarises the application of Eq. (8a) and Eq. (8b) to M based on the iteratively filtered dataset DS8 based on score constraints and the SW-implementation criteria, which reduces mp . It shows the vertices |V | and edges |E| per M generated from each filtered dataset — where |V | = N + 14 to accommodate the decision and utility nodes per security dimension. It also finds the Ce , equivalent to the minimum independent parameters required to represent all joint CPDs [17]; and the size in GBs in Cs . Ce assumes |DV | = 10, since agents can decide on values from the score deciles (Fig. 2). In the best case (i.e. DS8 reduced to half after filtering it with threshold T = 0.4), Ce is still around the order of 1033 entries. Even if also reducing decisions to |DV | = 4, in the best case Ce would yield around the order of 1020 entries. Thus, finding the exact equilibrium is intractable for the full MAID. Since exact inference on BN models is NP-hard [38, 39], processing all entries for such a dense decision or policy space incurs a combinatorial explosion that requires prohibitive amounts of memory. One way of bringing the complexity of the MAID considerably down is by decreasing the in-degree of decision nodes D; e.g. applying (child-friendly) parent divorcing [40] or grouping chance nodes (SPCSFs) together, e.g. identifying latent variables [41] or clustering based on similar contribution from SPCSFs towards agents. The clustering approach is examined here applying Gaussian Mixture Model (GMM) along with the Bayesian Information Criterion (BIC), to perform soft clustering and group SPCSFs with similar properties into latent variables (clusters). The resulting clusters group chance nodes into k = 11 groups, as shown in Fig. 6. This drastically reduces D’s in-degree and the number of edges, limiting CPDs to a computationally tractable size. Ce would reduce in the order of 109 and 105 for |DV | equal to 10 and 4, respectively.

Complexity limitations

Finding exact equilibria faces two primary computational limitations: (i) generating and storing CPDs and (ii) evaluating the MAID subgames across a large decision space. In fact, these make exact calculation intractable for models requiring extensive data combinations, such as the full MAID (Fig. 5). More compact models, such as the clustered MAID (Fig. 6) alleviate these limitations and allow computing some exact equilibria, yet very slowly. This section explains these findings and the motivation for no-regret online learning dynamics, which allow to bypass the intractability and obtain an approximate equilibrium considerably faster. 4.5.1

(8a)

4.5.2

Computation: exploring the decision space

Besides memory limitations, a game-theoretic system must evaluate expected utilities EUd (σ) across the agents’ joint strategy profiles σ to find optimal equilibria σ ∗ . Table 8 summarises the upper complexity bounds to converge on such optimal outcome in terms of (i) search space, understood as the (joint or individual) profiles σ; and (ii) of time complexity across these methods (iterations). Notation refers to the number of agents |A|, decision domain per agent DA , number of iterations L, maximum number of parents (in-degree) in the decision D nodes from the MAID M as mp = max(|P a(V )|) and s being the worst-case exponent used by the implemented LP solver. Finding an exact Nash Equilibrium [49] is PPAD-complete, even for 2-player games [27], and its complexity scales exponentially with |A|. More efficient approaches exist for graphical game models like MAIDs [50] that exploit conditional independence [31] and can bring complexity down to polynomial time when bound to |DA | = 2 and

Space: storing probabilistic data

In BN and derived approaches using exact inference, the conditioned Bayesian probabilities per decision node are computed based on its parent chance nodes, as per P(D | P a(D)), and used to populate its CPDs. In the full MAID M, in Fig. 5, the in-degree (number of parents) of decision nodes ranges from 2 to 67. Eq. (8a) and (8b) determine the upper bound for the number of CPD entries Ce and the 12

CONFIDENTIALITY

High (1.0)

PRIVACY

Target coverage Recommended coverage Explored coverage space Maximal coverage Explored decision space Explored states Trajectory direction

CONFIDENTIALITY

High (1.0)

INTEGRITY

0.90/0.80 [IA_6]

PRIVACY

NONREPUDIATION

Intermediate (0.6)

Intermediate (0.6)

0.80/0.80 [SC_18]

0.80/0.80 [SC_18]

AVAILABILITY

0.50/0.40 [IA_4]

NONREPUDIATION

ACCOUNTABILITY

(a) Clustered M using Hedge

INTEGRITY

CONFIDENTIALITY

AVAILABILITY

NONREPUDIATION

(b) Clustered M using EXP3

INTEGRITY

Low (0.3)

None

AVAILABILITY

1.00/0.80 [AU_3]

ACCOUNTABILITY

Target coverage Recommended coverage Explored coverage space Maximal coverage Explored decision space Explored states Trajectory direction

Intermediate (0.6) 1.00/0.80 [SI_7]

0.20/0.20 [SI_3]

0.50/0.40 [IA_4]

AUTHENTICITY

High (1.0)

1.00/0.80 [SC_4]

PRIVACY

Low (0.3)

None

1.00/0.80 [AU_3]

AUTHENTICITY

Target coverage Recommended coverage Explored coverage space Maximal coverage Explored decision space Explored states Trajectory direction

Intermediate (0.6) 1.00/0.80 [SI_7]

0.20/0.20 [SI_3]

0.50/0.40 [IA_4]

1.00/0.80 [AU_3]

High (1.0)

1.00/0.80 [SC_4]

PRIVACY

Low (0.3)

None

0.20/0.20 [SI_3]

ACCOUNTABILITY

CONFIDENTIALITY

INTEGRITY

0.90/0.80 [IA_6]

Low (0.3)

None

Target coverage Recommended coverage Explored coverage space Maximal coverage Explored decision space Explored states Trajectory direction

NONREPUDIATION

0.20/0.20 [SI_3]

AVAILABILITY

0.50/0.40 [IA_4]

1.00/0.80 [AU_3]

AUTHENTICITY

(c) Full M using Hedge

ACCOUNTABILITY

AUTHENTICITY

(d) Full M using EXP3

Figure 8: MAID M exploration and recommendation Table 8: Space and time upper complexity bounds for game theory methods

Method

Space (|σ|)

Time (iter.)

Nash Eq. [27, 42] CE [43] & CCE [44] BRD [45]

implementations were compared against the proposed work in Section 5.4. It shows first a summarised evaluation, aggregating data across a number of dataset sizes, modes and learning algorithms in Table 11. Full details for the internal evaluation of the proposed recommender and the comparison against the greedy, filtered baseline are available in Table A.1 and Table A.2, respectively. Both tables summarise statistical values across different filtering iterations of the dataset (using thresholds T ) for each metric, where each cell shows their mean ± SD. It is important to note that the threshold T (between 0.0 and 0.8) directly influences the size of dataset DS8 , since it filters those N SPCSFs whose score_total is equal or higher than T . A bigger threshold yields fewer SPCSFs (T ∝ 1/N ). Consequently, a good recommending accuracy expects a sufficiently large N , as better SPCSFs can be recommended from a larger pool.

O(|DA ||A| ) O((|A| · |DA |mp )s )

O(|DA ||A| )

O(|DA ||A| )

MMR [46]

O((|A| · |DA |mp )s )

Fictitious Play [47]

O(|A| · |DA |

EWA [36] & EXP3 [48]

O(|A| · |DA |)

mp

)

O(L · |A| · |DA |mp ) O(L · |A| · |DA |)

|A| = 3 [42] and exploiting the relevance graph [51]; yet increasing agents or domain is also intractable on commodity hardware. Correlated Equilibrium (CE) [52] and Coarse Correlated Equilibrium (CCE) [44] offer more computationally tractable alternatives for multi-agent games. CE can be solved via Linear Programming (LP) [43, 53], but that requires generating utility matrices that scale exponentially with |A| and can still be PPAD-complete under certain constraints [54]. Best-Response Dynamics (BRD) is Polynomial Local Search (PLS)complete [45] with exponential worst-case time, like Nash. Min-Max Regret (MMR) [46] and Fictitious Play (FP) [47] require significant memory to persist large utility matrices as in LP implementations (MMR) or a potentially large number of historical probabilistic actions (FP). To overcome time and memory complexities, no-regret learning dynamics work in a decentralised approach that allows each agent to independently focus on minimising its cumulative regret (i.e. a poor action taken from DA that diverges from the best possible one) through L iterations. These can ensure, over time, that agents obtain an average reward that is asymptotically as good as that of any fixed strategy from the explored decision space. This mechanism does not require loading the full decision strategy space into memory, which can converge rapidly to CCE [55] and present upper boundaries on memory and time complexities that are considerably more bounded than other methods. The convergence of these methods towards optimal strategies is determined by the upper bounds for √ √ regrets O( T · ln N ) and O( T · N · ln N ), respectively; with T = L as the number of iterations and N = |DA | as the available actions/strategies per agent. The selection of learning algorithms depends on factors like the comprehensiveness of the MAID M or the assured convergence of each algorithm. No-regret learning algorithms are very well-suited for this model, given its reduced complexity and fast convergence to CCE.

5

5.1

Methodology

The following metrics are considered: (i) performance (time taken to produce the recommendation); (ii) efficiency (minimisation of resources used to cover the requirements); (iii) accuracy (recommendation fitting with respect to requirements); and (iv) equity (degree of satisfaction per requirement without actively penalising others). The recommender was run m · n · o times in nested iterations for both validations; with (i) m being the range of thresholds (T ); (ii) n being the number of iterations (100); and (iii) o each of the modes (M ), i.e. "clustered" or "full". The security requirements are randomly generated within the n loop to ensure different constraints considered in the recommendation, which also introduces considerable variability in multiple metrics. The proposed Security DSS (comprised by Algorithms 2 and 3) explores the decision space within each mode M in the o loop by using two learning algorithms L (Hedge / EWA and EXP3) to minimise the regret on the selected choice. These repeat explorations for 200 and 400 iterations, respectively. This work is also compared in Section 5.4 against a greedy filtered recommender that implements the last sorting and filtering stage from Algorithm 3 (lines 15-23). 5.2

Internal evaluation

The box plots in the following subsections render average values and represent the IQR. 5.2.1

Performance

The performance of the system evaluates the time taken by the different stages from the Security DSS. That is, to (i) generate the MAID first; (ii) explore the decision space to look for a joint decision profile as approximate equilibrium; and (iii) perform the recommendation filtering and ranking. Times are shown in Table A.1. Both the time to generate the MAID M and the recommendations R are negligible in comparison with the learning time L for the game-theoretic exploration of the space; which is mainly caused by the hundreds of iterations required to reach enough decision profiles. The MAID generation time is

Evaluation

The Security DSS was evaluated in two ways: according to its internal behaviour and against a baseline. On the one hand, its internal behaviour used different game-theoretic and recommender system’s metrics. The metrics used for the full evaluation are described and interpreted first in Section 5.2. A use case is proposed in Section 5.3 to illustrate specific requirements passed to the DSS and analyse its outcomes (Table 9) and aggregated statistical values for a subset of dataset sizes (Table 10). On the other hand, the two baseline 13

Recommended SPCSFs (cost) across dataset size (T)

considerably slower for the clustered mode with respect to the full mode; as expected given that the clustered mode always run the GMM clustering process. This difference in time reduces with a higher T and less available SPCSFs, as there are less operations to perform. The recommendation time for the full mode, on the other hand, approximately doubles that of the clustered mode; given the larger number of chance nodes ω it handles directly. This also decreases along with fewer SPCSFs.

Amount of recommended SPCSFs

5.2.2

7

Efficiency

maxσ∈H Welfare(σ) Welfare(σ ∗ )

Price of Anarchy (PoA)

3 2

Figure 10: No. of recommended SPCSFs from T=0.0 to T=0.8, 100 iterations

and is obtained through the ratio sr = recommended / requested | sr ∈ [0, 1]; and (ii) the Normalised Discounted Cumulative Gain (NDCG) and (iii) the coverage ratios. NDCG, in Eq. (10), is a well-known ranking quality metric that measures how well an algorithm sorts items based on relevance. To do so, it compares the top K items (K being the cut-off point) of the ranking to the ideal order (based on relevance) and provides a ratio, where 1 means full alignment (higher quality or accuracy). It is important to point out that the relevance criteria (reli ) per item i can differ depending on the purpose of the system. For instance, it can assume the ground truth as the set of items with highest total score, in descending order; or it can assume as ground truth those items that are the most precise in term of a particular use case.

(9)

DCG@K =

Clustered / hedge Clustered / exp3 Full / hedge Full / exp3

K X

reli log 2 (i + 1) i=1

DCG@K (obtained) NDCG@K = DCG@K (ideal)

(10)

In this case, both approaches were considered to generate the DCG@K ideal value (ground truth), using a subset of SPCSFs ordered by relevance: (i) of those with highest total score (reli1 = f (score_total)); and (ii) of those that avoid under-provisioning and minimise over-provisioning, accommodating the most to the exact requirements (reli2 = f (coverage)). Both values are provided in Table A.1 as "NDCG (Score)" and "NDCG (Min)", respectively. The first one, purely based on the "score_total" column from DS8 (where the top 20 high-scoring SPCSFs are shown in Table 3), yields 82%99% on the clustered MAID and 52%-99% for the full MAID; both increasing along with T (i.e. with fewer SPCSFs to select from for the ranking). The second one, mostly focused on the "coverage_*" columns from DS8 (denoting contribution per SPCSF to an agent a), the values range between 99%-100% in the clustered MAID and 96%-100% for the full MAID. Given that both the utility function from the exploration stage, and the criteria of the recommender stage both point at ensuring there is no under-provisioning and avoiding over-provisioning, suggesting a minimal set of SPCSFs, it is natural that the second NDCG is much more aligned and stable. Another measurement comes from the coverage ratios. These are evaluated both using linear and geometric metrics and consider the security requirement array (⃗τ ), the security coverage array (ai ) and the number of agents (|A|). The best value these can achieve is 1, as it indicates full satisfaction/coverage. On the one hand, the considered linear metrics are as follows:

3 2 1 T=0.0 T=0.1 T=0.2 T=0.3 T=0.4 T=0.5 T=0.6 T=0.7 T=0.8 (N = 97) (N = 69) (N = 68) (N = 63) (N = 37) (N = 31) (N = 28) (N = 13) (N = 6)

Filtering threshold (Dataset size)

Figure 9: PoA from T=0.0 to T=0.8, 100 iterations

On the other hand, the minimum number of SPCSFs is computed to stop recommending SPCSFs the moment it satisfies the requirements, as well as re-iterating to minimise unwanted over-provisioning; while ensuring there is no avoidable under-provisioning. Fig. 10 plots the number of recommended SPCSFs with different T (i.e. dataset sizes). A higher number of SPCSFs allows the Security DSS to recommend more of them to better fit the security requirements; yet that amount must be limited to controls that strictly cover these requirements, without adding more (i.e. over-provisioning). This number ranges between 3 and 6 SPCSFs, even with the smallest dataset (T = 0.8, with 6 SPCSFs). When there are few SPCSFs available, the IoU and satisfaction coverage tend to be smaller. This figure shows that between T = 0.0 and T = 0.2, where there is higher satisfaction and accuracy (Section 5.2.3), at least 6%-9% of the original or mildly filtered dataset DS8 is enough to deliver accurate results. 5.2.3

4

Filtering threshold (Dataset size)

Price of Anarchy (PoA) across dataset size (T)

4

5

T=0.0 T=0.1 T=0.2 T=0.3 T=0.4 T=0.5 T=0.6 T=0.7 T=0.8 (N = 97) (N = 69) (N = 68) (N = 63) (N = 37) (N = 31) (N = 28) (N = 13) (N = 6)

The PoA checks how the system efficiency degrades with selfish behaviour from the agents through the ratio between the optimal solution (maximum welfare of all explored strategies σ ∈ H) and the achieved equilibrium (welfare of the optimal joint profile σ ∗ ). The perfect ratio, and minimum boundary, is 1. Fig. 9 showcases the distribution of the PoA values across different dataset sizes; and averaged values are provided in Table A.1. There, PoA stays equal or very close to 1 for both learning algorithms in the clustered mode; and grows with the full (large) MAID for both learning algorithms until T = 0.5, especially increased for EXP3 and suffering from spikes in some outliers. 5

6

1

The efficiency of the system is measured by (i) the Price of Anarchy (PoA) from Eq. (9), which measures the efficiency of the gametheoretic equilibrium; as well as the (ii) minimum number of SPCSFs, which heavily depends on the dataset size and is also limited by an internal budget control to avoid recommending unnecessary controls when security requirements are covered – and thus limit overprovisioning. PoA =

Clustered / hedge Clustered / exp3 Full / hedge Full / exp3

• The satisfaction coverage, in Eq. (11a), measures the provided coverage per agent, ensuring its satisfaction to avoid under- or over provisioning.

Accuracy

• The resource efficiency, in Eq. (11b), measures overprovisioning, as an unnecessary bloat that adds nothing to cover the security requirements.

The accuracy is measured by (i) the satisfaction ratios, which measure how well each requirement to cover a security dimension is achieved, 14

• The weighted Jaccard similarity index, or Intersection over Union (IoU), calculates how well the generated array (or shape) for the recommendation aligns with respect to the array (or shape) of the provided security requirements. This is computed in Eq. (11c) and where xi = ai , yi = τi as a 1D array; yet the formula can also be used for a 2D plane – which is, after all, the graphical representation of the covered requirements.

Satisfaction coverage = Resource efficiency =

P|A|

a=1 min(ca , τa ) P|A| a=1 τa

P|A|

a=1 min(ca , τa ) P|A| a=1 ca

P|A|

a=1 min(ca , τa ) Jaccard (IoU) = P|A| a=1 max(ca , τa )

between the requested one, per agent a. See Fig. 13, showing the progression of the average satisfaction per a across each threshold T . This plot provides detail on which a are most affected by the reduction of the dataset size as T increases: except for confidentiality, integrity and accountability, other SPCSFs are gradually affected or even drastically - the more with under-covered security dimensions for SPCSFs, as for non-repudiation and privacy (Table 4).

(11a)

Satisfaction ratio across dataset size (T) CONFIDENTIALITY

(11b)

High (1.0)

PRIVACY Intermediate (0.6)

Low (0.3)

None

NONREPUDIATION

Efficiency (target area / provided area)

AVAILABILITY

ACCOUNTABILITY

Resource efficiency across dataset size (T) 1.0

AUTHENTICITY

Figure 13: Satisfaction ratio from T=0.0 to T=0.8, 100 iterations

0.9 0.8

Fig. 14 depicts the IoU, diminishing steadily from the full dataset with 77% (T = 0.0, with 97 SPCSFs) towards the minimal dataset (T = 0.8, with 6 SPCSFs), with 35%. At T = 0.5, the intersection of the recommended VS requested security requirements drops below 60%, impacted already by the lack of SPCSFs in the dataset with enough total score and dimension coverage.

0.7 0.6

0.4

INTEGRITY

(11c)

The average resource efficiency (Fig. 11) stays relatively constant, between 72% and 82%. This hints that the over-provisioning varies between 18% and 28%. When the recommended SPCSFs are more specialised and better fit few expected security requirements, less over-provisioning is expected. The high variability observed as T increases could be derived from less specialised controls that may be providing extra, unrequested coverage. An example of this is visible in the single runs shown in Fig. 8 and Fig. 18; where some SPCSFs over-contribute and negatively impact this metric.

0.5

Clustered / hedge Clustered / exp3 Full / hedge Full / exp3

T=0.0 T=0.1 T=0.2 T=0.3 T=0.4 T=0.5 T=0.6 T=0.7 T=0.8 (N = 97) (N = 69) (N = 68) (N = 63) (N = 37) (N = 31) (N = 28) (N = 13) (N = 6)

Geometric fit (profile's IoU) across dataset size (T)

Filtering threshold (Dataset size)

Clustered / hedge Clustered / exp3 Full / hedge Full / exp3

Intersection over Union (IoU)

0.9

Figure 11: Resource efficiency from T=0.0 to T=0.8, 100 iterations

The satisfaction coverage, shown in Fig. 12, proves that until T = 0.3, all security requirements are almost fully covered at 99%-100%. Beyond it, and due to the smaller datasets and lesser availability of SPCSFs, this coverage drops to 73% on T = 0.5 (31 SPCSFs) and to ∼40% from T = 0.7 (6-13 SPCSFs). Target satisfaction across dataset size (T)

0.8 0.7 0.6 0.5 0.4 0.3 0.2 0.1

1.0

Satisfaction coverage ratio

T = 0.0 T = 0.1 T = 0.2 T = 0.3 T = 0.4 T = 0.5 T = 0.6 T = 0.7 T = 0.8

T=0.0 T=0.1 T=0.2 T=0.3 T=0.4 T=0.5 T=0.6 T=0.7 T=0.8 (N = 97) (N = 69) (N = 68) (N = 63) (N = 37) (N = 31) (N = 28) (N = 13) (N = 6)

Filtering threshold (Dataset size)

0.8

Figure 14: Jaccard / IoU metric from T=0.0 to T=0.8, 100 iterations 0.6

On the other hand, the considered geometric metrics are:

0.4 0.2

Clustered / hedge Clustered / exp3 Full / hedge Full / exp3

• The area coverage, in Eq. (12a), assesses the percentage of the area of the requested security requirements that is also covered by the area of the recommended security controls. This indirectly measures under-provisioning; which is one of the key (utility) terms to minimise.

T=0.0 T=0.1 T=0.2 T=0.3 T=0.4 T=0.5 T=0.6 T=0.7 T=0.8 (N = 97) (N = 69) (N = 68) (N = 63) (N = 37) (N = 31) (N = 28) (N = 13) (N = 6)

Filtering threshold (Dataset size)

• The area efficiency, in Eq. (12b), indirectly measures overprovisioning; as it identifies which area from the recommended security controls contributes to fill/intersect the area from the requested security requirements.

Figure 12: Satisfaction coverage from T=0.0 to T=0.8, 100 iterations

Another way to look at how well the coverage is satisfied is the satisfaction ratio, which simply divides the recommended coverage 15

Area coverage =

Area(min(⃗c, ⃗τ )) Area(⃗τ )

Area(min(⃗c, ⃗τ )) Area efficiency = Area(⃗c)

two, and the number of users (n) and the quadratic sum of the same resources. In this context, n = |A| and resources are satisfaction ratios.

(12a)

2 Pn i=1 xi P J (x1 , ..., xn ) = 2 n· n i=1 xi

(12b)

The outcome denotes the equity of the system in that the provided recommendations do not sacrifice too much to cover a given agent at the expense of others. This situation is more evident upon negative synergies across clusters or SPCSFs. The perfect ratio, and maximum boundary, is 1; with the minimum being 1/n.

Since this is a 2D plane, the area of each polygon with |A| and formed by a vector ⃗x is computed for both metrics with Eq. (13). Other common operations are the intersection vector between each element of the security coverage array (ai ) and the target array ⃗τ , with min(⃗a, ⃗τ ). 

2π |A|

X |A|

Distributed coverage (fairness) across dataset size (T)

xi · xi+1 | x|A|+1 = x1

Fairness (coverage by SPCSFs / agent)

1 Area(⃗x) = sin 2

(13)

i=1

Coverage of recommended VS requested area

The area coverage is shown in Fig. 15. It follows a trend that is relatively similar to that in the satisfaction coverage (Fig. 12), demonstrating how between T = 0.0 and T = 0.3 the security recommendations are almost perfectly aligned with the security requirements and how it drops around ∼50% accuracy starting in T = 0.5, where only 32% of the initial implementable SPCSFs are then available.

1.0 0.9 0.8 0.7 0.6 0.5 0.4

Clustered / hedge Clustered / exp3 Full / hedge Full / exp3

T=0.0 T=0.1 T=0.2 T=0.3 T=0.4 T=0.5 T=0.6 T=0.7 T=0.8 (N = 97) (N = 69) (N = 68) (N = 63) (N = 37) (N = 31) (N = 28) (N = 13) (N = 6)

Area coverage across dataset size (T)

Filtering threshold (Dataset size)

1.0 0.8

Figure 17: Jain’s fairness from T=0.0 to T=0.8, 100 iterations

0.6

In this case, the Jain’s fairness (Fig. 17) is stable at 1 until T = 0.3, after which it stabilises at 0.81-0.82 until T = 0.6 and degrades until reaching 0.49.

0.4 0.2 0.0

Clustered / hedge Clustered / exp3 Full / hedge Full / exp3

5.3

Figure 15: Area coverage from T=0.0 to T=0.8, 100 iterations

Fig. 16 plots the area efficiency as highly variable (highest SD in Table A.1). This lesser availability of SPCSFs for suggestion is likely introducing extra, not needed coverage on each of the requested agents. Area efficiency across dataset size (T) 1.0 0.8 0.6 0.4 0.2 0.0

Clustered / hedge Clustered / exp3 Full / hedge Full / exp3

T=0.0 T=0.1 T=0.2 T=0.3 T=0.4 T=0.5 T=0.6 T=0.7 T=0.8 (N = 97) (N = 69) (N = 68) (N = 63) (N = 37) (N = 31) (N = 28) (N = 13) (N = 6)

Filtering threshold (Dataset size)

Figure 16: Area efficiency from T=0.0 to T=0.8, 100 iterations

5.2.4

Use case evaluation

The 7 considered security dimensions are already considered as part of the 8 security goals, extended from the CIA triad in the Reference Model of Information Assurance & Security (RMIAS) or IAS-Octave [8] framework. The authors provide a qualitative analysis of an organisation’s information security policies, qualitatively mapping a subset of these to the CIA triad and the accountability security dimensions. Similarly, authors from [56] analyse a Bring Your Own Device (BYOD) environment and suggest that both the CIA, accountability and auditability (potentially considered as a group under authenticity), privacy and non-repudiation security dimensions are required to ensure traceability of users’ devices for post-incident analyses. Based on the above, this section first performs a high-level analysis of an IT enterprise environment to extract its requirements in terms of security dimensions, roughly quantifying these. These are used as a specific use case to validate against the proposed recommender. A common, non-critical IT enterprise delivers solutions that are often protected by Intellectual Property Rights (IPR), leverages private/public cloud resources to carry out the work and may allow BYOD to some extent. The security of the data generated is subject to IPR and guided through institutional security policies. Likewise, the proper functioning and security of the hardware and tools in use is dictated by security policies that monitor and alert about malfunctioning, filter specific applications or actions within a system and continuously monitor the security posture of both internal and BYOD devices to grant (Zero Trust) access to network segments and the resources accessible by these. In this sense, such an environment emphasises data confidentiality to conform to the IPR internal regulation. It also requires maintaining good availability and integrity for both internal and potentially customer-exposed data and services, as well as a degree of privacy when processing human data to cover regulatory requirements. Authenticity, accountability and non-repudiation are needed to minimise unauthorised access to such resources and to identify who did what when analysing incidents. Considering this, an

T=0.0 T=0.1 T=0.2 T=0.3 T=0.4 T=0.5 T=0.6 T=0.7 T=0.8 (N = 97) (N = 69) (N = 68) (N = 63) (N = 37) (N = 31) (N = 28) (N = 13) (N = 6)

Filtering threshold (Dataset size)

Efficiency of recommended VS requested area

(14)

Equity

The fairness or equity of the system is assessed by the Jain’s index in Eq. (14). This index is commonly used to evaluate resource consumption in networks (e.g. assigned network flows), and provides a ratio between the sum of the resources to share (xi ), powered to 16

Table 11: Summarised evaluation results (mode = all, T = 0.0 to T = 0.3).

operator setting up the supporting environment for such organisation may quantify security requirements ⃗τ as those from Table 9. Table 9: Required (⃗ τ ) and covered (⃗c) security dimensions per M and T . Dim.

Req. (τ )

C I A Au Ac Nr Pr

0.70 0.60 0.65 0.45 0.50 0.35 0.40

⃗c (T = 0.0)

⃗c (T = 0.4)

M = Clustered

M = Full

M = Clustered

M = Full

0.70 (AC-4) 0.60 (SI-3) 0.70 (AC-7) 0.50 (IA-4) 0.50 (IA-4) 1.00 (AU-10) 0.40 (SI-18)

0.80 (SI-15) 0.60 (SI-3) 0.70 (AC-7) 0.50 (IA-4) 0.50 (IA-4) 1.00 (AU-10) 0.40 (SI-18)

0.70 (AC-4) 0.60 (AU-9) 0.70 (AC-7) 0.50 (IA-4) 0.50 (IA-4) 0.20 (SC-16)

0.70 (AC-4) 0.60 (SI-3) 0.70 (AC-7) 0.50 (IA-4) 0.50 (IA-4) 0.20 (SC-16)

Table 10: Statistics for single use case executions (aggregated L per M ). T = 0.0 Time (L) Time (R) Fairness Cost (|R|) Sat. Cov. Res. Eff. Prof. IoU NDCG (Min)

T = 0.4

M = Clustered

M = Full

M = Clustered

M = Full

3.4853 0.0026 1 6 1 0.8295 0.82955 0.9945

27.2730 0.0031 1 6 1 0.8111 0.8111 0.9618

1.1592 0.0013 0.8231 5 0.8493 0.9688 0.8267 0.9963

10.7252 0.0019 0.8231 5 0.8493 0.9688 0.8267 0.9817

This use case is specially illustrative as it exhibits both over- and under- provisioning — where the latter is even more critical to avoid, as indicated in Section 4.3.3. Over-provisioning occurs at T = 0.0, with all available SW-implementable SPCSFs (N = 97): Fig. 18a and Fig. 18b show a spike at Nr and offering maximum coverage, well beyond the explored decision space and the targeted security requirements that directly or indirectly act as bounds. Only 2 SPCSFs cover Nr (Table 4), namely AU-8 and AU-10; which offer coverage of 0.2 and 1 and have a total score of 0.071 and 0.392, respectively. AU10 can thus avoid under-provisioning. Under-provisioning happens at T = 0.4, with N = 37 SPCSFs: there, Fig. 18c and Fig. 18d show a lack of coverage on Nr because AU-10’s total score is just below the filtered T . Pr also suffers from under-provision at this point, since the only 2 SPCSFs after the score filtering are AC-19 and SC-16 with coverage of 0.1 and 0.2, respectively. With such a limited pool of SPCSFs, these cannot be fully met. 5.4

Greedy (naive)

Greedy (filtered)

Proposed

Time (R) Fairness Cost (|R|) Sat. Cov. Res. Eff. Prof. IoU NDCG (Min)

0.0017 ± 0.00 0.8632 ± 0.11 45.1137 ± 16.75 0.7766 ± 0.17 0.5456 ± 0.11 0.4658 ± 0.12 0.8544 ± 0.11

0.0019 ± 0.00 0.9952 ± 0.02 6.0175 ± 0.81 0.9857 ± 0.03 0.6953 ± 0.10 0.6878 ± 0.10 0.8488 ± 0.11

0.0020 ± 0.00 0.9987 ± 0.01 5.8925 ± 0.84 0.9896 ± 0.02 0.7319 ± 0.09 0.7258 ± 0.09 0.9860 ± 0.01

Table 11 roughly compares two greedy recommenders with (i) a naive one and (ii) a bounded, filtered one used as baseline; and (iii) the recommender proposed in this work. It shows the aggregated average and SD values resulting from 100 iterations and across all full and clustered modes, displaying a subset of relevant metrics and thresholds, where T = 0.3 is the turning point for all recommending approaches (Section 5.5). The proposed recommender shows improved values for all metrics, except for the recommendation time R, since it has to run extra steps on e.g. the received profile σ ∗ and the mode M processing (clustered vs full). It is also worth noting that, ⃗ is enough to maximise coverage, it does whilst directly using ⃗τ as β actively ignore the identified synergies across security dimensions and the overall agreement, calculated in the utility functions (Section 4.3) to also minimise over-provisioning — which is not sufficiently addressed by the filtering logic during the recommendation stage. Table A.2 compiles the detailed baseline values and deviation for each metric and threshold, and it is compared against the corresponding values for Hedge and EXP3 in the rows named ∆1 and ∆2 , respectively. Improving ↑ and worsening ↓ indicators are placed next to each value. The time (performance, R) taken by both approaches is in the order of milliseconds, where the baseline halves that of the proposed recommender. This is so because the latter needs multiple passes to fine-tune SPCSF selection and limit SPCSF overprovisioning when issuing recommendations, whilst maintaining a high accuracy. Such accuracy is consistently higher for all dataset sizes (T ) of the proposed recommender compared to that of the baseline and is as a trade-off for the slight increase in time.

The recommender is run once with the indicated requirements, testing both modes M and methods L and using both the full pool of SPCSFs (T = 0.0) and a constrained one (T = 0.4) to assess the changing behaviour. Fig. 18 and Table 9 represent the DSS outcomes in graphical and tabular form: the suggested SPCSFs and the coverage ⃗c per security dimension. This is shown here across modes M and T values whilst pinning L to EXP3 for brevity. Among the proposed SPCSFs are those preserving integrity (SI-3: Malicious Code Protection, AU-9: Protection of Audit Information), availability (AC-7: Unsuccessful Logon Attempts) or authenticity (IA-4: Identifier Management). Table 10 shows averaged values for relevant metrics across both learning methods L.

Metric

Metric

5.5

Analysis

Regarding the internal evaluation (Section 5.2), the satisfaction ratio, area coverage and fairness are of 97%-100% between T = 0.0 and T = 0.2 (i.e. with 68-97 SPCSFs). There, 6 SPCSFs are needed to achieve a high accuracy. Between T = 0.3 and T = 0.4 (37-63 SPCSFs), there is already a significant drop in the satisfaction and area coverage along with the IoU. However, the satisfaction coverage of the security requirements is still good for T = 0.3 (99%). T = 0.3 acts as the turning point where many metrics degrade for both the proposed recommender and the baseline. Starting from T = 0.5, the dataset only provides 31 SPCSFs; with the satisfaction coverage dropping below 80% and the IoU dropping below 60%, denoting severe under-provisioning; which must be avoided. Whilst there are some side benefits to a small number of SPCSFs (higher resource efficiency with less over-provisioning, a PoA that gradually reduces to its theoretical target and a steadily increasing NDCG), such a small dataset is clearly not enough to fulfil the requirements. Summing up, the dataset DS8 should not be heavily filtered and rather rely on adequate (likely customised) budget controls that can limit the recommendation of SPCSFs to ensure the operator does not incur too much effort to achieve the desired degree of security. With at least 63 SPCSFs, the satisfaction coverage, satisfaction ratio and NDCG stay close or equal to 100%. When compared against the baseline (Section 5.4), this work shows a consistent improvement in area efficiency, resource efficiency and profile IoU (up to 21.43%, 10.59% and 10.70% for T = 0.0), with improvements up to T ≤ 0.3. The provisioning-conscious ranking NDCG score, which recommends minimal SPCSF sets, is naturally

Evaluation against baseline

A greedy recommender that is bounded and filtered was implemented as baseline for the evaluation. Similar to the dynamic pruning stage at Algorithm 3 (lines 15-23), it also applies a budget B and ⃗ (the direct security requirements ⃗τ ) to limit overupper bounds β provisioning. This baseline first collects the coverage and score per SPCSF from the dataset, then sorts these using that score and iterates through these while the requirements are still not met and the budget is not exhausted. Only SPCSFs that increase the existing coverage while not exceeding the requirement bounds are added. Ultimately, it performs another pass to filter out redundant controls and thus suggest a minimal subset. 17

CONFIDENTIALITY

High (1.0)

PRIVACY

Target coverage Recommended coverage Explored coverage space Maximal coverage Explored decision space Explored states Trajectory direction

CONFIDENTIALITY

High (1.0)

INTEGRITY 0.70/0.70 [AC_4] 0.40/0.40 [SI_18]

PRIVACY

1.00/0.35 [AU_10]

Intermediate (0.6)

0.40/0.40 [SI_18]

0.60/0.60 Low (0.3) [SI_3]

AVAILABILITY

0.50/0.45 [IA_4]

ACCOUNTABILITY

High (1.0)

PRIVACY 0.70/0.70 [AC_4]

Intermediate (0.6)

0.60/0.60 Low (0.3) [SI_3]

NONREPUDIATION

AUTHENTICITY

1.00/0.35 [AU_10]

ACCOUNTABILITY

(a) Clustered M (T = 0.0)

CONFIDENTIALITY

High (1.0)

PRIVACY

AVAILABILITY

0.50/0.45 [IA_4]

NONREPUDIATION

AUTHENTICITY

0.50/0.50 [IA_4]

ACCOUNTABILITY

(b) Full M (T = 0.0)

Intermediate (0.6)

0.60/0.60 Low (0.3) [SI_3]

0.20/0.40 [SC_16]

None

0.00/0.35

Target coverage Recommended coverage Explored coverage space Maximal coverage Explored decision space Explored states Trajectory direction

INTEGRITY 0.70/0.70 [AC_4]

Intermediate (0.6)

0.60/0.60 Low (0.3) [AU_9]

0.20/0.40 [SC_16]

0.70/0.65 [AC_7] 0.50/0.50 [IA_4]

Target coverage Recommended coverage Explored coverage space Maximal coverage Explored decision space Explored states Trajectory direction

INTEGRITY

None

0.70/0.65 [AC_7] 0.50/0.50 [IA_4]

CONFIDENTIALITY

INTEGRITY 0.80/0.70 [SI_15]

None

NONREPUDIATION

Target coverage Recommended coverage Explored coverage space Maximal coverage Explored decision space Explored states Trajectory direction

None

0.00/0.35

0.70/0.65 [AC_7]

AVAILABILITY

0.50/0.45 [IA_4]

NONREPUDIATION

AUTHENTICITY

(c) Clustered M (T = 0.4)

0.50/0.50 [IA_4]

ACCOUNTABILITY

0.70/0.65 [AC_7]

AVAILABILITY

0.50/0.45 [IA_4]

AUTHENTICITY

(d) Full M (T = 0.4)

Figure 18: MAID M exploration and recommendation for the use case with EXP3 as L

of SPCSFs and reduces its variability and discriminative potential. Another aspect to consider is that the dataset is explicitly biased towards SW-implementable SPCFs, which inherit higher scores from the source datasets and result in a higher total score which keeps these available across higher T during the dataset filtering. Interpreting large amounts of descriptions for the SPCSFs from the OSCAL catalogue [13] and online resources [28] was delegated to a GenAI model (Gemini 2.5 Pro) to create DS4 and identify how much a SPCSF contributes to preserve a security dimension. The reader may assess the validity of this mapping by reviewing DS8 the "coverage_justification" column, explaining the rationale behind the assignment. An alternative is to perform a deterministic, replicable text parsing and analysis, with coverage being inferred through the frequency of keywords and their weight towards security dimensions based on authoritative sources like OSCAL [13], CNSSI 1253 [30] or community-backed resources [57]. However, it is worth noting that human subjectivity can be brought into the process directly (e.g. expert survey, as in DS2∗ ) or indirectly (through GenAI or assumed keywords and weights for text analysis). A highly robust approach would possibly involve formal modelling of security dimensions and protected resources, running sandboxed emulated or real attacks and mitigating mechanisms and observing the impact of both. Besides, the dataset provides only up to the granularity of SPCSFs. It would be, however, interesting to also relate SPCSFs to categories of mechanisms, and mechanisms to specific frameworks or tools. [58] shows an example with custom security controls, categories and mechanisms.

higher for all T (up to 27.09% in T = 0.6). Also, the cost (numbers of controls used) is slightly smaller until T ≤ 0.3, reducing up to 6.03% for T = 0.0. This suggests some better adjustment and minimal overprovisioning than that from the baseline.

6

Discussion and conclusion

This section discusses the overall idea and behaviour of the proposed dataset and DSS, considering their assumptions and limitations; and concludes by summarising the contributions and future lines of work to consider. 6.1

Discussion

The proposed DSS is targeted at system operators with limited or no cybersecurity background, aiming to guide them on the initial security setup. It thus assumes that cybersecurity experts are not in the loop to further curate or validate the dataset – although it relies on wellknown frameworks and adaptable data processing to incorporate new partial scores and recalculate the total one ultimately used by the recommender. The dataset is constructed by correlating, transforming (i.e. often normalising) and aggregating multiple sources, keeping its average as partial and total scores. The latter is used as a normal distribution in the MAID chance nodes to account for potential minor variability in the scores from the list of SPCSFs (Section 4.4.1). From the evaluations in Section 5 it can be extracted that DSS performs best when it can select at least from N = 63 SPCSFs (T = 0.0 to T = 0.3), achieving an accuracy (measured as area coverage and satisfaction ratio) of 97%-99% and 99%-100%, respectively. T = 0.3 is seen as the turning point, where these drop to 60% and 80% but the system works well. After this, a massive drop in area coverage suggests under-provisioning problems, which should be avoided as it noticeably degrades the recommendation due to the narrower coverage of the remaining SPCSFs towards the security dimensions. For best results, an organisation should cover at least 63 SPCSFs; although with at least 28 SPCSFs it could still deliver reasonably well for well-covered security dimensions (e.g. others than accountability and privacy, as per Section 5.3). 6.2

6.2.2

The recommender process also runs on some assumptions that impact its outcome. The DSS algorithm discretises the decision space into four categories (Section 4.4.2) that align with traditional security baselines used in InfoSec and regulatory sources. This decreases the exploration space for a game-theoretic approach at the cost of less granularity in this stage, thus requiring a fine-tuning (recommending) stage to provide fine-grained coverage and identify attribution of SPCSFs to security dimensions. Combining (i) fine-grained profiles (e.g. based in coverage deciles) and (ii) a suitable application of the Shapley value (assuming a coalition-based game) in the utility functions to extract attribution could possibly remove the second recommending and pruning stage. Regarding its output, it does not return a pure deterministic outcome across varying M values (although it seems to do so for L), as sometimes different SPCSFs can be suggested depending on the number of clusters and their arrangements. See Table 9 and Fig 18. On the other hand, coverage and scoring are here simplified to few attributes; yet a more advanced model should consider the nuances of the resources to protect and adequately expand the representing features or dimensions.

Limitations

This section documents how some assumptions from the dataset generation and the recommendation algorithm introduce limitations that must be considered. 6.2.1

Recommender-related limitations

Data-related limitations

The dataset is obtained by correlating existing peer-reviewed sources of different types and sources (Table 1). When correlating data of different granularity and size, such aggregation can incur loss of detail. This happens for DS2∗ [14], which maps expert-provided scores to 36 security processes in their taxonomy and to other frameworks (e.g. NIST CSF). The translation between NIST CSF to NIST SP 800-53 rev5 relates 20 categories from the former to 300 SPCSFs from the latter; which introduces repeated scores for different types

6.3

Conclusion and future work

This work presented a scalable, accurate and fair security DSS to recommend NIST SP 800-53 rev5 security and privacy controls (SPCSFs), leveraging for decision a dataset extended from academic 18

and InfoSec sources; which can be further adapted by users with cybersecurity exposure and extended by researchers. It is implemented as a game-theoretic MAID, where multiple agents -representing the security dimensions to cover- apply no-regret learning to each utility function, maximising its payoff. The outcome is the recommended subset of SPCSFs that best meet the provided security requirements from the available SPCSF pool. Future steps to evaluate in this research currently consider three fronts: (i) easing the extraction of the user-defined coverage for the security requirements from other kinds of datasets, such as those containing a subset of relevant threats for an organisation; (ii) evaluating games modelling the adversarial behaviour based on its profile (i.e. applying specific tactics and techniques), potentially integrating the results of real or simulated campaigns as feedback to the modelling of the behaviour for the defenders; as well as (iii) improving the granularity and completeness of recommendations through an open source-derived taxonomy relating SW-implementable mechanisms for defenders related to both NIST SP 800-53 rev5 and MITRE ATT&CK.

Generative AI tools usage declaration During the preparation of this work, the authors used Gemini 2.5/3 Pro, GPT 5.2 and Google NotebookLM for academic literature exploration, InfoSec interpretation, code prototyping, LaTeX editing, figure rendering and language revision. GenAI tools were used in a limited and supervised manner. All results were reviewed, corrected, and validated by the authors. The authors take full responsibility for the content of this article.

CRediT authorship contribution statement Carolina Fernández-Martínez: writing – review & editing, writing – original draft, visualisation, validation, software, resources, project administration, methodology, investigation, formal analysis, data curation, conceptualisation. Shuaib Siddiqui: writing – review & editing, project administration, funding acquisition, supervision, conceptualisation. Vanesa Daza: writing – review & editing, supervision, conceptualisation.

Code and data availability The dataset generated in Section 3 and the code used to generate it are available at [59]. Both the dataset and the code used in Sections 4 and 5 are available at [60].

Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper.

Funding This work was supported by the grant 6G PID2024-163028OB-I00, funded CIU/AEI/10.13039/501100011033/FEDER, EU.

COALESCEby MI-

Acknowledgements The authors would like to thank Estela Carmona-Cejudo for her advice on improving the mathematical formulation and the consistency and correctness of the utility function; as well as Amir Ansari for his insights on the MAID modelling and working sessions on BN and probabilistic-related validation. The authors also acknowledge the Spanish Recovery, Transformation and Resilience Plan through the European Union (Next Generation) under grant AEI-PID2021128521OB-I00.

Appendices Table A.1 details the full evaluation of the recommender, whereas Table A.2 shows the comparison against the greedy, filtered baseline. These can be found as appendices.

19

Table A.1: Full evaluation results per threshold, mode and method (T = 0.0 to T = 0.8). Configuration T

N

0.0 97

0.1 69

0.2 68

0.3 63

0.4 37

0.5 31

0.6 28

0.7 13

0.8

6

Mode Clustered Full Clustered Full Clustered Full Clustered Full Clustered Full Clustered Full Clustered Full Clustered Full Clustered Full

Method

Time M

L

Cost & Fairness

Accuracy Metrics

R

PoA

Fairness

Cost (|R|)

Sat. Ratio

Sat. Cov.

Res. Eff.

Prof. IoU

Area Cov.

Area Eff.

Hedge EXP3 Hedge EXP3

0.1085 ± 0.02 4.4649 ± 0.09 0.1085 ± 0.01 2.3449 ± 0.05 0.0079 ± 0.00 35.6978 ± 0.49 0.0079 ± 0.00 18.0905 ± 0.27

0.0017 ± 0.00 0.0018 ± 0.00 0.0036 ± 0.00 0.0035 ± 0.00

1.00 ± 0.00 1.00 ± 0.00 1.21 ± 0.13 1.29 ± 0.16

1.00 ± 0.01 1.00 ± 0.01 1.00 ± 0.01 1.00 ± 0.01

5.78 ± 0.91 5.77 ± 0.92 1.00 ± 0.02 5.78 ± 0.88 5.84 ± 0.90

1.00 ± 0.01 1.00 ± 0.01 1.00 ± 0.01 1.00 ± 0.01

0.77 ± 0.08 0.77 ± 0.09 0.76 ± 0.09 0.76 ± 0.08

0.77 ± 0.08 0.77 ± 0.09 0.76 ± 0.08 0.76 ± 0.08

0.99 ± 0.02 0.99 ± 0.02 0.99 ± 0.02 0.99 ± 0.02

0.58 ± 0.14 0.58 ± 0.14 0.57 ± 0.13 0.57 ± 0.13

NDCG (Score) NDCG (Min) 0.82 ± 0.08 0.82 ± 0.08 0.52 ± 0.17 0.52 ± 0.17

0.99 ± 0.01 0.99 ± 0.01 0.96 ± 0.01 0.96 ± 0.01

Hedge EXP3 Hedge EXP3

0.0933 ± 0.01 2.8956 ± 0.02 0.0937 ± 0.01 1.5554 ± 0.02 0.0069 ± 0.00 25.2836 ± 0.20 0.0068 ± 0.00 12.8225 ± 0.09

0.0014 ± 0.00 0.0014 ± 0.00 0.0024 ± 0.00 0.0023 ± 0.00

1.00 ± 0.00 1.00 ± 0.00 1.23 ± 0.17 1.32 ± 0.21

1.00 ± 0.00 1.00 ± 0.00 1.00 ± 0.00 1.00 ± 0.00

5.90 ± 0.83 5.87 ± 0.84 0.99 ± 0.02 5.88 ± 0.82 5.89 ± 0.84

0.99 ± 0.02 0.99 ± 0.02 0.99 ± 0.02 0.99 ± 0.02

0.73 ± 0.10 0.73 ± 0.09 0.72 ± 0.09 0.72 ± 0.09

0.72 ± 0.09 0.72 ± 0.09 0.71 ± 0.09 0.71 ± 0.09

0.97 ± 0.04 0.97 ± 0.04 0.97 ± 0.04 0.97 ± 0.04

0.52 ± 0.15 0.52 ± 0.15 0.51 ± 0.14 0.51 ± 0.14

0.95 ± 0.04 0.95 ± 0.04 0.67 ± 0.09 0.67 ± 0.09

1.00 ± 0.00 1.00 ± 0.00 0.98 ± 0.01 0.98 ± 0.01

Hedge EXP3 Hedge EXP3

0.0963 ± 0.01 2.1793 ± 0.02 0.0963 ± 0.01 1.1889 ± 0.01 0.0067 ± 0.00 24.9448 ± 0.22 0.0068 ± 0.00 12.6591 ± 0.12

0.0013 ± 0.00 0.0014 ± 0.00 0.0023 ± 0.00 0.0022 ± 0.00

1.00 ± 0.00 1.00 ± 0.00 1.24 ± 0.14 1.32 ± 0.19

1.00 ± 0.00 1.00 ± 0.00 1.00 ± 0.00 1.00 ± 0.00

5.88 ± 0.79 5.87 ± 0.81 0.99 ± 0.02 5.89 ± 0.80 5.87 ± 0.80

0.99 ± 0.02 0.99 ± 0.02 0.99 ± 0.02 0.99 ± 0.02

0.73 ± 0.09 0.73 ± 0.10 0.72 ± 0.09 0.72 ± 0.09

0.72 ± 0.09 0.72 ± 0.09 0.71 ± 0.09 0.71 ± 0.09

0.97 ± 0.04 0.97 ± 0.04 0.97 ± 0.04 0.97 ± 0.04

0.52 ± 0.15 0.52 ± 0.15 0.51 ± 0.14 0.51 ± 0.14

0.95 ± 0.04 0.95 ± 0.04 0.68 ± 0.08 0.68 ± 0.08

1.00 ± 0.00 1.00 ± 0.00 0.98 ± 0.01 0.98 ± 0.01

Hedge EXP3 Hedge EXP3

0.0807 ± 0.01 3.2711 ± 0.03 0.0825 ± 0.01 1.7434 ± 0.01 0.0067 ± 0.00 23.1164 ± 0.15 0.0067 ± 0.00 11.7480 ± 0.08

0.0013 ± 0.00 0.0014 ± 0.00 0.0022 ± 0.00 0.0021 ± 0.00

1.00 ± 0.00 1.00 ± 0.00 1.26 ± 0.15 1.35 ± 0.23

1.00 ± 0.00 1.00 ± 0.00 1.00 ± 0.00 1.00 ± 0.00

6.02 ± 0.80 6.01 ± 0.81 0.99 ± 0.02 6.01 ± 0.82 6.02 ± 0.79

0.99 ± 0.02 0.99 ± 0.02 0.99 ± 0.02 0.99 ± 0.02

0.72 ± 0.10 0.72 ± 0.10 0.71 ± 0.09 0.71 ± 0.09

0.71 ± 0.09 0.71 ± 0.09 0.70 ± 0.09 0.71 ± 0.09

0.97 ± 0.04 0.97 ± 0.04 0.97 ± 0.04 0.97 ± 0.04

0.51 ± 0.15 0.51 ± 0.15 0.50 ± 0.14 0.50 ± 0.15

0.94 ± 0.04 0.94 ± 0.04 0.69 ± 0.08 0.69 ± 0.08

1.00 ± 0.00 1.00 ± 0.00 0.98 ± 0.01 0.98 ± 0.01

Hedge EXP3 Hedge EXP3

0.0733 ± 0.01 1.4277 ± 0.02 0.0724 ± 0.01 0.8154 ± 0.02 0.0060 ± 0.00 13.7731 ± 0.20 0.0062 ± 0.00 7.0427 ± 0.11

0.0010 ± 0.00 0.0010 ± 0.00 0.0018 ± 0.00 0.0017 ± 0.00

1.00 ± 0.00 1.00 ± 0.00 1.30 ± 0.21 1.52 ± 0.34

0.82 ± 0.04 0.82 ± 0.04 0.82 ± 0.04 0.82 ± 0.04

4.81 ± 0.80 4.82 ± 0.80 0.80 ± 0.06 4.80 ± 0.82 4.80 ± 0.82

0.77 ± 0.09 0.77 ± 0.09 0.77 ± 0.09 0.77 ± 0.09

0.77 ± 0.09 0.77 ± 0.09 0.76 ± 0.09 0.76 ± 0.09

0.62 ± 0.09 0.62 ± 0.09 0.62 ± 0.09 0.62 ± 0.09

0.60 ± 0.18 0.60 ± 0.18 0.60 ± 0.18 0.60 ± 0.18

0.56 ± 0.17 0.56 ± 0.17 0.54 ± 0.16 0.54 ± 0.16

0.98 ± 0.01 0.98 ± 0.01 0.83 ± 0.05 0.83 ± 0.05

1.00 ± 0.00 1.00 ± 0.00 0.99 ± 0.01 0.99 ± 0.01

Hedge EXP3 Hedge EXP3

0.0764 ± 0.01 2.6171 ± 0.07 0.0799 ± 0.01 1.4106 ± 0.04 0.0067 ± 0.00 11.8394 ± 0.19 0.0070 ± 0.00 6.0813 ± 0.11

0.0010 ± 0.00 0.0011 ± 0.00 0.0017 ± 0.00 0.0016 ± 0.00

1.00 ± 0.00 1.00 ± 0.00 1.34 ± 0.23 1.60 ± 0.39

0.81 ± 0.04 0.81 ± 0.04 0.81 ± 0.04 0.81 ± 0.04

4.57 ± 0.90 4.58 ± 0.90 0.77 ± 0.10 4.56 ± 0.90 4.56 ± 0.90

0.73 ± 0.10 0.73 ± 0.10 0.73 ± 0.10 0.73 ± 0.10

0.76 ± 0.09 0.77 ± 0.09 0.76 ± 0.09 0.76 ± 0.09

0.59 ± 0.09 0.59 ± 0.09 0.59 ± 0.09 0.59 ± 0.09

0.56 ± 0.19 0.56 ± 0.19 0.56 ± 0.19 0.56 ± 0.19

0.54 ± 0.17 0.54 ± 0.17 0.54 ± 0.17 0.54 ± 0.17

0.98 ± 0.01 0.98 ± 0.01 0.87 ± 0.03 0.87 ± 0.03

1.00 ± 0.00 1.00 ± 0.00 0.99 ± 0.01 0.99 ± 0.01

Hedge EXP3 Hedge EXP3

0.0688 ± 0.01 2.5249 ± 0.03 0.0689 ± 0.01 1.3660 ± 0.02 0.0059 ± 0.00 10.4795 ± 0.09 0.0060 ± 0.00 5.3762 ± 0.05

0.0009 ± 0.00 0.0010 ± 0.00 0.0015 ± 0.00 0.0015 ± 0.00

1.00 ± 0.00 1.00 ± 0.00 1.47 ± 0.36 1.72 ± 0.74

0.81 ± 0.04 0.81 ± 0.04 0.81 ± 0.04 0.81 ± 0.04

4.58 ± 0.89 4.58 ± 0.89 0.77 ± 0.10 4.57 ± 0.89 4.57 ± 0.89

0.73 ± 0.10 0.73 ± 0.10 0.73 ± 0.10 0.73 ± 0.10

0.76 ± 0.09 0.76 ± 0.09 0.76 ± 0.09 0.76 ± 0.09

0.59 ± 0.09 0.59 ± 0.09 0.59 ± 0.09 0.59 ± 0.08

0.56 ± 0.19 0.56 ± 0.19 0.56 ± 0.19 0.56 ± 0.19

0.54 ± 0.17 0.54 ± 0.17 0.54 ± 0.17 0.53 ± 0.17

0.98 ± 0.01 0.98 ± 0.01 0.89 ± 0.03 0.89 ± 0.03

1.00 ± 0.00 1.00 ± 0.00 1.00 ± 0.00 1.00 ± 0.00

Hedge EXP3 Hedge EXP3

0.0388 ± 0.00 1.4616 ± 0.03 0.0008 ± 0.00 0.0406 ± 0.01 0.8309 ± 0.02 0.0008 ± 0.00 0.0057 ± 0.00 5.2253 ± 0.08 0.0013 ± 0.00 0.0056 ± 0.00 2.7286 ± 0.05 0.0012 ± 0.00

1.00 ± 0.00 1.00 ± 0.00 1.00 ± 0.00 1.00 ± 0.00

0.56 ± 0.05 0.56 ± 0.05 0.56 ± 0.05 0.56 ± 0.05

3.24 ± 0.70 3.24 ± 0.70 0.48 ± 0.14 3.24 ± 0.70 3.24 ± 0.70

0.43 ± 0.10 0.43 ± 0.10 0.43 ± 0.10 0.43 ± 0.10

0.80 ± 0.10 0.80 ± 0.09 0.80 ± 0.10 0.80 ± 0.10

0.39 ± 0.09 0.39 ± 0.09 0.39 ± 0.09 0.39 ± 0.09

0.23 ± 0.12 0.23 ± 0.12 0.23 ± 0.12 0.23 ± 0.12

0.57 ± 0.21 0.57 ± 0.21 0.57 ± 0.21 0.57 ± 0.21

0.99 ± 0.01 0.99 ± 0.01 0.96 ± 0.02 0.96 ± 0.02

1.00 ± 0.00 1.00 ± 0.00 1.00 ± 0.00 1.00 ± 0.00

Hedge EXP3 Hedge EXP3

0.0255 ± 0.00 1.4788 ± 0.05 0.0007 ± 0.00 0.0261 ± 0.01 0.8406 ± 0.02 0.0007 ± 0.00 0.0053 ± 0.00 2.6235 ± 0.06 0.0012 ± 0.00 0.0054 ± 0.00 1.4255 ± 0.04 0.0011 ± 0.00

1.00 ± 0.00 1.00 ± 0.00 1.00 ± 0.00 1.00 ± 0.00

0.49 ± 0.05 0.49 ± 0.05 0.49 ± 0.05 0.49 ± 0.05

2.36 ± 0.64 2.36 ± 0.64 0.42 ± 0.13 2.36 ± 0.64 2.36 ± 0.64

0.38 ± 0.09 0.38 ± 0.09 0.38 ± 0.09 0.38 ± 0.09

0.82 ± 0.10 0.82 ± 0.10 0.82 ± 0.10 0.82 ± 0.10

0.35 ± 0.08 0.35 ± 0.08 0.35 ± 0.08 0.35 ± 0.08

0.18 ± 0.10 0.18 ± 0.10 0.18 ± 0.10 0.18 ± 0.10

0.59 ± 0.25 0.58 ± 0.25 0.58 ± 0.25 0.58 ± 0.25

0.99 ± 0.00 0.99 ± 0.00 0.99 ± 0.00 0.99 ± 0.00

1.00 ± 0.00 1.00 ± 0.00 1.00 ± 0.00 1.00 ± 0.00

Table A.2: Comparative evaluation between SPCSF recommendation methods (T = 0.0 to 0.8).

T

0.0

Configuration

Time

Mode

R

NDCG (Score) NDCG (Min) 1.00 ± 0.00 -17.72% (↓) -17.72% (↓)

0.84 ± 0.13 +17.74% (↑) +17.74% (↑)

1.00 ± 0.00 -5.42% (↓) -5.42% (↓)

0.85 ± 0.10 +17.97% (↑) +17.97% (↑)

Baseline 0.0027 ± 0.00 0.99 ± 0.03 5.92 ± 0.84 0.99 ± 0.02 0.69 ± 0.10 ∆1 (vs Hedge) -11.74% (↑) +0.56% (↑) -0.68% (↑) -0.10% (↓) +4.38% (↑) ∆2 (vs EXP3) -15.64% (↑) +0.56% (↑) -0.51% (↑) -0.10% (↓) +4.58% (↑)

0.68 ± 0.10 0.98 ± 0.04 0.47 ± 0.14 +4.34% (↑) -0.34% (↓) +8.15% (↑) +4.53% (↑) -0.34% (↓) +8.61% (↑)

1.00 ± 0.00 -32.88% (↓) -32.88% (↓)

0.84 ± 0.13 +16.18% (↑) +16.18% (↑)

Baseline 0.0009 ± 0.00 0.99 ± 0.02 5.93 ± 0.82 0.98 ± 0.06 0.71 ± 0.10 Clustered ∆1 (vs Hedge) +49.62% (↓) +0.39% (↑) -0.84% (↑) +0.74% (↑) +3.03% (↑) ∆2 (vs EXP3) +50.60% (↓) +0.39% (↑) -1.01% (↑) +0.74% (↑) +2.97% (↑)

0.70 ± 0.10 0.97 ± 0.09 0.50 ± 0.16 +3.53% (↑) +0.81% (↑) +4.72% (↑) +3.48% (↑) +0.81% (↑) +4.68% (↑)

1.00 ± 0.00 -5.05% (↓) -5.05% (↓)

0.85 ± 0.11 +17.63% (↑) +17.63% (↑)

Baseline 0.0026 ± 0.00 1.00 ± 0.02 6.08 ± 0.77 0.98 ± 0.03 0.70 ± 0.10 ∆1 (vs Hedge) -9.09% (↑) +0.25% (↑) -3.13% (↑) +0.34% (↑) +3.16% (↑) ∆2 (vs EXP3) -12.74% (↑) +0.25% (↑) -3.45% (↑) +0.34% (↑) +3.29% (↑)

0.69 ± 0.10 0.97 ± 0.05 0.49 ± 0.15 +3.41% (↑) +0.40% (↑) +4.43% (↑) +3.55% (↑) +0.40% (↑) +4.42% (↑)

1.00 ± 0.00 -32.33% (↓) -32.33% (↓)

0.85 ± 0.11 +14.82% (↑) +14.82% (↑)

Baseline 0.0010 ± 0.00 0.99 ± 0.02 6.07 ± 0.87 0.98 ± 0.05 0.69 ± 0.10 Clustered ∆1 (vs Hedge) +34.59% (↓) +0.43% (↑) -0.82% (↑) +1.24% (↑) +4.43% (↑) ∆2 (vs EXP3) +40.28% (↓) +0.43% (↑) -0.99% (↑) +1.24% (↑) +4.41% (↑)

0.68 ± 0.10 0.96 ± 0.08 0.47 ± 0.14 +5.20% (↑) +1.99% (↑) +8.89% (↑) +5.17% (↑) +1.99% (↑) +8.82% (↑)

1.00 ± 0.00 -6.45% (↓) -6.45% (↓)

0.85 ± 0.11 +16.99% (↑) +16.99% (↑)

Baseline 0.0025 ± 0.00 0.99 ± 0.02 6.07 ± 0.82 0.98 ± 0.03 0.69 ± 0.10 ∆1 (vs Hedge) -11.19% (↑) +0.39% (↑) -0.99% (↑) +0.76% (↑) +3.14% (↑) ∆2 (vs EXP3) -15.26% (↑) +0.39% (↑) -0.82% (↑) +0.76% (↑) +3.65% (↑)

0.68 ± 0.09 0.96 ± 0.05 0.47 ± 0.14 +3.66% (↑) +1.26% (↑) +6.36% (↑) +4.18% (↑) +1.26% (↑) +7.10% (↑)

1.00 ± 0.00 -30.62% (↓) -30.62% (↓)

0.86 ± 0.11 +13.90% (↑) +13.90% (↑)

Baseline 0.0006 ± 0.00 0.81 ± 0.05 5.06 ± 0.81 0.78 ± 0.11 0.71 ± 0.10 Clustered ∆1 (vs Hedge) +73.65% (↓) +0.58% (↑) -4.94% (↑) -1.15% (↓) +8.29% (↑) ∆2 (vs EXP3) +74.91% (↓) +0.58% (↑) -4.74% (↑) -1.15% (↓) +8.17% (↑)

0.59 ± 0.11 0.66 ± 0.19 0.50 ± 0.16 +5.27% (↑) -9.45% (↓) +11.01% (↑) +5.22% (↑) -9.45% (↓) +10.53% (↑)

1.00 ± 0.00 -1.92% (↓) -1.92% (↓)

0.81 ± 0.15 +23.59% (↑) +23.59% (↑)

Baseline 0.0015 ± 0.00 0.81 ± 0.05 4.89 ± 0.82 0.78 ± 0.11 0.75 ± 0.09 ∆1 (vs Hedge) +22.12% (↓) +0.58% (↑) -1.84% (↑) -1.15% (↓) +1.60% (↑) ∆2 (vs EXP3) +15.05% (↓) +0.58% (↑) -1.84% (↑) -1.15% (↓) +1.73% (↑)

0.62 ± 0.11 0.66 ± 0.19 0.54 ± 0.14 -0.20% (↓) -9.45% (↓) +0.02% (↑) -0.08% (↓) -9.45% (↓) +0.76% (↑)

1.00 ± 0.00 -16.68% (↓) -16.68% (↓)

0.88 ± 0.11 +12.79% (↑) +12.79% (↑)

Baseline 0.0006 ± 0.00 0.81 ± 0.04 4.66 ± 0.77 0.74 ± 0.09 0.73 ± 0.10 Clustered ∆1 (vs Hedge) +82.16% (↓) +0.14% (↑) -1.93% (↑) -1.52% (↓) +4.12% (↑) ∆2 (vs EXP3) +95.80% (↓) +0.14% (↑) -1.72% (↑) -1.52% (↓) +4.43% (↑)

0.58 ± 0.09 0.61 ± 0.17 0.52 ± 0.15 +1.96% (↑) -6.93% (↓) +4.04% (↑) +2.15% (↑) -6.93% (↓) +4.32% (↑)

1.00 ± 0.00 -1.84% (↓) -1.84% (↓)

0.85 ± 0.10 +18.12% (↑) +18.12% (↑)

Baseline 0.0012 ± 0.00 0.81 ± 0.04 4.51 ± 0.75 0.74 ± 0.09 0.74 ± 0.10 ∆1 (vs Hedge) +38.98% (↓) +0.32% (↑) +1.11% (↓) -1.52% (↓) +2.77% (↑) ∆2 (vs EXP3) +32.94% (↓) +0.32% (↑) +1.11% (↓) -1.52% (↓) +2.77% (↑)

0.59 ± 0.09 0.61 ± 0.17 0.54 ± 0.15 +0.71% (↑) -6.93% (↓) +0.73% (↑) +0.71% (↑) -6.93% (↓) +0.62% (↑)

1.00 ± 0.00 -12.64% (↓) -12.64% (↓)

0.88 ± 0.10 +12.54% (↑) +12.54% (↑)

Baseline 0.0005 ± 0.00 0.81 ± 0.03 4.74 ± 0.84 0.73 ± 0.10 0.74 ± 0.10 Clustered ∆1 (vs Hedge) +80.89% (↓) +0.24% (↑) -3.38% (↑) -0.18% (↓) +2.80% (↑) ∆2 (vs EXP3) +92.75% (↓) +0.24% (↑) -3.38% (↑) -0.18% (↓) +2.73% (↑)

0.58 ± 0.09 0.59 ± 0.19 0.51 ± 0.16 +1.60% (↑) -3.98% (↓) +4.50% (↑) +1.56% (↑) -3.98% (↓) +4.44% (↑)

1.00 ± 0.00 -2.07% (↓) -2.07% (↓)

0.79 ± 0.11 +27.09% (↑) +27.09% (↑)

Baseline 0.0011 ± 0.00 0.81 ± 0.04 4.57 ± 0.82 0.73 ± 0.10 0.76 ± 0.10 ∆1 (vs Hedge) +40.67% (↓) +0.24% (↑) 0.00% -0.18% (↓) +0.53% (↑) ∆2 (vs EXP3) +32.56% (↓) +0.24% (↑) 0.00% -0.18% (↓) +0.49% (↑)

0.59 ± 0.09 0.59 ± 0.19 0.54 ± 0.16 -0.21% (↓) -3.98% (↓) -0.90% (↓) -0.23% (↓) -3.98% (↓) -1.05% (↓)

1.00 ± 0.00 -11.11% (↓) -11.11% (↓)

0.88 ± 0.10 +13.54% (↑) +13.54% (↑)

Baseline 0.0002 ± 0.00 0.55 ± 0.06 3.19 ± 0.77 0.41 ± 0.12 0.78 ± 0.12 Clustered ∆1 (vs Hedge) +213.33% (↓) +1.69% (↑) +1.57% (↓) +5.05% (↑) +1.95% (↑) ∆2 (vs EXP3) +219.83% (↓) +1.69% (↑) +1.57% (↓) +5.05% (↑) +2.01% (↑)

0.37 ± 0.11 0.22 ± 0.15 0.57 ± 0.21 +4.99% (↑) +1.06% (↑) -1.13% (↓) +5.02% (↑) +1.06% (↑) -1.11% (↓)

1.00 ± 0.00 -0.82% (↓) -0.82% (↓)

0.96 ± 0.02 +4.53% (↑) +4.53% (↑)

Baseline 0.0005 ± 0.00 0.55 ± 0.06 3.19 ± 0.77 0.41 ± 0.12 0.78 ± 0.12 ∆1 (vs Hedge) +153.15% (↓) +1.69% (↑) +1.57% (↓) +5.05% (↑) +2.48% (↑) ∆2 (vs EXP3) +134.54% (↓) +1.69% (↑) +1.57% (↓) +5.05% (↑) +2.39% (↑)

0.37 ± 0.11 0.22 ± 0.15 0.57 ± 0.21 +5.28% (↑) +1.06% (↑) +0.03% (↑) +5.26% (↑) +1.06% (↑) -0.04% (↓)

1.00 ± 0.00 -3.94% (↓) -3.94% (↓)

0.95 ± 0.04 +5.00% (↑) +5.00% (↑)

Baseline 0.0002 ± 0.00 0.49 ± 0.04 2.30 ± 0.59 0.38 ± 0.10 0.82 ± 0.11 Clustered ∆1 (vs Hedge) +294.20% (↓) -0.01% (↓) +2.61% (↓) -0.61% (↓) -0.43% (↓) ∆2 (vs EXP3) +287.40% (↓) -0.01% (↓) +2.61% (↓) -0.61% (↓) -0.50% (↓)

0.35 ± 0.09 0.19 ± 0.13 0.62 ± 0.23 -1.06% (↓) -5.85% (↓) -5.06% (↓) -1.07% (↓) -5.85% (↓) -5.18% (↓)

1.00 ± 0.00 -0.59% (↓) -0.59% (↓)

0.98 ± 0.02 +2.12% (↑) +2.12% (↑)

Baseline 0.0003 ± 0.00 0.49 ± 0.04 2.30 ± 0.59 0.38 ± 0.10 0.82 ± 0.11 ∆1 (vs Hedge) +345.37% (↓) -0.01% (↓) +2.61% (↓) -0.61% (↓) -0.14% (↓) ∆2 (vs EXP3) +321.35% (↓) -0.01% (↓) +2.61% (↓) -0.61% (↓) -0.14% (↓)

0.35 ± 0.10 0.19 ± 0.13 0.61 ± 0.24 -0.95% (↓) -5.85% (↓) -4.32% (↓) -0.95% (↓) -5.85% (↓) -4.32% (↓)

1.00 ± 0.00 -0.64% (↓) -0.64% (↓)

0.97 ± 0.02 +2.76% (↑) +2.76% (↑)

Full

0.8

Area Eff.

0.69 ± 0.09 0.98 ± 0.04 0.48 ± 0.14 +4.21% (↑) -0.34% (↓) +8.20% (↑) +4.30% (↑) -0.34% (↓) +8.17% (↑)

Full

0.7

Area Cov.

Baseline 0.0010 ± 0.00 0.99 ± 0.03 5.79 ± 0.81 0.99 ± 0.02 0.70 ± 0.10 Clustered ∆1 (vs Hedge) +43.17% (↓) +0.56% (↑) +1.90% (↓) -0.10% (↓) +4.27% (↑) ∆2 (vs EXP3) +48.32% (↓) +0.56% (↑) +1.38% (↓) -0.10% (↓) +4.36% (↑)

Full

0.6

Prof. IoU

0.85 ± 0.13 +14.06% (↑) +14.06% (↑)

Full

0.5

Res. Eff.

1.00 ± 0.00 -47.53% (↓) -47.53% (↓)

Full

0.4

Accuracy metrics Sat. Cov.

0.69 ± 0.10 0.99 ± 0.02 0.48 ± 0.15 +8.68% (↑) +0.29% (↑) +17.16% (↑) +9.02% (↑) +0.29% (↑) +17.41% (↑)

Full

0.3

Cost (|R|)

Baseline 0.0036 ± 0.00 1.00 ± 0.01 6.14 ± 0.79 0.99 ± 0.01 0.70 ± 0.10 ∆1 (vs Hedge) -1.39% (↑) +0.01% (↑) -5.86% (↑) +0.14% (↑) +8.58% (↑) ∆2 (vs EXP3) -3.23% (↑) +0.01% (↑) -4.89% (↑) +0.14% (↑) +8.91% (↑)

Full

0.2

Cost & fairness Fairness

Baseline 0.0012 ± 0.00 1.00 ± 0.02 6.14 ± 0.77 0.99 ± 0.01 0.70 ± 0.10 0.69 ± 0.10 0.99 ± 0.02 0.48 ± 0.14 Clustered ∆1 (vs Hedge) +43.13% (↓) +0.16% (↑) -5.86% (↑) +0.14% (↑) +10.59% (↑) +10.70% (↑) +0.29% (↑) +21.43% (↑) ∆2 (vs EXP3) +48.76% (↓) +0.16% (↑) -6.03% (↑) +0.14% (↑) +10.33% (↑) +10.44% (↑) +0.29% (↑) +21.40% (↑) Full

0.1

Method

Full

21

of Defense Modeling and Simulation, page 15485129251315178, March 2025. doi:10.1177/15485129251315178.

References [1] Raimo Lenschow, Saket Kalia, Ross Sandler, and Ramsey ElAssal. Barclays’ 1H24 CIO Survey: 2024 Outlook Sustained. Barclays, apr 2024. URL: https://a.storyblok.com/f/148396/ x/f3dfd0d41a/barclays_cio_survey_2024.pdf.

[21] Dylan Léveillé and Jason Jaskolka. A game-theoretic approach for security control selection. Electronic Proceedings in Theoretical Computer Science, 409:103–119, October 2024. arXiv:2410.22762 [cs]. doi:10.4204/EPTCS.409.11.

[2] Cloud Usage and Management Trends: Where’s the Money Going? GTT, 2025. URL: https://learn.gtt.net/rs/561-UET-799/ images/cloud-trends-where-is-the-money-going.pdf.

[22] Haipeng Chen, Qian Han, Sushil Jajodia, Roy Lindelauf, V. S. Subrahmanian, and Yanhai Xiong. Disclose or exploit? a game-theoretic approach to strategic decision making in cyber-warfare. IEEE Systems Journal, 14(3):3779–3790, sept 2020. doi:10.1109/JSYST.2020. 2964985.

[3] Naeem Firdous Syed, Syed W. Shah, Arash Shaghaghi, Adnan Anwar, Zubair Baig, and Robin Doss. Zero trust architecture (zta): A comprehensive survey. IEEE Access, 10:57143–57179, 2022. doi: 10.1109/ACCESS.2022.3174679.

[23] Adeela Bashir, Zia Ush Shamszaman, Zhao Song, and The Anh Han. Co-evolutionary dynamics of attack and defence in cybersecurity. Knowledge-Based Systems, 340:115750, May 2026. doi:10.1016/j. knosys.2026.115750.

[4] Ifaz Ahmed, Niamat Ullah Ibne Hossain, Steven A Fazio, Marianna Lezzi, and Md. Saiful Islam. A decision support model for assessing and prioritization of industry 5.0 cybersecurity challenges. Sustainable Manufacturing and Service Economics, 3:100018, jan 2024. doi: 10.1016/j.smse.2024.100018.

[24] J.m. Camacho, A. Couce-Vieira, D. Arroyo, and D.r. Insua. A cybersecurity risk analysis framework for systems with artificial intelligence components. International Transactions in Operational Research, 33(2):798–825, May 2025. doi:10.1111/itor.70049.

[5] Md Rayhanur Rahman, Imranur Rahman, and Laurie Williams. If you cannot measure it, you cannot secure it. a case study on metrics for informed choice of security controls. Journal of Information Security and Applications, 92:104056, july 2025. doi:10.1016/j.jisa.2025. 104056.

[25] Antonia Nisioti, George Loukas, Stefan Rass, and Emmanouil Panaousis. Game-theoretic decision support for cyber forensic investigations. Sensors, 21(16):5300, January 2021. doi:10.3390/s21165300. [26] C. E. Lemke and J. T. Howson, Jr. Equilibrium points of bimatrix games. Journal of the Society for Industrial and Applied Mathematics, 12(2):413–423, june 1964. doi:10.1137/0112033.

[6] Alessandro Mazzoccoli and Maurizio Naldi. Optimizing cybersecurity investments over time. Algorithms, 15(6), 2022. doi:10.3390/ a15060211.

[27] Constantinos Daskalakis, Paul W. Goldberg, and Christos H. Papadimitriou. The complexity of computing a nash equilibrium. SIAM Journal on Computing, 39(1):195–259, 2009.

[7] Jennifer Cawthra, Michael Ekstrom, Lauren Lusty, Julian Sexton, and John Sweetnam. NIST SP 1800-26: Data Integrity: Detecting and Responding to Ransomware and Other Destructive Events. Number NIST Special Publication (SP) 1800-26. December 2020. doi:10. 6028/NIST.SP.1800-26.

[28] CSF Tools. Nist special publication 800-53 revision 5, January 2022. URL: https://csf.tools/controlset/nist800-53r5/. [29] Cybersecurity-framework-v2.0-to-sp-800-53-rev-5-2-0 informative reference details. NIST: National Online Informative References Program (OLIR), 11 2025. URL: https://csrc.nist.gov/ projects/olir/informative-reference-catalog/details? referenceId=186#/.

[8] Yulia Cherdantseva and Jeremy Hilton. A reference model of information assurance & security. In 2013 International Conference on Availability, Reliability and Security, page 546–555, sept 2013. doi: 10.1109/ARES.2013.72. [9] NIST Special Publication (SP) 800-53 Rev. 5: Security and Privacy Controls for Information Systems and Organizations. Number NIST SP 800-53 Rev. 5. December 2020. doi:10.6028/NIST.SP.800-53r5.

[30] Committee on National Security Systems: instructions. july 2022. URL: https://www.cnss.gov/CNSS/issuances/Instructions.cfm. [31] Daphne Koller and Brian Milch. Multi-agent influence diagrams for representing and solving games. Games and Economic Behavior, 45(1):181–221, October 2003. doi:10.1016/S0899-8256(02) 00544-4.

[10] Finn Verner Jensen and Thomas D. Nielsen. Bayesian networks and decision graphs. Information science and statistics. Springer, New York, 2nd ed edition, feb 2007. [11] ISO. Iso/iec 27002:2022: Information security, cybersecurity and privacy protection — information security controls. URL: https: //www.iso.org/standard/75652.html.

[32] Ronald A. Howard and James E. Matheson. Influence diagrams. Decision Analysis, 2(3):127–143, sept 2005. doi:10.1287/deca.1050. 0020.

[12] Peter Kaloroumakis and Michael Smith. Toward a knowledge graph of cybersecurity countermeasures. April 2020. URL: https://apps. dtic.mil/sti/html/trecms/AD1156977/.

[33] Judea Pearl. Fusion, propagation, and structuring in belief networks. Artificial Intelligence, 29(3):241–288, sept 1986. doi:10.1016/00043702(86)90072-X.

[13] Open security controls assessment language (oscal), March 2024. URL: https://github.com/usnistgov/oscal-content/tree/ main/nist.gov/SP800-53/rev5.

[34] Lewis Hammond, James Fox, Tom Everitt, Alessandro Abate, and Michael Wooldridge. Equilibrium refinements for multi-agent influence diagrams: Theory and practice. In Proceedings of the 20th International Conference on Autonomous Agents and MultiAgent Systems, AAMAS ’21, page 574–582, Richland, SC, May 2021. International Foundation for Autonomous Agents and Multiagent Systems. URL: https://dl. acm.org/doi/10.5555/3463952.3464023.

[14] Marina Liu, Malcolm Shore, William Yeoh, Frank Jiang, and Sherali Zeadally. Toward effective cybersecurity management: a hierarchical process model with performance assessment. Journal of Cybersecurity, 11(1):10, January 2025. doi:10.1093/cybsec/tyaf020. [15] Kevin Hermann, Simon Schneider, Catherine Tony, Asli Yardim, Sven Peldszus, Thorsten Berger, Riccardo Scandariato, M. Angela Sasse, and Alena Naiakshina. A taxonomy of functional security features and how they can be located. Empirical Software Engineering, 30(5):117, May 2025. doi:10.1007/s10664-025-10649-7.

[35] Tom Everitt, Pedro A. Ortega, Elizabeth Barnes, and Shane Legg. Understanding agent incentives using causal influence diagrams. part i: Single action settings. (arXiv:1902.09980), January 2022. doi: 10.48550/arXiv.1902.09980. [36] Yoav Freund and Robert E Schapire. A decision-theoretic generalization of on-line learning and an application to boosting. Journal of Computer and System Sciences, 55(1):119–139, August 1997. doi:10.1006/ jcss.1997.1504.

[16] John F. Nash. Equilibrium points in n-person games. Proceedings of the National Academy of Sciences, 36(1):48–49, January 1950. doi: 10.1073/pnas.36.1.48. [17] Daphne Koller and Nir Friedman. Probabilistic graphical models: principles and techniques. Adaptive computation and machine learning. MIT Press, Cambridge, Mass., nachdr. edition, 2010. URL: http: //mcb111.org/w06/KollerFriedman.pdf.

[37] Peter Auer, Nicolò Cesa-Bianchi, Yoav Freund, and Robert E. Schapire. The nonstochastic multiarmed bandit problem. SIAM Journal on Computing, 32(1):48–77, January 2002. doi:10.1137/ S0097539701398375.

[18] Shaofei Huang, Christopher M. Poskitt, and Lwin Khin Shar. Bayesian and multi-objective decision support for real-time cyber-physical incident mitigation. (arXiv:2509.00770), August 2025. doi:10.48550/ arXiv.2509.00770.

[38] Gregory F. Cooper. The computational complexity of probabilistic inference using bayesian belief networks. Artificial Intelligence, 42(2):393–405, March 1990. doi:10.1016/0004-3702(90)90060D.

[19] Yunxiao Zhang and Pasquale Malacaria. Bayesian stackelberg games for cyber-security decision support. Decision Support Systems, 148:113599, sept 2021. doi:10.1016/j.dss.2021.113599.

[39] Jonathan Huggins. Complexity of inference in bayesian networks, January 2013. URL: http://lips.cs.princeton.edu/complexityof-inference-in-bayes-nets/.

[20] Maarten C Vonk, Anna V Kononova, Thomas Bäck, and Tim Sweijs. Multi-agent influence diagrams to hybrid threat modeling. The Journal

[40] Florian Rohrbein, Julian Eggert, and Edgar Korner.

22

Child-friendly

divorcing: Incremental hierarchy learning in bayesian networks. In 2009 International Joint Conference on Neural Networks, page 2711–2716, june 2009. doi:10.1109/IJCNN.2009.5178995. [41] Peter Spirtes. Causation, prediction, and search. Adaptive computation and machine learning. MIT Press, Cambridge, Mass, 2nd ed edition, 2000. URL: https://doi.org/10.7551/mitpress/1754.001. 0001. [42] Constantinos Daskalakis. The Complexity of Nash Equilibria. PhD thesis, EECS Department, University of California, Berkeley, Aug 2008. URL: http://www2.eecs.berkeley.edu/Pubs/TechRpts/2008/ EECS-2008-107.html. [43] Christos H Papadimitriou. Computing correlated equilibria in multiplayer games. In Proceedings of the thirty-seventh annual ACM symposium on Theory of computing, pages 49–56, 2005. [44] Avrim Blum and Yishay Mansour. Learning, regret and routing. In Noam Nisan, Tim Roughgarden, Eva Tardos, and Vijay V. Vazirani, editors, Algorithmic Game Theory, chapter 4, pages 79–102. Cambridge University Press, 2007. [45] Alex Fabrikant, Christos Papadimitriou, and Kunal Talwar. The complexity of pure nash equilibria. In Proceedings of the thirty-sixth annual ACM symposium on Theory of computing, pages 604–612, 2004. [46] Leonard J Savage. The theory of statistical decision. Journal of the American Statistical association, 46(253):55–67, 1951. [47] Felix Brandt, Felix Fischer, and Paul Harrenstein. On the rate of convergence of fictitious play. In International Symposium on Algorithmic Game Theory, pages 102–113. Springer, 2010. [48] Peter Auer, Nicolò Cesa-Bianchi, Yoav Freund, and Robert E Schapire. The nonstochastic multiarmed bandit problem. SIAM journal on computing, 32(1):48–77, 2002. [49] John Nash. Non-cooperative games. In The Annals of Mathematics, volume 54, page 286–295, sept 1951. URL: https://www.cs.upc. edu/~ia/nash51.pdf. [50] Michael Kearns, Michael L. Littman, and Satinder Singh. Graphical models for game theory. In Proceedings of the Seventeenth conference on Uncertainty in artificial intelligence, UAI’01, page 253–260, San Francisco, CA, USA, August 2001. Morgan Kaufmann Publishers Inc. URL: https://dl.acm.org/doi/10.5555/2074022.2074054. [51] Lewis Hammond, James Fox, Tom Everitt, Ryan Carey, Alessandro Abate, and Michael Wooldridge. Reasoning about causality in games. Artificial Intelligence, 320:103919, july 2023. doi:10.1016/j. artint.2023.103919. [52] Robert J. Aumann. Subjectivity and correlation in randomized strategies. Journal of Mathematical Economics, 1(1):67–96, March 1974. doi: 10.1016/0304-4068(74)90037-8. [53] Christos H. Papadimitriou and Tim Roughgarden. Computing correlated equilibria in multi-player games. Journal of the ACM (JACM), August 2008. doi:10.1145/1379759.1379762. [54] Martino Bernasconi, Matteo Castiglioni, Andrea Celli, and Gabriele Farina. The complexity of correlated equilibria in generalized games. (arXiv:2506.01899), October 2025. doi:10.48550/arXiv.2506. 01899. [55] Nicolò Cesa-Bianchi and Gábor Lugosi. Prediction, Learning, and Games. January 2006. journalAbbreviation: Prediction, Learning, and Games. doi:10.1017/CBO9780511546921. [56] Aljuaid Turkea Ayedh M, Ainuddin Wahid Abdul Wahab, and Mohd Yamani Idna Idris. Systematic literature review on security access control policies and techniques based on privacy requirements in a byod environment: State of the art and future directions. Applied Sciences, 13(14):8048, January 2023. doi:10.3390/app13148048. [57] Secure controls framework, May 2026. //securecontrolsframework.com.

URL:

https:

[58] Carolina Fernández-Martínez, Shuaib Siddiqui, and Vanesa Daza. A bayesian network approach for enhancing security-focused decision support systems. In 2025 IEEE 50th Conference on Local Computer Networks (LCN), pages 1–7, 2025. doi:10.1109/LCN65610.2025. 11146363. [59] Carolina Fernández-Martínez. A knowledge-based multi-agent framework for security control recommendation - dataset, April 2026. doi: 10.5281/zenodo.19220613. [60] Carolina Fernández-Martínez. A knowledge-based multi-agent framework for security control recommendation - dataset and code. URL: https://github.com/CarolinaFernandez/secdss-maid-gt.

23

Record · ID 363203 · SHA-256 f75919bdfca7edef
Retrieved via Conceptio — every document is proof-bundled with source, license, and retrieval metadata.