From 99814aaf02c7f6de14cdcd7b1a2d00d61bf8c05c Mon Sep 17 00:00:00 2001 From: Alan Birchler De Allende <alan.birchler@telecom-paris.fr> Date: Thu, 11 Apr 2024 12:00:12 +0200 Subject: [PATCH] Working on testing new version of AI AT pipeline --- src/main/java/ui/window/JFrameAI.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/main/java/ui/window/JFrameAI.java b/src/main/java/ui/window/JFrameAI.java index cbed87d77c..955b5fd7fc 100644 --- a/src/main/java/ui/window/JFrameAI.java +++ b/src/main/java/ui/window/JFrameAI.java @@ -96,6 +96,8 @@ public class JFrameAI extends JFrame implements ActionListener { "Attack Tree Generator, Pipeline 1 - Creates five Attack Tree diagrams that model five different " + "possible exploitations on a provided system specification.", "Attack Tree Generator, Pipeline 2 - Creates an Attack Tree diagram that models a possible exploitation " + + "on a provided system specification using a provided attack pattern.", + "Attack Tree Generator, Pipeline 3 - Creates an Attack Tree diagram that models a possible exploitation " + "on a provided system specification using a provided attack pattern." }; @@ -105,7 +107,7 @@ public class JFrameAI extends JFrame implements ActionListener { "AIBlockConnAttrib", "AIBlockConnAttribWithSlicing", "AISoftwareBlock", "AIStateMachine", "AIStateMachinesAndAttributes", "AIAmulet", "AIDiagramCoherency", "AIDiagramCoherencyWithFormalRules", - "CAPECTracer", "AIAttackPatternTree1", "AIAttackPatternTree2" + "CAPECTracer", "AIAttackPatternTree1", "AIAttackPatternTree2", "AIAttackPatternTree3" }; private static String[] INFOS = { @@ -132,7 +134,8 @@ public class JFrameAI extends JFrame implements ActionListener { "would need to take to exploit five different identified root attacks on the given system specification.", "Using a provided system specification and an attack pattern, create an Attack Tree diagram that " + "models the steps that an attacker would need to take to exploit the given attack pattern " + - "on the given system specifications." + "on the given system specifications.", + "Test pipeline" }; protected JComboBox<String> listOfPossibleActions; -- GitLab